Skip to content

Commit

Permalink
dep upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmosmann committed Apr 30, 2024
1 parent bda9688 commit c4bd73a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ We use http://www.apache.org/licenses/LICENSE-2.0

#### Unreleased

#### 4.12.7
- mongodb 7.0.9, 8.0.0-rc3
- detect ubuntu 24.04

#### 4.12.6

- mongodb 7.0.8
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo.packageresolver</artifactId>
<version>4.11.2</version>
<version>4.12.0</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ public enum Version implements IFeatureAwareVersion, HasMongotoolsPackage {
V6_0_8("6.0.8", MongotoolsVersion.Main.V100_7),
V6_0_12("6.0.12", MongotoolsVersion.Main.V100_7),
V6_0_14("6.0.14", MongotoolsVersion.Main.V100_7),
V6_0_15("6.0.15", MongotoolsVersion.Main.V100_7),

V6_3_1_DEV("6.3.1", MongotoolsVersion.Main.V100_7),
V6_3_2_DEV("6.3.2", MongotoolsVersion.Main.V100_7),
Expand All @@ -266,6 +267,9 @@ public enum Version implements IFeatureAwareVersion, HasMongotoolsPackage {
V7_0_4("7.0.4", MongotoolsVersion.Main.V100_8),
V7_0_7("7.0.7", MongotoolsVersion.Main.V100_8),
V7_0_8("7.0.8", MongotoolsVersion.Main.V100_8),
V7_0_9("7.0.9", MongotoolsVersion.Main.V100_8),

V8_0_0_RC3("8.0.0-rc3", MongotoolsVersion.Main.V100_8),

@Deprecated
LATEST_NIGHTLY("latest"),
Expand Down Expand Up @@ -355,13 +359,16 @@ public enum Main implements IFeatureAwareVersion, HasMongotoolsPackage {
V4_2(V4_2_23),
V4_4(V4_4_18),
V5_0(V5_0_26),
V6_0(V6_0_14),
V7_0(V7_0_7),
V6_0(V6_0_15),
V7_0(V7_0_9),

@Deprecated
V6_3_DEV(V6_3_2_DEV),
@Deprecated
V7_0_RC(V7_0_0_RC10),

V8_0_RC(V8_0_0_RC3),

@Deprecated
LEGACY(V3_6),
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public void customPackageResolverRules() {
Package resolvedPackage = reachedState.current();

assertThat(resolvedPackage.url())
.isEqualTo("http://some-local-server/relativePath-7.0.7.tgz");
.isEqualTo("http://some-local-server/relativePath-7.0.9.tgz");
}
}

Expand Down

0 comments on commit c4bd73a

Please sign in to comment.