Skip to content

Bump gradle-wrapper from 9.7.0 to 9.7.1 - #27

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-wrapper-9.7.1
Closed

Bump gradle-wrapper from 9.7.0 to 9.7.1#27
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-wrapper-9.7.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 27, 2026

Copy link
Copy Markdown

Bumps gradle-wrapper from 9.7.0 to 9.7.1.

Release notes

Sourced from gradle-wrapper's releases.

9.7.1

The Gradle team is excited to announce Gradle 9.7.1.

This is a patch release for 9.7.0. We recommend using 9.7.1 instead of 9.7.0.

Here are the highlights of 9.7.0 release:

  • Isolated Projects graduates to incubating
  • Broader Configuration Cache compatibility
  • Resilient Sync helps you fix broken builds
  • More source locations in problem reports

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle: Adam, Aman Gautam, Aman Kumar, Anton Dubrouski, Aurimas, gbhavya07, Josh Friend, nicklauslittle-gov, Pragati, project516, Qin Mi, Ravi, sk-reddy17, Suvrat Acharya, Yongshun Ye.

Upgrade instructions

Switch your build to use Gradle 9.7.1 by updating your wrapper:

./gradlew :wrapper --gradle-version=9.7.1 && ./gradlew :wrapper

See the Gradle 9.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines. If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [gradle-wrapper](https://github.com/gradle/gradle) from 9.7.0 to 9.7.1.
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v9.7.0...v9.7.1)

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 27, 2026
@guyiome guyiome closed this in #31 Sep 2, 2026
guyiome added a commit that referenced this pull request Sep 2, 2026
#29) (#31)

* Bump the Gradle wrapper to 9.7.1

Reproduces Dependabot PR #27 as a local commit per project convention.
Regenerated with ./gradlew wrapper --gradle-version 9.7.1 rather than
hand-editing the properties file, so the wrapper jar is the one 9.7.1
actually ships instead of being left behind at 9.7.0. Verified the
result is byte-identical to the PR: same blob hash for
gradle-wrapper.jar, identical properties, and no other file touched
(gradlew/gradlew.bat unchanged).

9.7.1 is a patch with six fixes. Only one is relevant here, and
favourably: the regression in unit-test failure diff formatting. The
others (ANTLR leaking into the kapt classpath, ant.taskdef classpath
resolution, BaseExecSpec streams, Transformer implementations, Option
argument ordering) cover mechanisms this project doesn't use.

Full build, unit tests and lint pass on 9.7.1, and lint's "a newer
version of Gradle is available" warning is now gone.

* Bump com.android.application (AGP) to 9.3.2

Reproduces Dependabot PR #29 as a local commit per project convention;
the resulting libs.versions.toml is identical to the PR's.

Patch release, build/tests/lint all pass on it (on Gradle 9.7.1 from
the previous commit, so the shipping combination is what got tested).

Note: lint now reports AGP 9.4.0 as available too, released after this
PR was opened. Deliberately not taken here -- a minor bump deserves its
own changelog review rather than riding along in a patch reproduction,
and Dependabot will raise it on its next run.

* Bump actions/setup-java from v5 to v6 in all three workflows

Reproduces Dependabot PR #28 as a local commit per project convention;
the three resulting workflow files are identical to the PR's.

Major version bump, but a no-op for how this repo uses the action
(distribution: temurin, java-version: 17, nothing else). Reviewed the
v6.0.0 notes against that usage: the Zulu Discovery -> Azul Metadata
API migration only affects distribution: zulu; the jdkFile -> jdk-file
rename concerns an input we don't set; the Maven/Gradle cache split
concerns setup-java's own cache, which we don't use (caching goes
through gradle/actions/setup-gradle); the GPG and Maven toolchain
changes are unused here. The ESM migration is documented upstream as
not user-facing.

CI-only change, so it can't be validated locally -- the PR's own CI run
is the check, and it was green on all three workflows.

* Bump AGP further to 9.4.0, after reviewing the minor release

Deliberate step beyond Dependabot PR #29 (reproduced as-is in the
previous commit), taken only after checking the minor release rather
than riding along with the patch.

Requirements met: Gradle 9.6.0 minimum (we're on 9.7.1 as of two
commits ago), JDK 17, SDK Build Tools 36.0.0 (installed).

Neither announced behaviour change applies here:
- Strict 1:1 flavor parity for dynamic features -- this project has a
  single app module and no dynamic features.
- The new Variant API becoming mandatory in AGP 10 -- this project
  uses no Variant API at all (no applicationVariants, no
  androidComponents). The release APK is renamed by a plain mv in
  release.yml, not through the API, so there's nothing to migrate
  ahead of AGP 10 either.

Validated with assembleRelease on top of the usual checks, because
9.4.0 carries a SigningConfig eagerness fix and this project relies on
exactly that pattern (conditional release signingConfig falling back to
signingConfigs.getByName("debug") when the env vars are absent). The
fallback is intact: apksigner reports the release APK signed with
"C=US, O=Android, CN=Android Debug" as before. Debug-only runs would
not have caught a regression there.

testDebugUnitTest, assembleDebug, lintDebug and assembleRelease all
pass. Lint drops from 51 to 50 warnings -- the "newer version of AGP is
available" one is now gone.
@dependabot @github

dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/gradle/gradle-wrapper-9.7.1 branch September 2, 2026 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants