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

推荐订阅源

雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
D
Docker
博客园 - 聂微东
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
量子位
宝玉的分享
宝玉的分享
博客园 - 司徒正美
The Cloudflare Blog
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC

Spring

A Bootiful Podcast: Joe Grandja on Spring Authorization Server, OAuth, and so much more Spring Modulith 2.2 M1, 2.1.1, 2.0.8, and 1.4.13 released This Week in Spring - August 25th, 2026 Spring AI 2.0.1 Available Now A Bootiful Podcast: JRuby lead Charles Nutter Spring AMQP 4.2.0-M1 Available Spring Integration 7.2.0-M1 Available Spring Batch 6.0.5 and 6.1.0-M1 available now Spring Boot 4.0.8 available now Spring Boot 4.1.1 available now Spring Boot 4.2.0-M1 available now Spring Cloud 2025.1.3 (aka Oakwood) Has Been Released This Week in Spring - August 18th, 2026 Spring Office Hours Podcast: S5E20 - The Developer's Guide to AI with Danny Thompson A Bootiful Podcast: Redouble AI CTO and founder Andrey Santrosyan This Week in Spring - August 11th, 2026 A Bootiful Podcast: Data guru Gregory Green on RabbitMQ, Valkey, Gemfire, Data Flow, and more This Week in Spring - August 4th, 2026 A Bootiful Podcast: Spring Boot founder and lead Phil Webb This Week in Spring - July 28th, 2026 Spring Office Hours Podcast: S5E19 - Docker, Compose, Testcontainers, Oh My! A Bootiful Podcast: Java Developer Advocate Billy Korando on Java 27 and Beyond This Week in Spring - July 21st, 2026 A Bootiful Podcast: Russ Miles on Safer, More Productive Interactions with AI This Week in Spring - July 14th, 2026 Spring Office Hours Podcast: S5E18 - The Latest from OpenAI, Anthropic and Spring AI 2.0 A Bootiful Podcast: Spring Boot legend Moritz Halbritter on the latest and greatest in Spring Boot 4 and 4.1 This Week in Spring - July 7th, 2026 A New Home for Spring Cloud Contract: Transitioning to Stubborn.sh Spring Office Hours Podcast: S5E17 - Spring Boot 4.1 with Phil Webb
Spring AI 1.0.7, 1.1.6, 2.0.0-M6 Available Now
ilayaperumal · 2026-05-08 · via Spring

On behalf of the Spring AI engineering team and everyone who has contributed, I'm happy to announce that Spring AI 1.0.7, 1.1.6, 2.0.0-M6 have been released and are now available from Maven Central.

These releases deliver important improvements, stability enhancements, and bug fixes across multiple release streams.

Release Summary

These releases include a combined total of 143 improvements, bug fixes, and documentation updates. See individual release notes: 1.0.7 | 1.1.6 | 2.0.0-M6

In addition, the releases contain security fixes for CVE-2026-41705, CVE-2026-41712 and CVE-2026-41713.

The focus of these releases includes:

  • Improvements: 42 enhancements across all releases
  • Stability: 13 bug fixes addressing community-reported issues
  • Documentation: 35 improvements to help developers
  • Security: 53 dependency upgrades for enhanced security

Thanks to all those who have contributed with issue reports and pull requests.

Version-Specific Highlights

Spring AI 1.0.7

Overview:

  • PromptChatMemoryAdvisor has been deprecated. Users should migrate to the updated chat memory advisor APIs that require explicit conversation IDs.

⚠️ Breaking Changes:

  • Chat memory advisors now require an explicit conversation ID to be supplied. Previously, a default or implicit ID may have been used, which could cause incorrect memory scoping across conversations. Callers must now provide a conversation ID explicitly.

View complete release notes →

Spring AI 1.1.6

Overview:

  • PromptChatMemoryAdvisor has been deprecated. Users should migrate to the updated chat memory advisor API that requires an explicit conversation ID. This deprecation is part of a broader effort to improve conversation context management. 917f62e

⚠️ Breaking Changes:

  • Chat memory advisors now require an explicit conversation ID to be supplied. This is a behavioral change that affects how chat memory is scoped and managed. Applications relying on implicit conversation IDs must be updated to supply an explicit ID.

View complete release notes →

Spring AI 2.0.0-M6

Overview:

  • Deprecated properties have been added to OpenAiChatProperties to maintain backward compatibility with the previous AbstractOpenAiOptions extension. Users should migrate to the new configuration approach. f271fdc
  • Setter methods have been removed from PostgresML embedding options and Stability AI image options classes, as well as from common ChatOptions (internalToolExecutionEnabled, outputSchema). These options should now be configured through the builder pattern or constructors. Affected: PostgresMlEmbeddingOptions, StabilityAiImageOptions, and common ChatOptions. a0ad1c7, 741a6cc, #5957
  • Two vector store integrations (SAP HANA DB and Infinispan) have been removed from the Spring AI project. Users of these modules should plan migration to supported vector store alternatives. 35b659e
  • Continued polish of null-safety annotations across the codebase using the JSpecify standard, improving IDE support and static analysis for nullability. 65f9c67
  • The AssistantMessage builder has been refactored to properly support inheritance, enabling subclasses to extend the builder fluently. 2622d03
  • OpenAI Java SDK is updated to 4.34.0
  • Anthropic Java SDK is updated to 2.30.0

⚠️ Breaking Changes:

  • PromptChatMemoryAdvisor has been removed. Chat memory advisors now require an explicit conversation ID to be provided, improving predictability and eliminating ambiguous implicit state management. Applications using PromptChatMemoryAdvisor or relying on implicit conversation IDs must be updated. c3c7c86,
  • The class OpenAiConnectionProperties has been renamed to OpenAiCommonProperties to better reflect its purpose as shared configuration across OpenAI integrations.
  • OpenAI properties classes (e.g., OpenAiChatProperties, OpenAiEmbeddingProperties) no longer extend AbstractOpenAiOptions. This changes the class hierarchy and may affect code that relied on the options being available directly on properties classes.

Key Improvements:

  • Enhanced functionality with 18 improvements
  • Documentation updates with 30 improvements
  • Updated dependencies for better security and performance

View complete release notes →

🙏 Contributors

Thanks to all contributors who made these releases possible:

What's Next

The Spring AI team continues to focus on improving AI application development with Spring Boot. Based on the momentum from these releases, upcoming versions will build on these foundations with enhanced capabilities and developer experience improvements.

For the latest updates and to contribute to the project, visit our GitHub repository or join the discussion in our community channels.

Resources

Project Page | GitHub | Issues | Stack Overflow

Documentation: 1.0.7 Docs | 1.1.6 Docs | 2.0.0-M6 Docs