Skip to content

Bump org.springframework.boot:spring-boot-dependencies from 3.3.0-M1 to 3.3.0-SNAPSHOT #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 11, 2024

Bumps org.springframework.boot:spring-boot-dependencies from 3.3.0-M1 to 3.3.0-SNAPSHOT.

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added the type: dependency-upgrade A dependency upgrade label Feb 11, 2024
@github-actions github-actions bot added this to the 5.0.0-M1 milestone Feb 11, 2024
@github-actions github-actions bot enabled auto-merge (squash) February 11, 2024 06:20
Copy link
Collaborator

@onobc onobc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@onobc
Copy link
Collaborator

onobc commented Feb 12, 2024

The KafkaSupplierTests are failing w/ NPE which I believe to be caused by class mismatch as follows:

  • SB 3.3.0-SNAPSHOT uses SK 3.2.0-SNAPSHOT (the isAsyncReplies was added)
  • SB 3.3.0-SNAPSHOT uses SI 6.3.0-SNAPSHOT
  • SI 6.3.0-SNAPSHOT uses SK 3.1.2-SNAPSHOT (has no isAsyncReplies notion)

@artembilan you may already know about this but we can discuss at team meeting tomorrow.

Stacktrace

at org.springframework.integration.dsl.PublisherIntegrationFlow.subscribe(PublisherIntegrationFlow.java:63)
at reactor.core.publisher.FluxSource.subscribe(FluxSource.java:71)
at reactor.core.publisher.Flux.subscribe(Flux.java:8836)
at reactor.test.DefaultStepVerifierBuilder$DefaultStepVerifier.toVerifierAndSubscribe(DefaultStepVerifierBuilder.java:891)
at reactor.test.DefaultStepVerifierBuilder$DefaultStepVerifier.verify(DefaultStepVerifierBuilder.java:831)
at org.springframework.cloud.fn.supplier.kafka.KafkaSupplierTests.lambda$recordModeAndTopicPattern$0(KafkaSupplierTests.java:67)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.accept(AbstractApplicationContextRunner.java:434)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.consumeAssertableContext(AbstractApplicationContextRunner.java:363)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.lambda$run$0(AbstractApplicationContextRunner.java:341)
at org.springframework.boot.test.util.TestPropertyValues.lambda$applyToSystemProperties$1(TestPropertyValues.java:174)
at org.springframework.boot.test.util.TestPropertyValues.applyToSystemProperties(TestPropertyValues.java:188)
at org.springframework.boot.test.util.TestPropertyValues.applyToSystemProperties(TestPropertyValues.java:173)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.lambda$run$1(AbstractApplicationContextRunner.java:341)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.withContextClassLoader(AbstractApplicationContextRunner.java:369)
at org.springframework.boot.test.context.runner.AbstractApplicationContextRunner.run(AbstractApplicationContextRunner.java:340)
at org.springframework.cloud.fn.supplier.kafka.KafkaSupplierTests.recordModeAndTopicPattern(KafkaSupplierTests.java:54)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
Suppressed: java.lang.NullPointerException: Cannot invoke "org.springframework.kafka.listener.adapter.HandlerAdapter.isAsyncReplies()" because "this.handlerMethod" is null
at org.springframework.kafka.listener.adapter.MessagingMessageListenerAdapter.isAsyncReplies(MessagingMessageListenerAdapter.java:248)
at org.springframework.kafka.listener.KafkaMessageListenerContainer$ListenerConsumer.(KafkaMessageListenerContainer.java:869)
at org.springframework.kafka.listener.KafkaMessageListenerContainer.doStart(KafkaMessageListenerContainer.java:393)
at org.springframework.kafka.listener.AbstractMessageListenerContainer.start(AbstractMessageListenerContainer.java:512)
at org.springframework.kafka.listener.ConcurrentMessageListenerContainer.doStart(ConcurrentMessageListenerContainer.java:256)
at org.springframework.kafka.listener.AbstractMessageListenerContainer.start(AbstractMessageListenerContainer.java:512)
at org.springframework.integration.kafka.inbound.KafkaMessageDrivenChannelAdapter.doStart(KafkaMessageDrivenChannelAdapter.java:318)
at org.springframework.integration.endpoint.AbstractEndpoint.start(AbstractEndpoint.java:155)
at org.springframework.integration.dsl.StandardIntegrationFlow.start(StandardIntegrationFlow.java:140)
at org.springframework.integration.dsl.PublisherIntegrationFlow.lambda$new$0(PublisherIntegrationFlow.java:49)
at reactor.core.publisher.FluxPeek$PeekSubscriber.onSubscribe(FluxPeek.java:162)
... 26 more

@artembilan
Copy link
Member

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/gradle/org.springframework.boot-spring-boot-dependencies-3.3.0-SNAPSHOT branch from b236365 to d48f7fd Compare February 12, 2024 15:29
@artembilan
Copy link
Member

@dependabot rebase

Bumps [org.springframework.boot:spring-boot-dependencies](https://github.com/spring-projects/spring-boot) from 3.3.0-M1 to 3.3.0-SNAPSHOT.
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](https://github.com/spring-projects/spring-boot/commits)

---
updated-dependencies:
- dependency-name: org.springframework.boot:spring-boot-dependencies
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/gradle/org.springframework.boot-spring-boot-dependencies-3.3.0-SNAPSHOT branch from d48f7fd to 3de891a Compare February 12, 2024 15:36
@artembilan artembilan added type: task A general task and removed type: dependency-upgrade A dependency upgrade labels Feb 12, 2024
@github-actions github-actions bot merged commit 8a44c67 into main Feb 12, 2024
@dependabot dependabot bot deleted the dependabot/gradle/org.springframework.boot-spring-boot-dependencies-3.3.0-SNAPSHOT branch February 12, 2024 15:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: task A general task
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants