[MCP Bundle] Add framework session store backed by SessionHandlerInterface#1838
Merged
chr-hertel merged 1 commit intosymfony:mainfrom Apr 11, 2026
Merged
Conversation
9717ead to
ccd11be
Compare
Member
|
Hi! Version 0.7 has been released. This PR has changelog/upgrade entries under the Please update the following files to place your entries under the next version 0.8:
For Thank you! 🤖 This comment was generated automatically by an agent. |
89d48e6 to
2342b52
Compare
chr-hertel
approved these changes
Apr 11, 2026
2342b52 to
98b7ad5
Compare
Member
|
Thank you @simonchrz. |
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.
Summary
Add a
frameworksession store option that wraps Symfony'sSessionHandlerInterfacefor MCP session persistence.Extracted from #1791 as requested by @chr-hertel.
FrameworkSessionStore
SessionHandlerInterfacewith a JSON envelope containing data and expiration timestampSessionHandlerInterface::gc()to avoid affecting framework HTTP sessionsmcp-) and TTL (default: 3600s)Configuration
Tests
FrameworkSessionStoreTest: 11 tests covering read/write round-trip, TTL expiry, invalid envelope handling, destroy delegation, gc no-op, custom prefix, exists checksMcpBundleTest::testSessionStoreFrameworkConfiguration: verifies DI wiring withsession.handlerreferenceTested in
Tested in a real Symfony application with the framework session store — works as expected.