diff options
-rw-r--r-- | build.moxie | 6 | ||||
-rw-r--r-- | releases.moxie | 26 | ||||
-rwxr-xr-x | src/site/templates/ghreleasenotes.awk | 2 | ||||
-rw-r--r-- | src/test/java/com/gitblit/tests/GitBlitSuite.java | 2 |
4 files changed, 27 insertions, 9 deletions
diff --git a/build.moxie b/build.moxie index c305dc14..bd1c9288 100644 --- a/build.moxie +++ b/build.moxie @@ -10,12 +10,12 @@ name: Gitblit description: pure Java Git solution groupId: com.gitblit artifactId: gitblit -version: 1.10.0-SNAPSHOT +version: 1.10.1-SNAPSHOT inceptionYear: 2011 # Current stable release -releaseVersion: 1.9.3 -releaseDate: 2022-04-09 +releaseVersion: 1.10.0 +releaseDate: 2025-06-14 # Project urls url: 'http://gitblit.com' diff --git a/releases.moxie b/releases.moxie index f13ef403..b0faa763 100644 --- a/releases.moxie +++ b/releases.moxie @@ -1,10 +1,28 @@ # # ${project.version} release # -r34: { +r35: { title: ${project.name} ${project.version} released id: ${project.version} date: ${project.buildDate} + note: ~ + html: ~ + text: ~ + security: ~ + fixes: ~ + changes: ~ + additions: ~ + dependencyChanges: ~ + contributors: ~ +} + +# +# 1.10.0 release +# +r34: { + title: Gitblit 1.10.0 released + id: 1.10.0 + date: 2025-06-14 note: '' This release fixes a vulnerability allowing an attacker to circumvent authentication on the SSH transport. Users are urged to update to this version. @@ -2185,6 +2203,6 @@ r1: { - James Moger } -snapshot: &r34 -release: &r33 -releases: &r[1..33] +snapshot: &r35 +release: &r34 +releases: &r[1..34] diff --git a/src/site/templates/ghreleasenotes.awk b/src/site/templates/ghreleasenotes.awk index f4479552..455334a1 100755 --- a/src/site/templates/ghreleasenotes.awk +++ b/src/site/templates/ghreleasenotes.awk @@ -6,7 +6,7 @@ BEGIN { on=0 ; skip=1 ; block=0 ; section=""} /r[0-9]+: *{/ { on=1 ; next } /^[[:blank:]]*}[[:blank:]]*$/ { if (on) { - print "[Full release notes on gitblit.com](http://gitblit.com/releases.html#" relId ")" + print "[Full release notes on gitblit.com](http://www.gitblit.com/releases.html#" relId ")" exit 0 } } diff --git a/src/test/java/com/gitblit/tests/GitBlitSuite.java b/src/test/java/com/gitblit/tests/GitBlitSuite.java index 94150325..e0328112 100644 --- a/src/test/java/com/gitblit/tests/GitBlitSuite.java +++ b/src/test/java/com/gitblit/tests/GitBlitSuite.java @@ -220,7 +220,7 @@ public class GitBlitSuite { }
cloneOrFetch("helloworld.git", HELLOWORLD_REPO_SOURCE.getAbsolutePath());
cloneOrFetch("ticgit.git", TICGIT_REPO_SOURCE.getAbsolutePath());
- cloneOrFetch("test/jgit.git", "https://github.com/eclipse/jgit.git");
+ cloneOrFetch("test/jgit.git", "https://github.com/eclipse-jgit/jgit.git");
cloneOrFetch("test/helloworld.git", HELLOWORLD_REPO_SOURCE.getAbsolutePath());
cloneOrFetch("test/ambition.git", AMBITION_REPO_SOURCE.getAbsolutePath());
cloneOrFetch("test/gitective.git", GITECTIVE_REPO_SOURCE.getAbsolutePath());
|