88 wires and counting

$ follow Spring

Keep up with Spring in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good morning, this isn't your newsletter.

One email a day. Unsubscribe in one click.

$ status

wire 2026-08-29
stories 9

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Spring AMQP honors autoStartup after registry restart

By RepoJournal · Filed · About Spring

Spring AMQP now correctly honors autoStartup=false for listener containers after a context restart.

Spring AMQP 3.0+ honors `autoStartup` after a `RabbitListenerEndpointRegistry` restart [1]. The `contextRefreshed` flag was set on `ContextRefreshedEvent` and never cleared, so any `start()` after the first refresh, including one triggered by `ConfigurableApplicationContext.restart()` (Spring Framework 7.0.3+ test context pause/resume), unconditionally started all listener containers, ignoring `autoStartup=false`. The fix resets `contextRefreshed` in `stop()`, matching the same fix in Spring for Apache Kafka's `KafkaListenerEndpointRegistry` [2]. Spring Boot adds javadoc and sources variants to spring-graphql and spring-framework dependencies [3][4], closing gh-51499 and gh-51494. Spring Kafka's `deploy-docs.yml` adds `contents: read` because private GitHub repos set this permission to `none` by default [5]. Merges across Spring Boot branches (4.0.x into 4.1.x, and 4.1.x) bring the changes forward . Total this period: 8 commits and 1 PR across the three repos.

Action items

References

  1. [1] Honor `autoStartup` after `RabbitListenerEndpointRegistry` restart ↗ spring-projects/spring-amqp
  2. [2] GH-3601: Honor `autoStartup` after `RabbitListenerEndpointRegistry` restart ↗ spring-projects/spring-amqp
  3. [3] Add javdoc and sources variants to spring-graphql dependencies ↗ spring-projects/spring-boot
  4. [4] Add javdoc and sources variants to spring-framework dependencies ↗ spring-projects/spring-boot
  5. [5] Add `contents: read` into `deploy-docs.yml` ↗ spring-projects/spring-kafka

Quick answers

What shipped in Spring on August 29, 2026?
Spring AMQP now correctly honors autoStartup=false for listener containers after a context restart. In total, 8 commits and 1 pull requests landed.
Who contributed to Spring on August 29, 2026?
3 developers shipped this update, including Phillip Webb, artembilan, and Soby Chacko.
What were the notable Spring updates?
Honor `autoStartup` after `RabbitListenerEndpointRegistry` restart, GH-3601: Honor `autoStartup` after `RabbitListenerEndpointRegistry` restart, and Add javdoc and sources variants to spring-graphql dependencies.