fix: harden 0.2 non-web consumer readiness - #5
Merged
Conversation
ChoMinGi
marked this pull request as ready for review
July 25, 2026 08:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A standalone non-web Spring Boot app exposed a startup failure before 0.2.0: Spring was introspecting servlet and WebFlux filter return types even when those dependencies were absent.
This keeps core, servlet, and reactive auto-configuration separate so optional web stacks are guarded at the configuration-class boundary. The 0.1.x factory descriptors remain available through a deprecated compatibility facade. The global
langfuse.enabled=falseswitch now also disables model adapters and operational signals when an application supplies its ownLangfuseOtelbean.Two reactor-external Boot 3.5 consumers now cover Spring AI and LangChain4j independently. Each runs both application-owned and standalone OpenTelemetry paths. The standalone path starts a non-web context, invokes a local
ChatModel, flushes to a loopback OTLP receiver, decodes the protobuf request, and checks authentication, ingestion headers, service resource, and model attributes. CI runs Spring AI 1.0.9/1.1.8 and LangChain4j 1.0.0/1.18.0. Provider API calls and live Langfuse ingestion are intentionally outside these credential-free smokes.The public docs now distinguish the published 0.1.1 artifacts from the 0.2.0 candidate. Release preflight rejects candidate wording, incorrect README artifact versions, an undated version heading, or a missing
Unreleasedsection before Central credentials are exposed.Verified with the reactor
clean verify, the quality profile, both example builds, the core prompt consumer, all four framework consumer combinations, andactionlint. The current PR CI run is green.