Skip to content

Commit a82be57

Browse files
committed
update docs for release
1 parent 5a070a4 commit a82be57

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
### 7.3.0 (2025-10-24)
12
* Update to dropwizard 4.0.16
23
* Use guice version without bundled asm ('classes' classifier)
34
* Support field injections in application (to use injected services in run method)

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Support: [discussions](https://github.com/xvik/dropwizard-guicey/discussions) |
1414

1515
### About
1616

17-
[Dropwizard](http://dropwizard.io/) 4.0.14 [guice](https://github.com/google/guice) 7.0.0 integration.
17+
[Dropwizard](http://dropwizard.io/) 4.0.16 [guice](https://github.com/google/guice) 7.0.0 integration.
1818

1919
Features:
2020

@@ -45,12 +45,12 @@ Dropwizard | Guicey | Reas
4545
----------|--------------------------------------------------------------|-------
4646
2.1.x| [5.x](https://github.com/xvik/dropwizard-guicey/tree/dw-2.1) | Last java 8 compatible version (EOL [January 31 2024](https://github.com/dropwizard/dropwizard/discussions/7880))
4747
3.x | [6.x](https://github.com/xvik/dropwizard-guicey/tree/dw-3) | [Changed core dropwizard packages](https://github.com/dropwizard/dropwizard/blob/release/3.0.x/docs/source/manual/upgrade-notes/upgrade-notes-3_0_x.rst) - old 3rd paty bundles would be incompatible
48-
4.x | 7.x | [Jakarta namespace migration](https://github.com/dropwizard/dropwizard/blob/release/4.0.x/docs/source/manual/upgrade-notes/upgrade-notes-4_0_x.rst) - 3rd party guice modules might be incompatible
48+
4.x | [7.x](https://github.com/xvik/dropwizard-guicey/tree/dw-4) | [Jakarta namespace migration](https://github.com/dropwizard/dropwizard/blob/release/4.0.x/docs/source/manual/upgrade-notes/upgrade-notes-4_0_x.rst) - 3rd party guice modules might be incompatible
4949

5050
All branches use the same project structure: core guicey merged with extension modules.
5151
It greatly simplifies releases and keeps actual examples in one branch.
5252

53-
Upcoming guicey changes would be ported in all 3 branches.
53+
Upcoming guicey changes would be ported in all (not EOL) branches.
5454

5555
### Setup
5656

@@ -62,20 +62,20 @@ Maven:
6262
<dependency>
6363
<groupId>ru.vyarus</groupId>
6464
<artifactId>dropwizard-guicey</artifactId>
65-
<version>7.2.2</version>
65+
<version>7.3.0</version>
6666
</dependency>
6767
```
6868

6969
Gradle:
7070

7171
```groovy
72-
implementation 'ru.vyarus:dropwizard-guicey:7.2.2'
72+
implementation 'ru.vyarus:dropwizard-guicey:7.3.0'
7373
```
7474

7575
Dropwizard | Guicey
7676
----------|---------
77-
4.0| [7.2.2](http://xvik.github.io/dropwizard-guicey/7.2.2)
78-
3.0| [6.3.2](http://xvik.github.io/dropwizard-guicey/6.3.2)
77+
4.0| [7.3.0](http://xvik.github.io/dropwizard-guicey/7.3.0)
78+
3.0| [6.4.0](http://xvik.github.io/dropwizard-guicey/6.4.0)
7979
2.1| [5.10.2](http://xvik.github.io/dropwizard-guicey/5.10.2)
8080
2.0| [5.5.0](http://xvik.github.io/dropwizard-guicey/5.5.0)
8181
1.3| [4.2.3](http://xvik.github.io/dropwizard-guicey/4.2.3)
@@ -98,9 +98,9 @@ Gradle:
9898

9999
```groovy
100100
dependencies {
101-
implementation platform('ru.vyarus.guicey:guicey-bom:7.2.2')
101+
implementation platform('ru.vyarus.guicey:guicey-bom:7.3.0')
102102
// uncomment to override dropwizard and its dependencies versions
103-
//implementation platform('io.dropwizard:dropwizard-dependencies:4.0.14')
103+
//implementation platform('io.dropwizard:dropwizard-dependencies:4.0.16')
104104
105105
// no need to specify versions
106106
implementation 'ru.vyarus:dropwizard-guicey'
@@ -121,15 +121,15 @@ Maven:
121121
<dependency>
122122
<groupId>ru.vyarus.guicey</groupId>
123123
<artifactId>guicey-bom</artifactId>
124-
<version>7.2.2</version>
124+
<version>7.3.0</version>
125125
<type>pom</type>
126126
<scope>import</scope>
127127
</dependency>
128128
<!-- uncomment to override dropwizard and its dependencies versions
129129
<dependency>
130130
<groupId>io.dropwizard/groupId>
131131
<artifactId>dropwizard-dependencies</artifactId>
132-
<version>4.0.14</version>
132+
<version>4.0.16</version>
133133
<type>pom</type>
134134
<scope>import</scope>
135135
</dependency> -->
@@ -186,7 +186,7 @@ Use [snapshot version](https://central.sonatype.com/repository/maven-snapshots/r
186186

187187
```groovy
188188
dependencies {
189-
implementation 'ru.vyarus:dropwizard-guicey:7.2.2-SNAPSHOT'
189+
implementation 'ru.vyarus:dropwizard-guicey:7.3.1-SNAPSHOT'
190190
}
191191
```
192192

@@ -222,7 +222,7 @@ Use [shapshot version](https://central.sonatype.com/repository/maven-snapshots/r
222222
<dependency>
223223
<groupId>ru.vyarus</groupId>
224224
<artifactId>dropwizard-guicey</artifactId>
225-
<version>7.2.2-SNAPSHOT</version>
225+
<version>7.3.1-SNAPSHOT</version>
226226
</dependency>
227227
```
228228

dropwizard-guicey/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
testImplementation 'org.glassfish.jersey.ext:jersey-proxy-client'
3434
testImplementation 'org.junit.platform:junit-platform-testkit'
3535
testImplementation 'uk.org.webcompere:system-stubs-jupiter:2.1.8'
36-
testImplementation 'com.google.truth:truth:1.4.4'
36+
testImplementation 'com.google.truth:truth:1.4.5'
3737
testImplementation 'org.objenesis:objenesis:3.4'
3838
// test rest stubs
3939
//testImplementation 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2'
@@ -58,8 +58,6 @@ mkdocs {
5858
publish {
5959
docPath = '7.3.0'
6060
rootRedirect = false
61-
// rootRedirectTo = 'latest'
62-
// versionAliases = ['latest']
6361
hideOldBugfixVersions = true
6462
}
6563
extras = [

dropwizard-guicey/src/doc/docs/about/compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Dropwizard | Guicey
44
----------|---------
55
5.0.0 | [8.0.0](http://xvik.github.io/dropwizard-guicey/8.0.0)
6-
4.0.0 | [7.2.2](http://xvik.github.io/dropwizard-guicey/7.2.2)
7-
3.0.0 | [6.3.2](http://xvik.github.io/dropwizard-guicey/6.3.2)
6+
4.0.0 | [7.3.0](http://xvik.github.io/dropwizard-guicey/7.3.0)
7+
3.0.0 | [6.4.0](http://xvik.github.io/dropwizard-guicey/6.4.0)
88
2.1.0 | [5.10.2](http://xvik.github.io/dropwizard-guicey/5.10.2)
99
2.0.0 | [5.5.0](http://xvik.github.io/dropwizard-guicey/5.5.0)
1010
1.3.0 | [4.2.3](http://xvik.github.io/dropwizard-guicey/4.2.3)

dropwizard-guicey/src/doc/docs/about/history.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
### [7.3.0](http://xvik.github.io/dropwizard-guicey/7.3.0) (2025-10-24)
12
* Update to dropwizard 4.0.16
23
* Use guice version without bundled asm ('classes' classifier)
34
* Support field injections in application (to use injected services in run method)

0 commit comments

Comments
 (0)