Skip to content

Commit

Permalink
fix: add support for Gradle versions 7.6.4, 8.7 and 8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
flelli committed Jun 6, 2024
1 parent 45fb76c commit a670cab
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
14 changes: 14 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Nyx Release Notes

## 3.0.3

This release is available at [this link](https://github.com/mooltiverse/nyx/releases/tag/3.0.3).

### Upgrade instructions

There are no actions to take for backward compatibility.

### New features and improvements

This release:

* adds support for Gradle `7.6.4`, `8.7` and `8.8`.

## 3.0.2

This release is available at [this link](https://github.com/mooltiverse/nyx/releases/tag/3.0.2).
Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/guide/user/02.introduction/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ There are no known incompatibilities for the Docker image therefore it is compat

### Java and Gradle

The recommended runtime is Java VM `15` or newer and Gradle `7.0` or newer. Tests are conducted up to Java VM `20` and Gradle versions up to `8.6`.
The recommended runtime is Java VM `15` or newer and Gradle `7.0` or newer. Tests are conducted up to Java VM `20` and Gradle versions up to `8.8`.

Although you may encounter some limitations (i.e. about support for some encryption or hashing algorithms when using SSH authentication), older versions are also supported. Specifically, Java VM `17` or newer are supported and Gradle version `6.0` and later is supported with the exception of versions from `6.5.x` to `6.9.x` and `7.3.x` to `7.5.x` (due to the [ASM](https://asm.ow2.io/index.html) version used by Gradle).

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ public static String[] wellKnownWorkingGradleVersions(boolean quickTestsOnly) {
// Gradle versions from 7.0 on are recommended
if (javaVersion <= 20) {
// the latest version is always among the 'quick' tests
quickTestVersions.add("8.6");
quickTestVersions.add("8.8");
extensiveTestVersions.add("8.7");
extensiveTestVersions.add("8.6");
extensiveTestVersions.add("8.5");
extensiveTestVersions.add("8.4");
extensiveTestVersions.add("8.3");
Expand All @@ -93,7 +95,8 @@ public static String[] wellKnownWorkingGradleVersions(boolean quickTestsOnly) {
extensiveTestVersions.add("8.0");

// the previous major version is in the 'quick' tests
quickTestVersions.add("7.6.3");
quickTestVersions.add("7.6.4");
extensiveTestVersions.add("7.6.3");
extensiveTestVersions.add("7.6.2");
extensiveTestVersions.add("7.6.1");
extensiveTestVersions.add("7.6");
Expand Down

0 comments on commit a670cab

Please sign in to comment.