惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
S
Securelist
小众软件
小众软件
WordPress大学
WordPress大学
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
博客园 - Franky
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
O
OpenAI News
Cloudbric
Cloudbric
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
TaoSecurity Blog
TaoSecurity Blog
MongoDB | Blog
MongoDB | Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
V
V2EX
PCI Perspectives
PCI Perspectives
T
Troy Hunt's Blog
Schneier on Security
Schneier on Security
P
Palo Alto Networks Blog
M
MIT News - Artificial intelligence
V2EX - 技术
V2EX - 技术
阮一峰的网络日志
阮一峰的网络日志
Hacker News - Newest:
Hacker News - Newest: "LLM"
G
Google Developers Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
The Last Watchdog
The Last Watchdog
The Register - Security
The Register - Security
腾讯CDC
N
News and Events Feed by Topic
C
Check Point Blog
爱范儿
爱范儿
T
Tailwind CSS Blog
Webroot Blog
Webroot Blog
P
Proofpoint News Feed
S
Schneier on Security
MyScale Blog
MyScale Blog
N
News | PayPal Newsroom
Recorded Future
Recorded Future
T
Tenable Blog
I
InfoQ
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Microsoft Security Blog
Microsoft Security Blog
Simon Willison's Weblog
Simon Willison's Weblog
Engineering at Meta
Engineering at Meta

Spring Releases

Spring Boot 3.5.16 available now Spring Data 2025.0.13 released Spring Tools 5.2.0 released Spring AI 1.0.9, 1.1.8 Available Now Spring AI 2.0.0 GA Available Now Spring Modulith 2.1 GA, 2.0.7, and 1.4.12 released Spring Shell 4.0.3 and 3.4.3 are out! Spring Cloud 2025.0.3 (aka Northfields) Has Been Released Spring Cloud 2025.1.2 (aka Oakwood) Has Been Released Spring for GraphQL 1.4.6 and 2.0.4 released Spring gRPC 1.1.0 available now Spring Vault 4.0.3 and 3.2.1 available Spring Vault 4.1 Generally Available Spring Batch 6.0.4 and 5.2.6 available now Spring Boot 3.5.15 available now Spring Boot 4.0.7 available now Spring AI 2.0.0-RC1 Available Now Spring AI 2.0.0-M8 Available Now Spring AI 1.0.8, 1.1.7, 2.0.0-M7 Available Now Spring AI 1.0.7, 1.1.6, 2.0.0-M6 Available Now Spring Cloud Function and Config Have Been Released To Address Several CVEs Spring AI 1.0.6, 1.1.5, 2.0.0-M5 Available Now Spring Modulith 2.1 RC1, 2.0.6, and 1.4.11 released Spring Shell 4.0.2 is out! Spring Boot 3.5.14 available now Spring Boot 4.0.6 available now Spring Boot 4.1.0-RC1 available now Spring for Apache Pulsar 1.2.17 and 2.0.5 are now available Spring Authorization Server 1.5.7 Available Now Spring Security 2026.04 Releases - Contains CVE Fixes Spring Integration 7.1.0-RC1 Available Spring Vault 4.1.0-RC1 and 4.0.2 released Spring Data 2026.0.0-RC1 enters release candidate phase Spring Data 2025.1.5 and 2025.0.11 released Spring Framework 6.2.18 and 7.0.7 Available Now Spring Cloud 2025.0.2 (aka Northfields) Has Been Released Spring Modulith 2.1 M4, 2.0.5, and 1.4.10 released Spring AI 2.0.0-M4, 1.1.4 and 1.0.5 are available now Spring Boot 3.5.13 available now
Spring for Apache Kafka 4.1.0-RC1, 4.0.5, and 3.3.15 Available
sobychacko · 2026-04-22 · via Spring Releases
On behalf of the team and everyone who contributed, we are pleased to announce that Spring for Apache Kafka 4.1.0-RC1 , 4.0.5 , and 3.3.15 have been released. We extend our gratitude to all contributors who made these releases possible. A broader walkthrough of what is new in the 4.1 line thus far compared with 4.0 is in the What’s New in 4.1 Since 4.0 chapter of the reference manual. What's New in 4.1.0-RC1 Share consumer ShareAckMode ( #4376 ): Container configuration now uses a ShareAckMode enum ( EXPLICIT , MANUAL , IMPLICIT ) in place of the deprecated boolean on ContainerProperties ; defaults are unchanged for existing apps. Details: Record acknowledgment . Async commits ( #4324 , #4380 ): The share container can use asynchronous acknowledgment commits; AcknowledgementCommitCallback is provided as a commit callback for the user to have further control. Details: Synchronous vs asynchronous commits . share.acquire.mode ( #4326 ): Built-in validation ensures share.acquire.mode ( KIP-1206 ) is wired correctly through Spring’s configuration model. Details: Acquire mode . Lifecycle events ( #4327 ): ShareKafkaMessageListenerContainer publishes additional stop and failure events alongside the existing start events. Details: Lifecycle events . Kafka Streams group.protocol ( #4329 ): StreamsBuilderFactoryBean exposes groupProtocol so you can choose the classic consumer protocol or the Streams group protocol for server-side rebalance ( KIP-1071 ). Details: Group protocol . Native DLQ and Streams exception handlers ( #4328 ): Kafka 4.2’s KIP-1034 extends deserialization, processing, and production exception handlers with a shared handleError() contract and optional dead-letter records issued by Kafka Streams itself. Spring Kafka has traditionally used, RecoveringDeserializationExceptionHandler along with DeadLetterPublishingRecoverer + KafkaTemplate . This release lines up Spring Kafka’s recovering handlers for Kafka Streams with KIP-1034: RecoveringDeserializationExceptionHandler is updated, and RecoveringProcessingExceptionHandler / RecoveringProductionExceptionHandler are added. When you configure a DLQ topic, a destination resolver, or the factory bean’s dead-letter topic name, failures can follow the native DLQ route; when you do not, behavior stays with the recoverer-based path you already rely on. Handler wiring and DLQ options: Deserialization recovery , Processing recovery , Production recovery . Other fixes and documentation Async processing with filtered messages ( FilteringMessageListenerAdapter ) ( #4377 ) ShareKafkaMessageListenerContainer.doStart() waits for the consumer thread ( #4357 ) StreamsBuilderFactory properties remain immutable after initialization ( #4382 ) JSpecify @Nullable on consumer and producer factories ( #4355 ) Clearer container-properties documentation for messageListener ( #4417 ) 4.0.5 and 3.3.15 (patch releases) Patch releases 4.0.5 and 3.3.15 carry the same kinds of fixes we shipped in 4.1.0-RC1 where they apply to those branches. 4.0.5 includes fixes for filtering with async commits, share container startup, StreamsBuilderFactory immutability, factory nullability annotations, Kafka client patch alignment, and current Spring stack BOMs (Spring Framework, Reactor, Micrometer, tracing, Spring Data, logging). 3.3.15 brings the FilteringMessageListenerAdapter fix and Framework/Reactor maintenance bumps for the 3.3.x line. Release notes More details along with any dependency updates and other changes can be found in the release notes. 4.1.0-RC1 4.0.5 3.3.15 Spring Boot integration Spring Kafka 3.3.15 will be integrated into Spring Boot 3.5.14 . Spring Kafka 4.0.5 will be integrated into Spring Boot 4.0.6 . Spring Kafka 4.1.0-RC1 will be integrated into Spring Boot 4.1.0-RC1 . Community feedback Feedback and issue reports are welcome on GitHub . GitHub | Project Page | Documentation