You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: releases.moxie
+22-9Lines changed: 22 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,21 @@ r34: {
6
6
id: ${project.version}
7
7
date: ${project.buildDate}
8
8
note: ''
9
-
From 1.10.0 on Gitblit requires Java 8 as minimum Java version.
9
+
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).
10
10
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).
11
+
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.
12
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.
13
+
From 1.10.0 on Gitblit requires Java 8 as minimal Java version.
While old DSA SSH host keys can still be used, a new Gitblit installation will no longer
26
26
generate a DSA host key. The default set of host keys is now RSA, ECDSA and Ed25519.
@@ -40,30 +40,41 @@ r34: {
40
40
- Fix errors in Bugtraq preventing display of commit completely.
41
41
- Fix misaligned images in primary repository URL display. (issue-1437)
42
42
- Fix incorrect text being copied by copy button on tickets page
43
+
- Fix broken language files.
44
+
- Fix problems with single quotes in message texts. (pr-1455 by @losiki)
43
45
changes:
44
46
- 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
+
- Added feedback on invalid keys to SSH key form. (issue-984, pr-1239 by @martinspielmann)
48
+
- Replaced 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)
49
+
- Updated various dependencies that had known CVEs.
50
+
- Updated Git clients list on empty repository page.
51
+
- Improved Chinese translation of "fork".
52
+
- Switched logging library from Log4j1 to reload4j.
47
53
additions:
48
54
- Option to explicitly disable optional client TLS certificates. (issue-1137, pr-1138 by @oddeirik)
49
55
- Support for ECDSA and Ed25519 (EdDSA) user keys. (pr-1427, pr-1272)
50
56
- New ECDSA and EdDSA host key types. (issue-1354, pr-1429 by @flaix)
51
57
- 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)
58
+
- Add support for Jenkins access token. Use setting `groovy.jenkinsToken`. (issue-1423, pr-1425 by @TDesjardins)
53
59
dependencyChanges:
54
60
- update to JavaMail 1.5.6 (pr-1217 by @paladox)
55
61
- update to Google Guice 5.1.0
56
-
- update to Google Guava 31.1-jre
62
+
- update to Google Guava 32.1.3-jre
57
63
- update to Google Gson 2.10
58
64
- update to Apache commons-io 2.11.0
59
65
- update to Apache commons-codec 1.9
60
-
- update to Apache commons-compress 1.22
66
+
- update to Apache commons-compress 1.24
67
+
- update to Apache Tika 1.28.5
61
68
- update to libpam4j 1.11
62
69
- update to MINA SSHD 1.7.0
70
+
- update to MINA Core 2.0.25
63
71
- update to BouncyCastle 1.69
64
72
- update to Jetty 9.4.49.v20220914 (pr-1213 by @paladox, plus more)
65
73
- update to JGit 4.11.9.201909030838-r (pr-1252 by @jvanhercke, plus more)
0 commit comments