Skip to content

Commit 92ace05

Browse files
committed
doc: Update release notes
1 parent 16404d1 commit 92ace05

File tree

1 file changed

+60
-13
lines changed

1 file changed

+60
-13
lines changed

releases.moxie

+60-13
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,77 @@ r34: {
88
note: ''
99
From 1.10.0 on Gitblit requires Java 8 as minimum Java version.
1010

11-
Should you have disabled the Flash-based copy-to-clipboard function because it wasn't working anymore
12-
(web.allowFlashCopyToClipboard = false), you may want to rethink this and enable it again. The configuration
13-
property has the same name, but the mechanism was exchanged. Flash is gone, and a modern JavaScript solution
14-
is now used to copy text directly to the clipboard (via clipboard.js).
11+
Should you have disabled the Flash-based copy-to-clipboard function because it wasn't working anymore (web.allowFlashCopyToClipboard = false), you may want to rethink this and enable it again. The configuration property has the same name, but the mechanism was exchanged. Flash is gone, and a modern JavaScript solution is now used to copy text directly to the clipboard (via clipboard.js).
12+
13+
The setting 'server.requireClientCertificates' now has three values: required, optional and none. While 'required' is synonymous to the old 'true' value, and 'optional' is synonymous to the old 'false' value, the new 'none' value results in the server never asking the client to present any client certificate at all. The old values 'true' and 'false' can still be used and keep their meaning.
14+
1515
''
1616
html: ~
17-
text: ~
18-
security: ~
17+
text: ''
18+
Highlights:
19+
20+
* Support for ECDSA and Ed25519 SSH keys
21+
* Move to Java 8
22+
* Explicitly disable requesting optional client TLS certificates
23+
* Copy-to-clipboard button is back and working
24+
25+
While old DSA SSH host keys can still be used, a new Gitblit installation will no longer
26+
generate a DSA host key. The default set of host keys is now RSA, ECDSA and Ed25519.
27+
28+
Snapshot builds of the current master branch are now available as Docker containers on
29+
Docker Hub under the "Nightly" tag.
30+
''
31+
security:
32+
- Fix path traversal vulnerability which allowed access to "/resources//../WEB-INF/". (CVE-2022-31268) This was fixed by updating Jetty. (issue-1409)
1933
fixes:
20-
- Fix crash in Gitblit Authority when users were deleted from Gitblit but still had entries (certificates) in the Authority.
34+
- Fix crash in Gitblit Authority when users were deleted from Gitblit but still had entries (certificates) in the Authority. (issue-1359, pr-1435)
35+
- Fix tab-to-space conversion to work like tabs. (pr-1065 by @QuentinC)
36+
- Fix user effective permission display when user is in multiple groups with different permissions. (pr-1100 by @felazuris)
37+
- Fix issue in pt under Python 3. (pr-1428 by @urkle)
38+
- Fix null pointer exception which could occur during debug logging. (pr-1433)
39+
- Fix Bugtraq to fallback to UTF-8 if the commit encoding is unsupported.
40+
- Fix errors in Bugtraq preventing display of commit completely.
41+
- Fix misaligned images in primary repository URL display. (issue-1437)
42+
- Fix incorrect text being copied by copy button on tickets page
2143
changes:
22-
- Minimum Java required increased to Java 8.
23-
- Replaced the Flash-based approach to copy text to the clipboard with a modern JavaScript solution. (issue-1241)
24-
additions: ~
44+
- Minimum Java required increased to Java 8. (pr-1218 by @paladox)
45+
- Add feedback on invalid keys to SSH key form. (issue-984, pr-1239 by @martinspielmann)
46+
- Replace old Flash-based Clippy copy-paste buttons to copy repository URLs and other text to the clipboard with a modern JavaScript-based approach via clipboard.js. (issue-1241, issue-965, pr-1438 by @flaix)
47+
additions:
48+
- Option to explicitly disable optional client TLS certificates. (issue-1137, pr-1138 by @oddeirik)
49+
- Support for ECDSA and Ed25519 (EdDSA) user keys. (pr-1427, pr-1272)
50+
- New ECDSA and EdDSA host key types. (issue-1354, pr-1429 by @flaix)
51+
- French version of empty repository page. (by @piradix)
52+
- Add support for Jenkins access token. Use setting 'groovy.jenkinsToken'. (issue-1423, pr-1425 by @TDesjardins)
2553
dependencyChanges:
2654
- update to JavaMail 1.5.6 (pr-1217 by @paladox)
2755
- update to Google Guice 5.1.0
2856
- update to Google Guava 31.1-jre
2957
- update to Google Gson 2.10
3058
- update to Apache commons-io 2.11.0
59+
- update to Apache commons-codec 1.9
3160
- update to Apache commons-compress 1.22
3261
- update to libpam4j 1.11
33-
- added clipboard.js, replacing clippy.swf
62+
- update to MINA SSHD 1.7.0
63+
- update to BouncyCastle 1.69
64+
- update to Jetty 9.4.49.v20220914 (pr-1213 by @paladox, plus more)
65+
- update to JGit 4.11.9.201909030838-r (pr-1252 by @jvanhercke, plus more)
66+
- update to Bugtraq v0.4
67+
- added clipboard.js, replacing Clippy
68+
settings:
69+
- { name: 'server.requireClientCertificates', defaultValue: 'optional' }
3470
contributors:
35-
- paladox
71+
- @paladox
72+
- @QuentinC
73+
- @felazuris
74+
- Odd Eirik Nes
75+
- Edward Rudd
76+
- Florian Zschocke
77+
- Martin Spielmann
78+
- Jan Vanhercke
79+
- @xxcdd
80+
- @piradix
81+
- Tino Desjardins
3682
}
3783

3884
#
@@ -129,7 +175,7 @@ r31: {
129175
id: 1.9.1
130176
date: 2020-04-05
131177
note: ''
132-
When you have Gitblit installed as a service under Linux or Windows, you may need to edit your service script/definition. The command line to start Gitblit needs to be different, the classpath and class are speficied now.
178+
When you have Gitblit installed as a service under Linux or Windows, you may need to edit your service script/definition. The command line to start Gitblit needs to be different, the classpath and class are specified now.
133179

134180
See notes for release 1.9.0.
135181
''
@@ -366,6 +412,7 @@ r28: {
366412
- Improve diff performance by gracefully limiting large diffs (pr-226)
367413
- Add granular settings to disable display of git transport urls (pr-274)
368414
- Use author date to be consistent with other tools (pr-919)
415+
- Adjust URLs to point to new 'gitblit-org.github.com' organisation (issue-1441, pr-1442)
369416
additions:
370417
- Add GitHub Octicons (ticket-106)
371418
- Support for chain-loading properties files (ticket-110)

0 commit comments

Comments
 (0)