🔼 Update dependency laravel/mcp to ^0.9.0 - #686
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 27, 2026 08:29
5fe7109 to
611a526
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 27, 2026 14:56
611a526 to
dc2b08e
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 27, 2026 18:00
dc2b08e to
4bd1183
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 27, 2026 21:37
4bd1183 to
4bebe7a
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 01:13
4bebe7a to
b83bfd0
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 05:31
b83bfd0 to
072329f
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 09:23
072329f to
b24f2aa
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 13:12
b24f2aa to
03e53c9
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 17:34
03e53c9 to
b257684
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 21:07
b257684 to
978fcde
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 28, 2026 22:54
978fcde to
40f827f
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 29, 2026 01:43
40f827f to
c926dda
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
March 29, 2026 09:06
c926dda to
d4ea19a
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 1, 2026 17:33
d4ea19a to
364ae4c
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 13, 2026 04:37
aa1a81b to
4736454
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 13, 2026 05:41
4736454 to
cd2a02f
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 13, 2026 21:23
cd2a02f to
1f256dd
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 14, 2026 06:17
1f256dd to
093fbec
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 18, 2026 09:21
093fbec to
c78952d
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 19, 2026 13:24
c78952d to
24998ee
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 19, 2026 20:40
24998ee to
734e6ea
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 19, 2026 20:52
734e6ea to
75883a0
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 20, 2026 15:56
75883a0 to
448af86
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 21, 2026 14:40
448af86 to
1b23858
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 23, 2026 19:15
e9f5ac8 to
2e66e35
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 25, 2026 16:53
2e66e35 to
d0ed742
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 26, 2026 11:16
d0ed742 to
809037c
Compare
renovate
Bot
force-pushed
the
renovate/laravel-mcp-0.x
branch
from
April 26, 2026 13:19
809037c to
9eacfca
Compare
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.
This PR contains the following updates:
^0.5.9→^0.9.0Release Notes
laravel/mcp (laravel/mcp)
v0.9.1Compare Source
v0.9.0Compare Source
What's Changed
#[SensitiveParameter]to parameters carrying secrets by @axlon in #265New Contributors
Full Changelog: laravel/mcp@v0.8.2...v0.9.0
Upgrading To v0.9.0 From v0.8.0
Custom Client Transports
Likelihood Of Impact: low
The
Laravel\Mcp\Client\Contracts\Transportcontract now requires asetProtocolVersionmethod. The client calls this method after theinitializehandshake so the transport can send the negotiated protocol version on subsequent requests.If your application implements this contract, add the method to your transport:
Transports that do not send per-request headers may implement the method as a no-op, as the first-party
StdioTransportdoes.Client Protocol Version Negotiation
Likelihood Of Impact: Medium
The MCP client now validates the negotiated protocol version against the new
ProtocolVersion::clientSupported()method rather thanProtocolVersion::supported(). The client supports2025-11-25and2025-06-18.Connecting to a server that negotiates
2025-03-26or2024-11-05previously succeeded and will now throw aLaravel\Mcp\Exceptions\ClientException.The
ProtocolVersion::supported()method is unchanged and still reports every version the server accepts.v0.8.2Compare Source
What's Changed
#[SensitiveParameter]to parameters carrying secrets by @axlon in #265New Contributors
Full Changelog: laravel/mcp@v0.8.2...v0.9.0
Upgrading To v0.9.0 From v0.8.0
Custom Client Transports
Likelihood Of Impact: low
The
Laravel\Mcp\Client\Contracts\Transportcontract now requires asetProtocolVersionmethod. The client calls this method after theinitializehandshake so the transport can send the negotiated protocol version on subsequent requests.If your application implements this contract, add the method to your transport:
Transports that do not send per-request headers may implement the method as a no-op, as the first-party
StdioTransportdoes.Client Protocol Version Negotiation
Likelihood Of Impact: Medium
The MCP client now validates the negotiated protocol version against the new
ProtocolVersion::clientSupported()method rather thanProtocolVersion::supported(). The client supports2025-11-25and2025-06-18.Connecting to a server that negotiates
2025-03-26or2024-11-05previously succeeded and will now throw aLaravel\Mcp\Exceptions\ClientException.The
ProtocolVersion::supported()method is unchanged and still reports every version the server accepts.v0.8.1Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.8.1...v0.8.2
v0.8.0Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.8.0...v0.8.1
v0.7.2Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.7.2...v0.8.0
v0.7.1Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.7.1...v0.7.2
v0.7.0Compare Source
v0.6.7Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.6.6...v0.6.7
v0.6.6Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.6.6...v0.6.7
v0.6.5Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.6.4...v0.6.5
v0.6.4Compare Source
What's Changed
New Contributors
Full Changelog: laravel/mcp@v0.6.4...v0.6.5
v0.6.3Compare Source
assertStructuredContent($closure)support by @gdebrauwer in #172v0.6.2Compare Source
v0.6.1Compare Source
v0.6.0Compare Source
Configuration
📅 Schedule: (in timezone Europe/London)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.