Skip to content

Bump io.spring.nullability from 0.0.15 to 0.0.16 in the development-dependencies group - #11403

Merged
github-actions[bot] merged 4 commits into
mainfrom
dependabot/gradle/development-dependencies-bf0ec38485
Sep 8, 2026
Merged

Bump io.spring.nullability from 0.0.15 to 0.0.16 in the development-dependencies group#11403
github-actions[bot] merged 4 commits into
mainfrom
dependabot/gradle/development-dependencies-bf0ec38485

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 6, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 1 update: io.spring.nullability.

Updates io.spring.nullability from 0.0.15 to 0.0.16

Release notes

Sourced from io.spring.nullability's releases.

v0.0.16

⭐ New Features

  • Provide a config setting for JSpecifyExperimental #49

🔨 Dependency Upgrades

  • Upgrade to NullAway 0.14.1 #48
Commits
  • ec9c287 Release 0.0.16
  • 1c14ae6 Align test method's capitalization with file name's
  • 4e5ecb3 Upgrade to NullAway 0.14.1
  • c40eccb Add settings for JSpecify's Experimental mode
  • 3a277f2 Upgrade to spring-io/central-publish-action v0.4.0
  • 5466763 Upgrade to spring-io/github-changelog-generator v0.0.14
  • 03e7868 Upgrade to spring-io/artifactory-deploy-action v0.0.4
  • 54783b4 Upgrade to jfrog/setup-jfrog-cli v5.1.0
  • ed6ac81 Upgrade to actions/setup-java v6.0.0
  • 78f64a8 Upgrade to gradle/actions/setup-gradle v6.3.0
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the development-dependencies group with 1 update: [io.spring.nullability](https://github.com/spring-gradle-plugins/nullability-plugin).


Updates `io.spring.nullability` from 0.0.15 to 0.0.16
- [Release notes](https://github.com/spring-gradle-plugins/nullability-plugin/releases)
- [Commits](spring-gradle-plugins/nullability-plugin@v0.0.15...v0.0.16)

---
updated-dependencies:
- dependency-name: io.spring.nullability
  dependency-version: 0.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the type: dependency-upgrade Pull requests that update a dependency file label Sep 6, 2026
@github-actions github-actions Bot added type: task and removed type: dependency-upgrade Pull requests that update a dependency file labels Sep 6, 2026
@github-actions github-actions Bot added this to the 7.2.0-M2 milestone Sep 6, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) September 6, 2026 00:43
The upgrade to `io.spring.nullability` 0.0.16 (NullAway 0.14.1) enforces
stricter checking of generics obtained from an unbounded wildcard capture.
`AbstractMessageProducingHandler.sendOutputs()` iterated an `Iterable<?>`
and passed the loop variable into `produceOutput(Object, Message<?>)`,
which NullAway now flags as possibly passing a `@Nullable` value into a
`@NonNull` parameter.

* Narrow the wildcard via an unchecked cast to `Iterable<Object>` before
  iterating, so the element type is a concrete non-null bound
Same root cause as the previous commit: `doReceive()` iterated a
`List<?>` and passed the loop variable into `executeUpdateQuery(Object)`,
which NullAway now flags as possibly `@Nullable`.

* Narrow the wildcard via an unchecked cast to `List<Object>` before
  iterating
Same root cause as the previous two commits: unbounded wildcard capture
(`Collection<?>`/`Iterable<?>`/`Set<?>`) elements are treated as
possibly `@Nullable` by NullAway 0.14.1, even though the code never
puts a `null` into these particular collections.

* `RedisStoreWritingMessageHandler.writeToZset()` narrow the payload
  `Collection<?>` to `Collection<Object>` before iterating
* `RedisChannelMessageStore.getMessageCountForAllMessageGroups()` type
  the `keys()` result as `Set<Object>`, matching `getMessageGroupCount()`
* `DefaultJpaOperations.deleteInBatch()` and `JpaExecutor.checkDelete()`
  narrow the `Iterable<?>` to `Iterable<Object>` before iterating
* `ZipTransformer.createZipEntries()` and `ZipTransformer.deleteFilesIfAny()`
  narrow the `Iterable<?>` payload to `Iterable<Object>` before iterating
@github-actions
github-actions Bot merged commit a9cc733 into main Sep 8, 2026
3 of 4 checks passed
@github-actions
github-actions Bot deleted the dependabot/gradle/development-dependencies-bf0ec38485 branch September 8, 2026 16:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant