mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
f1cca03ed3016645a7572b01e38680d7dc971306
982 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
dcc8e9eec5 |
chore: update gopsutil to fix panic on macos (#18330)
Fixes https://github.com/coder/internal/issues/688 |
||
|
|
1a00eae12e |
chore: handle mixed type lists in plan output (#18331)
Primarily for this fix: https://github.com/coder/preview/commit/2e5caa65a54ab87073aaeee84e2a859e0c9fb299 |
||
|
|
af4a6682b4 |
fix: use tailscale that avoids small MTU paths (#18323)
Fixes #15523 Uses latest https://github.com/coder/tailscale which includes https://github.com/coder/tailscale/pull/85 to stop selecting paths with small MTU for direct connections. Also updates the tailnet integration test to reproduce the issue. The previous version had the 2 peers connected by a single veth, but this allows the OS to fragment the packet. In the new version, the 2 peers (and server) are all connected by a central router. The link between peer 1 and the router has an adjustable MTU. IPv6 does not allow packets to be fragmented by intermediate routers, so sending a too-large packet in this scenario forces the router to drop packets and reproduce the issue (without the tailscale changes). |
||
|
|
be4f5efffd |
chore: bump gopkg.in/DataDog/dd-trace-go.v1 from 1.73.0 to 1.74.0 (#18287)
Bumps gopkg.in/DataDog/dd-trace-go.v1 from 1.73.0 to 1.74.0. <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | gopkg.in/DataDog/dd-trace-go.v1 | [>= 1.58.a, < 1.59] | </details> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
3378b27840 |
chore: bump google.golang.org/grpc from 1.72.1 to 1.73.0 (#18282)
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.72.1 to 1.73.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.73.0</h2> <h1>New Features</h1> <ul> <li>balancer/ringhash: move LB policy from xds/internal to exported path to facilitate use without xds (<a href="https://redirect.github.com/grpc/grpc-go/issues/8249">#8249</a>)</li> <li>xds: enable least request LB policy by default. It can be disabled by setting <code>GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST=false</code> in your environment. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8253">#8253</a>)</li> <li>grpc: add a <code>CallAuthority</code> Call Option that can be used to overwrite the http <code>:authority</code> header on per-RPC basis. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8068">#8068</a>)</li> <li>stats/opentelemetry: add trace event for name resolution delay. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8074">#8074</a>)</li> <li>health: added <code>List</code> method to gRPC Health service. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8155">#8155</a>) <ul> <li>Special Thanks: <a href="https://github.com/marcoshuck"><code>@marcoshuck</code></a></li> </ul> </li> <li>ringhash: implement features from gRFC A76. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8159">#8159</a>)</li> <li>xds: add functionality to support SPIFFE Bundle Maps as roots of trust in XDS which can be enabled by setting <code>GRPC_EXPERIMENTAL_XDS_MTLS_SPIFFE=true</code>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8167">#8167</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8180">#8180</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8229">#8229</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8343">#8343</a>)</li> </ul> <h1>Bug Fixes</h1> <ul> <li>xds: locality ID metric label is changed to make it consistent with <a href="https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md#optional-xds-locality-label">gRFC A78</a>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8256">#8256</a>)</li> <li>client: fail RPCs on the client when using extremely short contexts that expire before the <code>grpc-timeout</code> header is created. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8312">#8312</a>)</li> <li>server: non-positive <code>grpc-timeout</code> header values are now rejected. This is consistent with the <a href="https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests">gRPC protocol spec</a>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8290">#8290</a>) <ul> <li>Special Thanks: <a href="https://github.com/evanj"><code>@evanj</code></a></li> </ul> </li> <li>xds: fix reported error string when LRS load reporting interval is invalid. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8224">#8224</a>) <ul> <li>Special Thanks: <a href="https://github.com/alingse"><code>@alingse</code></a></li> </ul> </li> </ul> <h1>Performance Improvements</h1> <ul> <li>credentials/alts: improve read performance by optimizing buffer copies and allocations. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8271">#8271</a>)</li> <li>server: improve performance of RPC handling by avoid a status proto copy (<a href="https://redirect.github.com/grpc/grpc-go/issues/8282">#8282</a>) <ul> <li>Special Thanks: <a href="https://github.com/evanj"><code>@evanj</code></a></li> </ul> </li> </ul> <h1>Documentation</h1> <ul> <li>examples/features/opentelemetry: modify example to demonstrate tracing using OpenTelemtry plugin. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8056">#8056</a>)</li> </ul> <h2>Release 1.72.2</h2> <h1>Bug Fixes</h1> <ul> <li>client: restore support for <code>NO_PROXY</code> environment variable when connecting to locally-resolved addresses (case 2 from <a href="https://github.com/grpc/proposal/blob/master/A1-http-connect-proxy-support.md">gRFC A1</a>). (<a href="https://redirect.github.com/grpc/grpc-go/issues/8329">#8329</a>)</li> <li>balancer/least_request: fix panic on resolver errors. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8333">#8333</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/c52d02553f2649c28d0279bca17909a3a08de022"><code>c52d025</code></a> Change version to 1.73.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8322">#8322</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ac60db1864c340dee6e5718fad7dee439775766e"><code>ac60db1</code></a> Add flag guarding SPIFFE Bundle provider (<a href="https://redirect.github.com/grpc/grpc-go/issues/8343">#8343</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/8382">#8382</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/183c148c4e63b5770c8b9bdfc7d38fc0811e2742"><code>183c148</code></a> balancer/ringhash: Add experimental notice in package comment (<a href="https://redirect.github.com/grpc/grpc-go/issues/8364">#8364</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/8365">#8365</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/b610465ce4bd1af616bad0389185276fb8d19bb8"><code>b610465</code></a> delegatingresolver: avoid proxy for resolved addresses in NO_PROXY env (<a href="https://redirect.github.com/grpc/grpc-go/issues/8329">#8329</a>...</li> <li><a href="https://github.com/grpc/grpc-go/commit/96c4308a9958ccd2bcaffffd53d8fa6c380058b7"><code>96c4308</code></a> balancer/least_request : Fix panic while handling resolver errors (<a href="https://redirect.github.com/grpc/grpc-go/issues/8333">#8333</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/8">#8</a>...</li> <li><a href="https://github.com/grpc/grpc-go/commit/af5146b69698317950518c934e9eb14341df6858"><code>af5146b</code></a> grpc: update contributing.md (<a href="https://redirect.github.com/grpc/grpc-go/issues/8318">#8318</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/09166b665e8b6442bc70e88cdef580da9e7b7b06"><code>09166b6</code></a> cleanup: remove unused constants in generic xdsclient (<a href="https://redirect.github.com/grpc/grpc-go/issues/8315">#8315</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e3f13e75a60a13287fc537cb7974680f1eb99dc7"><code>e3f13e7</code></a> transport: Prevent sending negative timeouts (<a href="https://redirect.github.com/grpc/grpc-go/issues/8312">#8312</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/b89909b7bd0d9bd333aab291e90fec1fa8d45ce9"><code>b89909b</code></a> leakcheck: Fix flaky test TestCheck (<a href="https://redirect.github.com/grpc/grpc-go/issues/8309">#8309</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/709023de87a25ae63b000139295af10589edffee"><code>709023d</code></a> grpcsync/event: Simplify synchronization (<a href="https://redirect.github.com/grpc/grpc-go/issues/8308">#8308</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.72.1...v1.73.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
51ed624bb9 |
chore: update preview to handle meta count for parameters (#18231)
Parameters using `count` had values incorrectly assigned and could panic in some cases. |
||
|
|
00fb61068f |
chore: use Quartz 0.2.1 instead of unreleased tip of main (#18198)
Points us at Quartz 0.2.1 which is the same commit, but was unreleased until today. |
||
|
|
74f0fe2a35 |
chore: bump github.com/moby/moby from 28.1.1+incompatible to 28.2.2+incompatible (#18171)
Bumps [github.com/moby/moby](https://github.com/moby/moby) from 28.1.1+incompatible to 28.2.2+incompatible. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/moby/moby/releases">github.com/moby/moby's releases</a>.</em></p> <blockquote> <h2>28.2.2</h2> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.2.2">docker/cli, 28.2.2 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.2.2">moby/moby, 28.2.2 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>containerd image store: Fix a regression causing <code>docker build --push</code> to fail. This reverts <a href="https://redirect.github.com/moby/moby/pull/49702">the fix</a> for <code>docker build</code> not persisting overridden images as dangling. <a href="https://redirect.github.com/moby/moby/pull/50105">moby/moby#50105</a></li> </ul> <h3>Networking</h3> <ul> <li>When creating the iptables <code>DOCKER-USER</code> chain, do not add an explicit <code>RETURN</code> rule, allowing users to append as well as insert their own rules. Existing rules are not removed on upgrade, but it won't be replaced after a reboot. <a href="https://redirect.github.com/moby/moby/pull/50098">moby/moby#50098</a></li> </ul> <h2>28.2.1</h2> <h2>Packaging updates</h2> <ul> <li>Fix packaging regression in <a href="https://github.com/moby/moby/releases/tag/v28.2.0">v28.2.0</a> which broke creating the <code>docker</code> group/user on fresh installations. <a href="https://redirect.github.com/docker/docker-ce-packaging/issues/1209">docker-ce-packaging#1209</a></li> </ul> <h2>28.2.0</h2> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.2.0">docker/cli, 28.2.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.2.0">moby/moby, 28.2.0 milestone</a></li> <li>Deprecated and removed features, see <a href="https://github.com/docker/cli/blob/v28.2.0/docs/deprecated.md">Deprecated Features</a>.</li> <li>Changes to the Engine API, see <a href="https://github.com/moby/moby/blob/v28.2.0/docs/api/version-history.md">API version history</a>.</li> </ul> <blockquote> <p>[!NOTE] RHEL packages are currently not available and will be released later.</p> </blockquote> <h3>New</h3> <ul> <li>Add <code>{{.Platform}}</code> as formatting option for <code>docker ps</code> to show the platform of the image the container is running. <a href="https://redirect.github.com/docker/cli/pull/6042">docker/cli#6042</a></li> <li>Add support for relative parent paths (<code>../</code>) on bind mount sources when using <code>docker run/create</code> with <code>-v/--volume</code> or <code>--mount type=bind</code> options. <a href="https://redirect.github.com/docker/cli/pull/4966">docker/cli#4966</a></li> <li>CDI is now enabled by default. <a href="https://redirect.github.com/moby/moby/pull/49963">moby/moby#49963</a></li> <li>Show discovered CDI devices in <code>docker info</code>. <a href="https://redirect.github.com/docker/cli/pull/6078">docker/cli#6078</a></li> <li><code>docker image rm</code>: add <code>--platform</code> option to remove a variant from multi-platform images. <a href="https://redirect.github.com/docker/cli/pull/6109">docker/cli#6109</a></li> <li>containerd image store: Initial BuildKit support for building Windows container images on Windows (requires an opt-in with <code>DOCKER_BUILDKIT=1</code>). <a href="https://redirect.github.com/moby/moby/pull/49740">moby/moby#49740</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>Add a new log option for fluentd log driver (<code>fluentd-write-timeout</code>), which enables specifying write timeouts for fluentd connections. <a href="https://redirect.github.com/moby/moby/pull/49911">moby/moby#49911</a></li> <li>Add support for <code>DOCKER_AUTH_CONFIG</code> for the experimental <code>--use-api-socket</code> option. <a href="https://redirect.github.com/docker/cli/pull/6019">docker/cli#6019</a></li> <li>Fix <code>docker exec</code> waiting for 10 seconds if a non-existing user or group was specified. <a href="https://redirect.github.com/moby/moby/pull/49868">moby/moby#49868</a></li> <li>Fix <code>docker swarm init</code> ignoring <code>cacert</code> option of <code>--external-ca</code>. <a href="https://redirect.github.com/docker/cli/pull/5995">docker/cli#5995</a></li> <li>Fix an issue where the CLI would not correctly save the configuration file (<code>~/.docker/config.json</code>) if it was a relative symbolic link. <a href="https://redirect.github.com/docker/cli/pull/5282">docker/cli#5282</a></li> <li>Fix containers with <code>--restart always</code> policy using CDI devices failing to start on daemon restart. <a href="https://redirect.github.com/moby/moby/pull/49990">moby/moby#49990</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/moby/commit/45873be4ae3f5488c9498b3d9f17deaddaf609f4"><code>45873be</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50105">#50105</a> from jsternberg/revert-build-dangling</li> <li><a href="https://github.com/moby/moby/commit/7994426e6126229d4218703bb37ca0bf380007f9"><code>7994426</code></a> Revert "containerd: images overridden by a build are kept dangling"</li> <li><a href="https://github.com/moby/moby/commit/f144264bae57b134b73afa966a1136a0fd7ed572"><code>f144264</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50090">#50090</a> from corhere/libn/overlay-netip</li> <li><a href="https://github.com/moby/moby/commit/768cfaeb623ccd55194d649c983ea0fecd5a91c8"><code>768cfae</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50050">#50050</a> from robmry/nftables_internal_dns</li> <li><a href="https://github.com/moby/moby/commit/d3289dda4bd9339a053abc33ed0912a00a56ce4d"><code>d3289dd</code></a> Add nftables NAT rules for internal DNS resolver</li> <li><a href="https://github.com/moby/moby/commit/7a0bf747f5c25da0794e42d5f9e5a40db5a7786e"><code>7a0bf74</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50038">#50038</a> from ctalledo/fix-for-50037</li> <li><a href="https://github.com/moby/moby/commit/b43afbf898c0f7fde9c500b5867256974dd24ac6"><code>b43afbf</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50098">#50098</a> from robmry/remove_docker-user_return_rule</li> <li><a href="https://github.com/moby/moby/commit/c299ba3b38e1c79e5f13ca04d9804d384bc80f57"><code>c299ba3</code></a> Update worker.Platforms() in builder-next worker.</li> <li><a href="https://github.com/moby/moby/commit/0e2cc22d36ae3013f83863c8da2e1b808f25e78e"><code>0e2cc22</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50049">#50049</a> from robmry/nftables_env_var_enable</li> <li><a href="https://github.com/moby/moby/commit/e37efd4c2d4758c53fedefb9c3ec9235d1e71490"><code>e37efd4</code></a> Merge pull request <a href="https://redirect.github.com/moby/moby/issues/50068">#50068</a> from mmorel-35/github.com/containerd/errdefs</li> <li>Additional commits viewable in <a href="https://github.com/moby/moby/compare/v28.1.1...v28.2.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
33c87a2e03 |
chore: bump github.com/mocktools/go-smtp-mock/v2 from 2.4.0 to 2.5.0 (#18170)
Bumps [github.com/mocktools/go-smtp-mock/v2](https://github.com/mocktools/go-smtp-mock) from 2.4.0 to 2.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mocktools/go-smtp-mock/releases">github.com/mocktools/go-smtp-mock/v2's releases</a>.</em></p> <blockquote> <h2>v2.5.0</h2> <h2>Changelog</h2> <ul> <li>46310364e58e3d77f47a7fe9c2e890b59ecfc01d Feature/Support custom logger implementations (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/201">#201</a>)</li> <li>379ac4b84f86882d2ee896c956b1ccdc92a15d55 Merge pull request <a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/204">#204</a> from mocktools/develop</li> <li>f26d8693f3ecc39d6118dedcfd680d0e8048a67c Technical/Update changelog (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/203">#203</a>)</li> <li>33f8c5c4dd1d35517152129b999372dcc711dd78 Technical/Update readme (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/202">#202</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mocktools/go-smtp-mock/blob/master/CHANGELOG.md">github.com/mocktools/go-smtp-mock/v2's changelog</a>.</em></p> <blockquote> <h2>[2.5.0] - 2025-05-31</h2> <h3>Added</h3> <ul> <li>Added <a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/171">ability to use a custom logger</a>, <code>WithLogger()</code> method. Thanks <a href="https://github.com/Hsn723"><code>@Hsn723</code></a> for PR</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mocktools/go-smtp-mock/commit/379ac4b84f86882d2ee896c956b1ccdc92a15d55"><code>379ac4b</code></a> Merge pull request <a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/204">#204</a> from mocktools/develop</li> <li><a href="https://github.com/mocktools/go-smtp-mock/commit/f26d8693f3ecc39d6118dedcfd680d0e8048a67c"><code>f26d869</code></a> Technical/Update changelog (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/203">#203</a>)</li> <li><a href="https://github.com/mocktools/go-smtp-mock/commit/33f8c5c4dd1d35517152129b999372dcc711dd78"><code>33f8c5c</code></a> Technical/Update readme (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/202">#202</a>)</li> <li><a href="https://github.com/mocktools/go-smtp-mock/commit/46310364e58e3d77f47a7fe9c2e890b59ecfc01d"><code>4631036</code></a> Feature/Support custom logger implementations (<a href="https://redirect.github.com/mocktools/go-smtp-mock/issues/201">#201</a>)</li> <li>See full diff in <a href="https://github.com/mocktools/go-smtp-mock/compare/v2.4.0...v2.5.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
ef17def4af |
chore: bump github.com/mark3labs/mcp-go from 0.30.0 to 0.31.0 (#18168)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.30.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.31.0</h2> <h2>What's Changed</h2> <ul> <li>[feat] separate request struct by <a href="https://github.com/OswinWu"><code>@OswinWu</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/333">mark3labs/mcp-go#333</a></li> <li>fix: logo on website is squashed by <a href="https://github.com/corani"><code>@corani</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/349">mark3labs/mcp-go#349</a></li> <li>fix: panic when streamable HTTP server sends notification by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/348">mark3labs/mcp-go#348</a></li> <li>fix: move styles.css to www/docs by <a href="https://github.com/corani"><code>@corani</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/354">mark3labs/mcp-go#354</a></li> <li>fix(server): resolve stdio server context cancellation bug by <a href="https://github.com/sonirico"><code>@sonirico</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/331">mark3labs/mcp-go#331</a></li> <li>Add option to StreamableHTTPServer to allow custom http server instance by <a href="https://github.com/yash025"><code>@yash025</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/347">mark3labs/mcp-go#347</a></li> <li>fix(Srv/stream): add ID field to <code>PingRequest</code> by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/353">mark3labs/mcp-go#353</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/OswinWu"><code>@OswinWu</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/333">mark3labs/mcp-go#333</a></li> <li><a href="https://github.com/corani"><code>@corani</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/349">mark3labs/mcp-go#349</a></li> <li><a href="https://github.com/sonirico"><code>@sonirico</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/331">mark3labs/mcp-go#331</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.30.1...v0.31.0">https://github.com/mark3labs/mcp-go/compare/v0.30.1...v0.31.0</a></p> <h2>Release v0.30.1</h2> <h2>What's Changed</h2> <ul> <li>fix(server): Implement MCP version negotiation. by <a href="https://github.com/octo"><code>@octo</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/341">mark3labs/mcp-go#341</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.30.0...v0.30.1">https://github.com/mark3labs/mcp-go/compare/v0.30.0...v0.30.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/4b7117679253667c34c385f47e5982e3b18ba90a"><code>4b71176</code></a> fix(Srv/stream): add ID field to <code>PingRequest</code> (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/353">#353</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/7f2ea88dea96ed9b804168ad91e19a19363eb03f"><code>7f2ea88</code></a> Add option to StreamableHTTPServer to allow custom http server instance (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/347">#347</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/d250b380fbc71f43a41a276f86703085f87ca963"><code>d250b38</code></a> fix(server): resolve stdio server context cancellation bug (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/331">#331</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/d5847c0fadb7ea4115562e8b92cf5e1ffe9b288b"><code>d5847c0</code></a> fix: move styles.css to www/docs (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/354">#354</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/e744c1925c709a4e7c02d31500cdded5b1d0e935"><code>e744c19</code></a> fix: panic when streamable HTTP server sends notification (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/348">#348</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/991b31c2a0a9d2f304f6dcb46554fe651c14b6af"><code>991b31c</code></a> fix: logo on website is squashed (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/349">#349</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/bfc377391e4c1d7ff3883950fd91c4a499b4f2bf"><code>bfc3773</code></a> Merge pull request <a href="https://redirect.github.com/mark3labs/mcp-go/issues/333">#333</a> from OswinWu/feat/separate-CallToolRequstParams</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/a283d2336d42040d7910d88e33cbd0937545e1c9"><code>a283d23</code></a> Merge branch 'main' into feat/separate-CallToolRequstParams</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/c7c0e13ad2675746f78b2580ad4a8de57b2bbbc6"><code>c7c0e13</code></a> fix(server): Implement MCP protocol negotiation. (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/341">#341</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/96f1b3bbd89345adb1f3668558c919b80a769c1a"><code>96f1b3b</code></a> [style] change naming style of structs</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.30.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
2c8e6b91d6 |
chore: upgrade fergusstrange/embedded-postgres after bugfix (#18167)
https://github.com/fergusstrange/embedded-postgres/pull/156 was merged and [v1.31.0](https://github.com/fergusstrange/embedded-postgres/releases/tag/v1.31.0) was cut. Signed-off-by: Danny Kopping <dannykopping@gmail.com> |
||
|
|
513a468a3a |
chore: disable logs sourced from dynamic params parsing (#18066)
Logs emitted by dynamic params did not have any additional scope or context, and are not helpful in the current state. A future change can capture these logs for display somewhere. Does this by using latest `preview` |
||
|
|
565fad5951 |
chore: bump github.com/coder/terraform-provider-coder/v2 from 2.5.0 to 2.5.2 (#18054)
Bumps [github.com/coder/terraform-provider-coder/v2](https://github.com/coder/terraform-provider-coder) from 2.5.0 to 2.5.2. Release: https://github.com/coder/terraform-provider-coder/releases/tag/v2.5.2 |
||
|
|
6c0bed0f53 |
chore: update to coder/quartz v0.2.0 (#18007)
Upgrade to coder/quartz v0.2.0 including fixing up a minor API breaking change. |
||
|
|
60fd03dca6 |
chore: bump github.com/mark3labs/mcp-go from 0.29.0 to 0.30.0 (#18041)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.29.0 to 0.30.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.30.0</h2> <h2>What's Changed</h2> <ul> <li>Feat: Impl Server-Side Streamable HTTP transport by <a href="https://github.com/leavez"><code>@leavez</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/273">mark3labs/mcp-go#273</a></li> <li>Support customize request header by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/315">mark3labs/mcp-go#315</a></li> <li>docs: add regeneration instructions by <a href="https://github.com/pmenglund"><code>@pmenglund</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/309">mark3labs/mcp-go#309</a></li> <li>docs(examples): correct use of <code>GetArguments</code> by <a href="https://github.com/jamietanna"><code>@jamietanna</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/316">mark3labs/mcp-go#316</a></li> <li>fix: avoid painc caused by writing to closed channel by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/318">mark3labs/mcp-go#318</a></li> <li>docs: use helper functions and return error as result by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/322">mark3labs/mcp-go#322</a></li> <li>Update README.md by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/323">mark3labs/mcp-go#323</a></li> <li>Feat(prompts): add DeletePrompts method to MCPServer by <a href="https://github.com/God-Jay"><code>@God-Jay</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/320">mark3labs/mcp-go#320</a></li> <li>Scaffold documentation site by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/324">mark3labs/mcp-go#324</a></li> <li>Docs by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/325">mark3labs/mcp-go#325</a></li> <li>feat: Implement OAuth in the client by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/296">mark3labs/mcp-go#296</a></li> <li>feat(server): persist client info in sessions by <a href="https://github.com/ShawkyZ"><code>@ShawkyZ</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/313">mark3labs/mcp-go#313</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/pmenglund"><code>@pmenglund</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/309">mark3labs/mcp-go#309</a></li> <li><a href="https://github.com/jamietanna"><code>@jamietanna</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/316">mark3labs/mcp-go#316</a></li> <li><a href="https://github.com/God-Jay"><code>@God-Jay</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/320">mark3labs/mcp-go#320</a></li> <li><a href="https://github.com/ShawkyZ"><code>@ShawkyZ</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/313">mark3labs/mcp-go#313</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.29.0...v0.30.0">https://github.com/mark3labs/mcp-go/compare/v0.29.0...v0.30.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/9e6ccca8025f3b63533540ac91fd06cc3dc10401"><code>9e6ccca</code></a> Formatting</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/2c8bf2bb750186c656161107b2e5e1198aa53539"><code>2c8bf2b</code></a> feat(server): persist client info in sessions (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/313">#313</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/0c3f53507f746dd02434d8d159a7f711240962e8"><code>0c3f535</code></a> feat: Implement OAuth in the client (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/296">#296</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/617c67623617e91f17263346d267cda064524102"><code>617c676</code></a> update</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/5a1d3fe0ed0e26e71ff6ecdce9b5b156dec79b88"><code>5a1d3fe</code></a> add basePath</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/76f698504f02b9013aafb48e13ec816af55c185c"><code>76f6985</code></a> add baseUrl</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/f1015695362a5842a1bd9e4a86770f2b0d59ef56"><code>f101569</code></a> Docs (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/325">#325</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/563a9c74e55f31ad060f7cf8d5cec778e1c37c8a"><code>563a9c7</code></a> Scaffold documentation site (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/324">#324</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/820b7a68b8c98447a041654fbe2e0910fad3ec6e"><code>820b7a6</code></a> Feat(prompts): add DeletePrompts method to MCPServer (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/320">#320</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/3cdeb8919f3140319b743f39be43666208008d17"><code>3cdeb89</code></a> Update README.md (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/323">#323</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.29.0...v0.30.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
d01406fa7e |
chore: bump github.com/coder/terraform-provider-coder/v2 from 2.4.2 to 2.5.0 (#18040)
Bumps [github.com/coder/terraform-provider-coder/v2](https://github.com/coder/terraform-provider-coder) from 2.4.2 to 2.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/coder/terraform-provider-coder/releases">github.com/coder/terraform-provider-coder/v2's releases</a>.</em></p> <blockquote> <h2>v2.5.0</h2> <h2>What's Changed</h2> <ul> <li>fix: allow dropdown form_type for boolean types by <a href="https://github.com/Emyrk"><code>@Emyrk</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/397">coder/terraform-provider-coder#397</a></li> <li>build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.36.1 to 2.37.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/400">coder/terraform-provider-coder#400</a></li> <li>fix: map_structure of form_type to match argument name by <a href="https://github.com/Emyrk"><code>@Emyrk</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/401">coder/terraform-provider-coder#401</a></li> <li>docs: update README note for local provider testing with correct module path by <a href="https://github.com/ssncferreira"><code>@ssncferreira</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/403">coder/terraform-provider-coder#403</a></li> <li>feat: add <code>group</code> attribute to <code>coder_app</code> resource by <a href="https://github.com/aslilac"><code>@aslilac</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/402">coder/terraform-provider-coder#402</a></li> <li>feat: add expiration_policy parameter to prebuild resource by <a href="https://github.com/ssncferreira"><code>@ssncferreira</code></a> in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/404">coder/terraform-provider-coder#404</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ssncferreira"><code>@ssncferreira</code></a> made their first contribution in <a href="https://redirect.github.com/coder/terraform-provider-coder/pull/403">coder/terraform-provider-coder#403</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/coder/terraform-provider-coder/compare/v2.4.2...v2.5.0">https://github.com/coder/terraform-provider-coder/compare/v2.4.2...v2.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/coder/terraform-provider-coder/commit/28dae7fbc263efcaaa33f5ec448004fa47109858"><code>28dae7f</code></a> feat: add expiration_policy parameter to prebuild resource (<a href="https://redirect.github.com/coder/terraform-provider-coder/issues/404">#404</a>)</li> <li><a href="https://github.com/coder/terraform-provider-coder/commit/74899537ddc92f178bb9129645649889f8e0af32"><code>7489953</code></a> feat: add <code>group</code> attribute to <code>coder_app</code> resource (<a href="https://redirect.github.com/coder/terraform-provider-coder/issues/402">#402</a>)</li> <li><a href="https://github.com/coder/terraform-provider-coder/commit/0c7fd6a3950b2195043df792087d6a33b4e14369"><code>0c7fd6a</code></a> docs: update README note for local provider testing with correct module path ...</li> <li><a href="https://github.com/coder/terraform-provider-coder/commit/a4f40659a9be991eaaa6d833781fbdb942c2e308"><code>a4f4065</code></a> fix: map_structure of form_type to match argument name (<a href="https://redirect.github.com/coder/terraform-provider-coder/issues/401">#401</a>)</li> <li><a href="https://github.com/coder/terraform-provider-coder/commit/77de38e09cca9ca228b63bb53f32ba0ae75a1f2d"><code>77de38e</code></a> build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 (<a href="https://redirect.github.com/coder/terraform-provider-coder/issues/400">#400</a>)</li> <li><a href="https://github.com/coder/terraform-provider-coder/commit/ace4462675ffbab17e098dff330ce50ece20b7fe"><code>ace4462</code></a> fix: allow dropdown form_type for boolean types (<a href="https://redirect.github.com/coder/terraform-provider-coder/issues/397">#397</a>)</li> <li>See full diff in <a href="https://github.com/coder/terraform-provider-coder/compare/v2.4.2...v2.5.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
62a5c4c3d7 |
chore: bump github.com/mark3labs/mcp-go from 0.28.0 to 0.29.0 (#18031)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.28.0 to 0.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.29.0</h2> <h2>What's Changed</h2> <ul> <li>refactor: make CallToolRequest.Arguments more flexible (Breaking Change) by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/287">mark3labs/mcp-go#287</a></li> <li>Drop unused fields from server.sseSession by <a href="https://github.com/ggoodman"><code>@ggoodman</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/303">mark3labs/mcp-go#303</a></li> <li>chore: remove unused variables and type arguments by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/302">mark3labs/mcp-go#302</a></li> <li>chore(Srv/stdio): duplicated setting of ErrorLogger by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/306">mark3labs/mcp-go#306</a></li> <li>fix: handle the situation where the channel is closed by <a href="https://github.com/button-chen"><code>@button-chen</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/304">mark3labs/mcp-go#304</a></li> </ul> <h2>Breaking Changes</h2> <p>In <code>v0.29.0</code>, MCP-Go introduces breaking changes to tool request handling. The main change is that <code>request.Params.Arguments</code> is no longer directly accessible as a map. Instead, you must use the new <code>GetArguments()</code> method to retrieve arguments as a map. For type-safe argument access, new helper methods like <code>RequireString()</code>, <code>RequireFloat()</code>, and <code>RequireBool()</code> have been added. To migrate:</p> <ol> <li>Replace direct access to <code>request.Params.Arguments["key"]</code> with <code>request.GetArguments()["key"]</code></li> <li>For better type safety, use the new helper methods: <code>request.RequireString("key")</code>, <code>request.RequireFloat("key")</code>, etc.</li> <li>For complex argument structures, use the new <code>BindArguments()</code> method with a struct, or try the new typed tool handlers with <code>mcp.NewTypedToolHandler()</code> as shown in the new <code>examples/typed_tools</code> example.</li> </ol> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ggoodman"><code>@ggoodman</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/303">mark3labs/mcp-go#303</a></li> <li><a href="https://github.com/button-chen"><code>@button-chen</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/304">mark3labs/mcp-go#304</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.28.0...v0.29.0">https://github.com/mark3labs/mcp-go/compare/v0.28.0...v0.29.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/99720bb4c4513ba1d2443b4e5045b7763e0b7142"><code>99720bb</code></a> fix: handle the situation where the channel is closed (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/304">#304</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/420d52199bb3557fe4bd0f5b5aa07c3e3721ae7b"><code>420d521</code></a> chore(Srv/stdio): duplicated setting of ErrorLogger (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/306">#306</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/eaa6f29a3b0776e17c7cdc455eeccc9be72b473a"><code>eaa6f29</code></a> chore: remove unused variables and type arguments (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/302">#302</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/65010c4c5c167e8fa6ca1e4fd242de04027567ce"><code>65010c4</code></a> chore: drop unused fields from sseSession (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/303">#303</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/28c9cc310fed16014107a4e4c970b1d440066b4a"><code>28c9cc3</code></a> refactor: make CallToolRequest.Arguments more flexible (Breaking Change) (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/287">#287</a>)</li> <li>See full diff in <a href="https://github.com/mark3labs/mcp-go/compare/v0.28.0...v0.29.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
13b41c200c | chore: update preview to include required param diags (#17978) | ||
|
|
a123900fe8 | chore: remove coder/preview dependency from codersdk (#17939) | ||
|
|
4e0fc6e17c |
chore: bump github.com/hashicorp/terraform-json from 0.24.0 to 0.25.0 (#17914)
Bumps [github.com/hashicorp/terraform-json](https://github.com/hashicorp/terraform-json) from 0.24.0 to 0.25.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hashicorp/terraform-json/releases">github.com/hashicorp/terraform-json's releases</a>.</em></p> <blockquote> <h2>v0.25.0</h2> <p>ENHANCEMENTS:</p> <ul> <li>Add identity fields to plan struct by <a href="https://github.com/dbanck"><code>@dbanck</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/158">hashicorp/terraform-json#158</a></li> <li>Update state and provider JSON with identity fields by <a href="https://github.com/dbanck"><code>@dbanck</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/155">hashicorp/terraform-json#155</a></li> </ul> <p>INTERNAL:</p> <ul> <li>build(deps): Bump workflows to latest trusted versions by <a href="https://github.com/hashicorp-tsccr"><code>@hashicorp-tsccr</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/149">hashicorp/terraform-json#149</a></li> <li>Bump github.com/zclconf/go-cty from 1.15.1 to 1.16.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/150">hashicorp/terraform-json#150</a></li> <li>Bump github.com/zclconf/go-cty from 1.16.0 to 1.16.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/151">hashicorp/terraform-json#151</a></li> <li>Bump github.com/zclconf/go-cty from 1.16.1 to 1.16.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/152">hashicorp/terraform-json#152</a></li> <li>build(deps): Bump workflows to latest trusted versions by <a href="https://github.com/hashicorp-tsccr"><code>@hashicorp-tsccr</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/153">hashicorp/terraform-json#153</a></li> <li>Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/154">hashicorp/terraform-json#154</a></li> <li>build(deps): Bump workflows to latest trusted versions by <a href="https://github.com/hashicorp-tsccr"><code>@hashicorp-tsccr</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/156">hashicorp/terraform-json#156</a></li> <li>Update owner field in catalog-info.yaml by <a href="https://github.com/imakewebthings"><code>@imakewebthings</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/157">hashicorp/terraform-json#157</a></li> <li>Update CODEOWNERS by <a href="https://github.com/austinvalle"><code>@austinvalle</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/159">hashicorp/terraform-json#159</a></li> <li>github: Use Dependabot to keep Actions updated by <a href="https://github.com/xiehan"><code>@xiehan</code></a> in <a href="https://redirect.github.com/hashicorp/terraform-json/pull/160">hashicorp/terraform-json#160</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/hashicorp/terraform-json/compare/v0.24.0...v0.25.0">https://github.com/hashicorp/terraform-json/compare/v0.24.0...v0.25.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hashicorp/terraform-json/commit/c2689b1b4ba628fb39555f9af6b521f0daa762ef"><code>c2689b1</code></a> github: Use Dependabot to keep Actions updated (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/160">#160</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/6bc20aac0e8269158c60407c1829dc2ca0d1e11e"><code>6bc20aa</code></a> Add identity fields to Plan struct (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/158">#158</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/b5939fa6c3c681207bef15a86cefb043e28ef2d9"><code>b5939fa</code></a> Update CODEOWNERS (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/159">#159</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/c370ee72fd10bc381f46575470c889af0613d234"><code>c370ee7</code></a> Update owner field in catalog-info.yaml (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/157">#157</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/0b330eb970cbf1718e4b188ea3f035268434f9c9"><code>0b330eb</code></a> build(deps): Bump workflows to latest trusted versions (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/156">#156</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/f86d5e36f4ab36a15c5917e95863c230ef3acf7f"><code>f86d5e3</code></a> Update state and provider JSON with identity fields (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/155">#155</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/4d6dac0a34e41b855e335e1f788cd43dc8ceb7cc"><code>4d6dac0</code></a> Bump github.com/google/go-cmp from 0.6.0 to 0.7.0 (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/154">#154</a>)</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/323ee613daed7529cd2edf18d6e2738e0d886aa9"><code>323ee61</code></a> Merge pull request <a href="https://redirect.github.com/hashicorp/terraform-json/issues/153">#153</a> from hashicorp/tsccr-auto-pinning/trusted/2025-02-03</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/2eb7d113bcfa08c4169b6c4252972965e194e345"><code>2eb7d11</code></a> Result of tsccr-helper -log-level=info gha update -latest .github/</li> <li><a href="https://github.com/hashicorp/terraform-json/commit/0169f43a11d4a596463fc15e7f74896244e7b5d1"><code>0169f43</code></a> Bump github.com/zclconf/go-cty from 1.16.1 to 1.16.2 (<a href="https://redirect.github.com/hashicorp/terraform-json/issues/152">#152</a>)</li> <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-json/compare/v0.24.0...v0.25.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
9367ef1663 |
chore: bump cloud.google.com/go/compute/metadata from 0.6.0 to 0.7.0 (#17913)
Bumps [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) from 0.6.0 to 0.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-cloud-go/releases">cloud.google.com/go/compute/metadata's releases</a>.</em></p> <blockquote> <h2>compute/metadata: v0.7.0</h2> <h2><a href="https://github.com/googleapis/google-cloud-go/compare/compute/metadata/v0.6.0...compute/metadata/v0.7.0">0.7.0</a> (2025-05-13)</h2> <h3>Features</h3> <ul> <li><strong>compute/metadata:</strong> Allow canceling GCE detection (<a href="https://redirect.github.com/googleapis/google-cloud-go/issues/11786">#11786</a>) (<a href="https://github.com/googleapis/google-cloud-go/commit/78100fe7e28cd30f1e10b47191ac3c9839663b64">78100fe</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md">cloud.google.com/go/compute/metadata's changelog</a>.</em></p> <blockquote> <h2>v0.7.0</h2> <ul> <li>Release of a client library for Spanner. See the <a href="https://cloudplatform.googleblog.com/2017/02/introducing-Cloud-Spanner-a-global-database-service-for-mission-critical-applications.html">blog post</a>. Note that although the Spanner service is beta, the Go client library is alpha.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-cloud-go/commit/2e6a95edb1071d750f6d7db777bf66cd2997af6c"><code>2e6a95e</code></a> pubsub: fix flaky streaming retry test</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/581b8393c374fc0c5e3e91f07bc95935afb30df2"><code>581b839</code></a> pubsub: check early if streaming iterator is already drained</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/cc13a9bec59f97f8ea60047fedd3005668851a70"><code>cc13a9b</code></a> spanner: fix time.Time comparisons for upcoming Go1.9 monotonic times</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/1ba9ec4b19f76eddfc8bf9fa5d08bab8f29a3581"><code>1ba9ec4</code></a> spanner: remove most logging from tests</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/11737a05a487e168f31ed1722b7cf7bfca136caa"><code>11737a0</code></a> spanner: skip some tests in short mode</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/7bcba8ac93ae2c1b8b040f2e53f363cf8e659173"><code>7bcba8a</code></a> datastore: DRY up loading entity code</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/df9740f981cff9eb64dd60b92d8b9f38609f5ebd"><code>df9740f</code></a> regenerate toolkit client</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/960c7688c840488daad1d2bb1fd3ee8c66b997a9"><code>960c768</code></a> trace: export tracing scopes</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/8b0ab476b11e386cdd8fc619fa0a08c37214f0c2"><code>8b0ab47</code></a> logadmin: retry on CreateMetric and UpdateMetric</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/20666962de1d3580350d6c3d4b63fc0e9720371f"><code>2066696</code></a> trace: clarify how gRPC options work</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-cloud-go/compare/v0.6.0...v0.7.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
1a434582bb |
chore: bump github.com/mark3labs/mcp-go from 0.27.0 to 0.28.0 (#17909)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.27.0 to 0.28.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.28.0</h2> <h2>What's Changed</h2> <ul> <li>feat(tools): implicitly register capabilities by <a href="https://github.com/david-hamilton-glean"><code>@david-hamilton-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/292">mark3labs/mcp-go#292</a></li> <li>fix: Gate notifications on capabilities by <a href="https://github.com/david-hamilton-glean"><code>@david-hamilton-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/290">mark3labs/mcp-go#290</a></li> <li>feat(protocol): allow additional fields in meta by <a href="https://github.com/anuraaga"><code>@anuraaga</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/293">mark3labs/mcp-go#293</a></li> <li>fix: type mismatch for request/response ID by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/291">mark3labs/mcp-go#291</a></li> <li>feat(MCPServer): support <code>logging/setlevel</code> request by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/276">mark3labs/mcp-go#276</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/anuraaga"><code>@anuraaga</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/293">mark3labs/mcp-go#293</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.27.1...v0.28.0">https://github.com/mark3labs/mcp-go/compare/v0.27.1...v0.28.0</a></p> <h2>Release v0.27.1</h2> <h2>What's Changed</h2> <ul> <li>docs: add CONTRIBUTING.md by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/275">mark3labs/mcp-go#275</a></li> <li>chore: create CODE_OF_CONDUCT.md by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/274">mark3labs/mcp-go#274</a></li> <li>chore: add issue and pull request templates by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/281">mark3labs/mcp-go#281</a></li> <li>ci: add golangci-lint by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/282">mark3labs/mcp-go#282</a></li> <li>fix: proper deprecation messaging for WithHTTPContextFunc by <a href="https://github.com/aotarola"><code>@aotarola</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/278">mark3labs/mcp-go#278</a></li> <li>chore: add a security policy by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/283">mark3labs/mcp-go#283</a></li> <li>fix(docs): Update README link by <a href="https://github.com/david-hamilton-glean"><code>@david-hamilton-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/284">mark3labs/mcp-go#284</a></li> <li>fix(session): Don't send tool changed notifications if session not initialized yet by <a href="https://github.com/david-hamilton-glean"><code>@david-hamilton-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/289">mark3labs/mcp-go#289</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/aotarola"><code>@aotarola</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/278">mark3labs/mcp-go#278</a></li> <li><a href="https://github.com/david-hamilton-glean"><code>@david-hamilton-glean</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/284">mark3labs/mcp-go#284</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.27.0...v0.27.1">https://github.com/mark3labs/mcp-go/compare/v0.27.0...v0.27.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/077f546c180dcd6ba9ad3f8cdb30643ddd153297"><code>077f546</code></a> feat(MCPServer): support <code>logging/setlevel</code> request (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/276">#276</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/09c23b5fec768432e3362bea05e69f57a3bc7c92"><code>09c23b5</code></a> fix: type mismatch for request/response ID (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/291">#291</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/91ddba5f0b9cef6fd6b89cae1009b0ab55eeb1c0"><code>91ddba5</code></a> feat(protocol): allow additional fields in meta (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/293">#293</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/eb835b903dbf9e9f6c594b2344a4e80d98cd0712"><code>eb835b9</code></a> fix: Gate notifications on capabilities (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/290">#290</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/e7d2547fdc103cc64125097694e68a158beaeccb"><code>e7d2547</code></a> feat(tools): implicitly register capabilities (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/292">#292</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/c1e70f336141a46227b221a558ae485a19f593eb"><code>c1e70f3</code></a> fix(session): Don't send tool changed notifications if session not initialize...</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/e767652eda0e93322fef218da0af4abeb4f62330"><code>e767652</code></a> fix(docs): Update README link (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/284">#284</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/239cfa4aa3fb41b7e1e5fff788fdecd40451fe52"><code>239cfa4</code></a> chore: add a security policy (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/283">#283</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/c46450cc8ef2ed9fc94836070104d2a1a3790107"><code>c46450c</code></a> fix: proper deprecation messaging for WithHTTPContextFunc (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/278">#278</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/7bb1fd21abdac57cf7b5aeaf34025165f8552885"><code>7bb1fd2</code></a> ci: add golangci-lint (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/282">#282</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.27.0...v0.28.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
ca5a78adbf | chore: update preview to remove AsString panic on unknown fields (#17897) | ||
|
|
f36fb67f57 |
chore: use static params when dynamic param metadata is missing (#17836)
Existing template versions do not have the metadata (modules + plan) in the db. So revert to using static parameter information from the original template import. This data will still be served over the websocket. |
||
|
|
4d00b76ef4 |
chore: bump github.com/justinas/nosurf from 1.1.1 to 1.2.0 (#17829)
Bumps [github.com/justinas/nosurf](https://github.com/justinas/nosurf) from 1.1.1 to 1.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/justinas/nosurf/releases">github.com/justinas/nosurf's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>This is a <em>security</em> release for nosurf. It mainly addresses <a href="https://github.com/justinas/nosurf-cve-2025-46721">CVE-2025-46721</a>.</p> <p>This release technically includes breaking changes, as nosurf starts applying same-origin checks that were not previously enforced. In most cases, users will not need to make any changes to their code. However, it is recommended to read <a href="https://github.com/justinas/nosurf/blob/master/docs/origin-checks.md">the documentation on nosurf's trusted origin checks</a> before upgrading.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/justinas/nosurf/commit/ec9bb776d8e5ba9e906b6eb70428f4e7b009feee"><code>ec9bb77</code></a> Rework origin checks (<a href="https://redirect.github.com/justinas/nosurf/issues/74">#74</a>)</li> <li><a href="https://github.com/justinas/nosurf/commit/e5c9c1fe2d4f69668ff78f872abf3b396a08673a"><code>e5c9c1f</code></a> Add GitHub Actions CI, fix lints and tests</li> <li>See full diff in <a href="https://github.com/justinas/nosurf/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/coder/coder/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
af2941bb92 |
feat: add is_prebuild_claim to distinguish post-claim provisioning (#17757)
Used in combination with https://github.com/coder/terraform-provider-coder/pull/396 This is required by both https://github.com/coder/coder/pull/17475 and https://github.com/coder/coder/pull/17571 Operators may need to conditionalize their templates to perform certain operations once a prebuilt workspace has been claimed. This value will **only** be set once a claim takes place and a subsequent `terraform apply` occurs. Any `terraform apply` runs thereafter will be indistinguishable from a normal run on a workspace. --------- Signed-off-by: Danny Kopping <dannykopping@gmail.com> |
||
|
|
799a0ba573 |
chore: bump github.com/valyala/fasthttp from 1.61.0 to 1.62.0 (#17766)
Bumps [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) from 1.61.0 to 1.62.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/valyala/fasthttp/releases">github.com/valyala/fasthttp's releases</a>.</em></p> <blockquote> <h2>v1.62.0</h2> <h2>What's Changed</h2> <ul> <li>Add support for streaming identity-encoded or unknown length response bodies by <a href="https://github.com/osxtest"><code>@osxtest</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/2000">valyala/fasthttp#2000</a></li> <li>feat: move user values to Request structure by <a href="https://github.com/mdenushev"><code>@mdenushev</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1999">valyala/fasthttp#1999</a></li> <li>chore(deps): bump golangci/golangci-lint-action from 7 to 8 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/2001">valyala/fasthttp#2001</a></li> <li>chore(deps): bump golang.org/x/crypto from 0.37.0 to 0.38.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/2002">valyala/fasthttp#2002</a></li> <li>chore(deps): bump golang.org/x/net from 0.39.0 to 0.40.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/2003">valyala/fasthttp#2003</a></li> <li>modify <code>acceptConn</code> for <code>RIO</code> by <a href="https://github.com/wamshawn"><code>@wamshawn</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/2005">valyala/fasthttp#2005</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/osxtest"><code>@osxtest</code></a> made their first contribution in <a href="https://redirect.github.com/valyala/fasthttp/pull/2000">valyala/fasthttp#2000</a></li> <li><a href="https://github.com/wamshawn"><code>@wamshawn</code></a> made their first contribution in <a href="https://redirect.github.com/valyala/fasthttp/pull/2005">valyala/fasthttp#2005</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/valyala/fasthttp/compare/v1.61.0...v1.62.0">https://github.com/valyala/fasthttp/compare/v1.61.0...v1.62.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/valyala/fasthttp/commit/9e457ebd982fe77cce75b59667ff20d4c3af30b2"><code>9e457eb</code></a> mod acceptConn (<a href="https://redirect.github.com/valyala/fasthttp/issues/2005">#2005</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/69a68df4eb257570ffed33b85a8e6d523b07ed70"><code>69a68df</code></a> chore(deps): bump golang.org/x/net from 0.39.0 to 0.40.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/2003">#2003</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/83fbe80f9379db8388b4ee24a2eaab4674998b3f"><code>83fbe80</code></a> chore(deps): bump golang.org/x/crypto from 0.37.0 to 0.38.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/2002">#2002</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/51817a4eb67dabb67e0870efccb20caafe0a936d"><code>51817a4</code></a> chore(deps): bump golangci/golangci-lint-action from 7 to 8 (<a href="https://redirect.github.com/valyala/fasthttp/issues/2001">#2001</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/41a1449627b8ba0cbf30030ea41fc1ae4ca514f2"><code>41a1449</code></a> feat: move user values to Request structure (<a href="https://redirect.github.com/valyala/fasthttp/issues/1999">#1999</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/1345f42ede3f31b6fe6b42342256f338261bd9d5"><code>1345f42</code></a> Add support for streaming identity-encoded or unknown length response bodies ...</li> <li>See full diff in <a href="https://github.com/valyala/fasthttp/compare/v1.61.0...v1.62.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
345a239838 |
chore: bump github.com/open-policy-agent/opa from 1.3.0 to 1.4.2 (#17674)
Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 1.3.0 to 1.4.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v1.4.2</h2> <p>This is a bug fix release addressing the missing <code>capabilities/v1.4.1.json</code> in the v1.4.1 release.</p> <h2>v1.4.1</h2> <p>⚠️ Please skip this release and go straight to v1.4.2 ⚠️ This release is broken due to a mistake during the release process and the artifacts are missing a crucial capabilities file. Sorry for any inconvenience.</p> <hr /> <p>This is a security fix release for the fixes published in Go <a href="https://groups.google.com/g/golang-announce/c/4t3lzH3I0eI">1.24.1</a> and <a href="https://groups.google.com/g/golang-announce/c/Y2uBTVKjBQk">1.24.2</a></p> <ul> <li>build: bump go to 1.24.2 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7544">#7544</a>) (authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a>) Addressing <code>CVE-2025-22870</code> and <code>CVE-2025-22871</code> vulnerabilities in the Go runtime.</li> </ul> <h2>v1.4.0</h2> <p>This release contains a security fix addressing CVE-2025-46569. It also includes a mix of new features, bugfixes, and dependency updates.</p> <h4>Security Fix: CVE-2025-46569 - OPA server Data API HTTP path injection of Rego (<a href="https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7">GHSA-6m8w-jc87-6cr7</a>)</h4> <p>A vulnerability in the OPA server's <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#data-api">Data API</a> allows an attacker to craft the HTTP path in a way that injects Rego code into the query that is evaluated.<br /> The evaluation result cannot be made to return any other data than what is generated by the requested path, but this path can be misdirected, and the injected Rego code can be crafted to make the query succeed or fail; opening up for oracle attacks or, given the right circumstances, erroneous policy decision results. Furthermore, the injected code can be crafted to be computationally expensive, resulting in a Denial Of Service (DoS) attack.</p> <p><strong>Users are only impacted if all of the following apply:</strong></p> <ul> <li>OPA is deployed as a standalone server (rather than being used as a Go library)</li> <li>The OPA server is exposed outside of the local host in an untrusted environment.</li> <li>The configured <a href="https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization">authorization policy</a> does not do exact matching of the input.path attribute when deciding if the request should be allowed.</li> </ul> <p><strong>or, if all of the following apply:</strong></p> <ul> <li>OPA is deployed as a standalone server.</li> <li>The service connecting to OPA allows 3rd parties to insert unsanitised text into the path of the HTTP request to OPA’s Data API.</li> </ul> <p>Note: With <strong>no</strong> <a href="https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization">Authorization Policy</a> configured for restricting API access (the default configuration), the RESTful <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#data-api">Data API</a> provides access for managing Rego policies; and the RESTful <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#query-api">Query API</a> facilitates advanced queries. Full access to these APIs provides both simpler, and broader access than what the security issue describes here can facilitate. As such, OPA servers exposed to a network are <strong>not</strong> considered affected by the attack described here if they are knowingly not restricting access through an Authorization Policy.</p> <p>This issue affects all versions of OPA prior to 1.4.0.</p> <p>See the <a href="https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7">Security Advisory</a> for more details.</p> <p>Reported by <a href="https://github.com/GamrayW"><code>@GamrayW</code></a>, <a href="https://github.com/HyouKash"><code>@HyouKash</code></a>, <a href="https://github.com/AdrienIT"><code>@AdrienIT</code></a>, authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a></p> <h3>Runtime, Tooling, SDK</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>1.4.2</h2> <p>This is a bug fix release addressing the missing <code>capabilities/v1.4.1.json</code> in the v1.4.1 release.</p> <h2>1.4.1</h2> <p>This is a security fix release for the fixes published in Go <a href="https://groups.google.com/g/golang-announce/c/4t3lzH3I0eI">1.24.1</a> and <a href="https://groups.google.com/g/golang-announce/c/Y2uBTVKjBQk">1.24.2</a></p> <ul> <li>build: bump go to 1.24.2 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7544">#7544</a>) (authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a>) Addressing <code>CVE-2025-22870</code> and <code>CVE-2025-22871</code> vulnerabilities in the Go runtime.</li> </ul> <h2>1.4.0</h2> <p>This release contains a security fix addressing CVE-2025-46569. It also includes a mix of new features, bugfixes, and dependency updates.</p> <h4>Security Fix: CVE-2025-46569 - OPA server Data API HTTP path injection of Rego (<a href="https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7">GHSA-6m8w-jc87-6cr7</a>)</h4> <p>A vulnerability in the OPA server's <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#data-api">Data API</a> allows an attacker to craft the HTTP path in a way that injects Rego code into the query that is evaluated.<br /> The evaluation result cannot be made to return any other data than what is generated by the requested path, but this path can be misdirected, and the injected Rego code can be crafted to make the query succeed or fail; opening up for oracle attacks or, given the right circumstances, erroneous policy decision results. Furthermore, the injected code can be crafted to be computationally expensive, resulting in a Denial Of Service (DoS) attack.</p> <p><strong>Users are only impacted if all of the following apply:</strong></p> <ul> <li>OPA is deployed as a standalone server (rather than being used as a Go library)</li> <li>The OPA server is exposed outside of the local host in an untrusted environment.</li> <li>The configured <a href="https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization">authorization policy</a> does not do exact matching of the input.path attribute when deciding if the request should be allowed.</li> </ul> <p><strong>or, if all of the following apply:</strong></p> <ul> <li>OPA is deployed as a standalone server.</li> <li>The service connecting to OPA allows 3rd parties to insert unsanitised text into the path of the HTTP request to OPA’s Data API.</li> </ul> <p>Note: With <strong>no</strong> <a href="https://www.openpolicyagent.org/docs/latest/security/#authentication-and-authorization">Authorization Policy</a> configured for restricting API access (the default configuration), the RESTful <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#data-api">Data API</a> provides access for managing Rego policies; and the RESTful <a href="https://www.openpolicyagent.org/docs/latest/rest-api/#query-api">Query API</a> facilitates advanced queries. Full access to these APIs provides both simpler, and broader access than what the security issue describes here can facilitate. As such, OPA servers exposed to a network are <strong>not</strong> considered affected by the attack described here if they are knowingly not restricting access through an Authorization Policy.</p> <p>This issue affects all versions of OPA prior to 1.4.0.</p> <p>See the <a href="https://github.com/open-policy-agent/opa/security/advisories/GHSA-6m8w-jc87-6cr7">Security Advisory</a> for more details.</p> <p>Reported by <a href="https://github.com/GamrayW"><code>@GamrayW</code></a>, <a href="https://github.com/HyouKash"><code>@HyouKash</code></a>, <a href="https://github.com/AdrienIT"><code>@AdrienIT</code></a>, authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a></p> <h3>Runtime, Tooling, SDK</h3> <ul> <li>ast: Adding <code>rego_v1</code> feature to <code>--v0-compatible</code> capabilities (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7474">#7474</a>) authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a></li> <li>executable: Add version and icon to OPA windows executable (<a href="https://redirect.github.com/open-policy-agent/opa/issues/3171">#3171</a>) authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a> reported by <a href="https://github.com/christophwille"><code>@christophwille</code></a></li> <li>format: Don't panic on format due to unexpected comments (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6330">#6330</a>) authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a> reported by <a href="https://github.com/sirpi"><code>@sirpi</code></a></li> <li>format: Avoid modifying strings when formatting (<a href="https://redirect.github.com/open-policy-agent/opa/issues/6220">#6220</a>) authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a> reported by <a href="https://github.com/zregvart"><code>@zregvart</code></a></li> <li>plugins/status: FIFO buffer channel for status events to prevent slow status API blocking (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7522">#7522</a>) authored by <a href="https://github.com/sspaink"><code>@sspaink</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/open-policy-agent/opa/commit/5e4582bb951f70641fe9ee85cc46245d079e5037"><code>5e4582b</code></a> Prepare v1.4.2 release (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7547">#7547</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/3b64aff304139d6a84518813c54799d6d165f48d"><code>3b64aff</code></a> Patch release v1.4.1 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7545">#7545</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/8b0720247e65b97fe7715ca15682fee4040df4d1"><code>8b07202</code></a> Prepare v1.4.0 release (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7541">#7541</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/ad2063247a14711882f18c387a511fc8094aa79c"><code>ad20632</code></a> Merge commit from fork</li> <li><a href="https://github.com/open-policy-agent/opa/commit/24ff9cfb3ad0a6a5629f0b21458982d325ee03c5"><code>24ff9cf</code></a> fix: return the raw strings when formatting (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7525">#7525</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/254f3bf0b9ee5faf1972ba31bbbe749bba19a000"><code>254f3bf</code></a> fix(status plugin): make sure the latest status is read before manually trigg...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/9b5f6010c0503cd91eed8a56268a02d4895a42b4"><code>9b5f601</code></a> docs: fix post merge badge (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7532">#7532</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/e4902774778da576da2a8f4b2fd50df6cc3da8b5"><code>e490277</code></a> docs: Point path versioned requests to new sites (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7531">#7531</a>)</li> <li><a href="https://github.com/open-policy-agent/opa/commit/d65888c14f4cb2d67929590604415e35ba75f58c"><code>d65888c</code></a> plugins/status: FIFO buffer channel for status events to prevent slow status ...</li> <li><a href="https://github.com/open-policy-agent/opa/commit/eb77d10971ec772c3ac4968d4abe3666037d0338"><code>eb77d10</code></a> docs: update edge links to use /docs/edge/ path (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7529">#7529</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v1.3.0...v1.4.2">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
0832afbaf4 |
chore: bump gopkg.in/DataDog/dd-trace-go.v1 from 1.72.1 to 1.73.0 (#17763)
Bumps gopkg.in/DataDog/dd-trace-go.v1 from 1.72.1 to 1.73.0. <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | gopkg.in/DataDog/dd-trace-go.v1 | [>= 1.58.a, < 1.59] | </details> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
4f1df34981 |
chore: bump github.com/mark3labs/mcp-go from 0.25.0 to 0.27.0 (#17762)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.25.0 to 0.27.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.27.0</h2> <h2>What's Changed</h2> <ul> <li>Support audio content type in tools/call and prompts/get by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/250">mark3labs/mcp-go#250</a></li> <li>refactor(server): extract common HTTP transport configuration options by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/253">mark3labs/mcp-go#253</a></li> <li>ci: add check to verify generated code is up-to-date by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/258">mark3labs/mcp-go#258</a></li> <li>fix(MCPServer): correct notification method in func <code>RemoveResource()</code> by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/262">mark3labs/mcp-go#262</a></li> <li>Create sample client by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/265">mark3labs/mcp-go#265</a></li> <li>Fix the issue where the 'Shutdown' method fails to properly exit. by <a href="https://github.com/uppercaveman"><code>@uppercaveman</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/255">mark3labs/mcp-go#255</a></li> <li>test(server): reliably detect Start/Shutdown deadlock in SSEServer by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/264">mark3labs/mcp-go#264</a></li> <li>docs: make code examples in the README correct as per spec by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/268">mark3labs/mcp-go#268</a></li> <li>feat(MCPServer): avoid unnecessary notifications when Resource/Tool not exists by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/266">mark3labs/mcp-go#266</a></li> <li>chore: replace <code>interface{}</code> with <code>any</code> by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/261">mark3labs/mcp-go#261</a></li> <li>fix(Srv/stdio): risk of goroutine leaks and concurrent reads in <code>readNextLine()</code> by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/257">mark3labs/mcp-go#257</a></li> <li>docs: Remove reference to <code>mcp.RoleSystem</code> by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/269">mark3labs/mcp-go#269</a></li> <li>fix: fix some obvious simplifications by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/267">mark3labs/mcp-go#267</a></li> <li>Optimization of listByPagination Performance by <a href="https://github.com/qiangmzsx"><code>@qiangmzsx</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/246">mark3labs/mcp-go#246</a></li> <li>fix: properly marshal <code>ToolAnnotations</code> with <code>false</code> values by <a href="https://github.com/pottekkat"><code>@pottekkat</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/260">mark3labs/mcp-go#260</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/uppercaveman"><code>@uppercaveman</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/255">mark3labs/mcp-go#255</a></li> <li><a href="https://github.com/pottekkat"><code>@pottekkat</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/268">mark3labs/mcp-go#268</a></li> <li><a href="https://github.com/qiangmzsx"><code>@qiangmzsx</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/246">mark3labs/mcp-go#246</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.26.0...v0.27.0">https://github.com/mark3labs/mcp-go/compare/v0.26.0...v0.27.0</a></p> <h2>Release v0.26.0</h2> <h2>What's Changed</h2> <ul> <li>feat(sse): Add <code>SessionWithTools</code> support to SSEServer by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/232">mark3labs/mcp-go#232</a></li> <li>Fix bug with MarshalJSON for NotificationParams by <a href="https://github.com/Gelembjuk"><code>@Gelembjuk</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/233">mark3labs/mcp-go#233</a></li> <li>fix: write back error message if the response marshal failed by <a href="https://github.com/ppzqh"><code>@ppzqh</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/235">mark3labs/mcp-go#235</a></li> <li>fix(server/sse): potential goroutine leak in Heartbeat sender by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/236">mark3labs/mcp-go#236</a></li> <li>Fix stdio test compilation issues in CI by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/240">mark3labs/mcp-go#240</a></li> <li>refactor(server/sse): rename WithBasePath to WithStaticBasePath by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/238">mark3labs/mcp-go#238</a></li> <li>fix(MCPServer): Session tool handler not used due to variable shadowing by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/242">mark3labs/mcp-go#242</a></li> <li>test: build mockstdio_server with isolated cache to prevent flaky CI by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/241">mark3labs/mcp-go#241</a></li> <li>fix: Use detached context for SSE message handling by <a href="https://github.com/yash025"><code>@yash025</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/244">mark3labs/mcp-go#244</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/Gelembjuk"><code>@Gelembjuk</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/233">mark3labs/mcp-go#233</a></li> <li><a href="https://github.com/ppzqh"><code>@ppzqh</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/235">mark3labs/mcp-go#235</a></li> <li><a href="https://github.com/yash025"><code>@yash025</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/244">mark3labs/mcp-go#244</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.25.0...v0.26.0">https://github.com/mark3labs/mcp-go/compare/v0.25.0...v0.26.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/e5121b37d7214e23c572e1b9a49ca5b8a4d648e4"><code>e5121b3</code></a> Release v0.27.0</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/eeb7070c3dc7a3c1df64fe309a3b8433ea78096e"><code>eeb7070</code></a> fix: properly marshal <code>ToolAnnotations</code> with <code>false</code> values (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/260">#260</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/e1f1b4794ea047757a1272659b9c6a6d68826800"><code>e1f1b47</code></a> optimize listByPagination (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/246">#246</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/46bfb6fbb69067de5513049479408732cbea5f33"><code>46bfb6f</code></a> fix: fix some obvious simplifications (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/267">#267</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/716eabedfef62d99a04b749472b8cef27b404fa3"><code>716eabe</code></a> docs: Remove reference to <code>mcp.RoleSystem</code> (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/269">#269</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/3dfa33164fe642a2adc8908c9d4794e8fb2cf806"><code>3dfa331</code></a> fix(server/stdio): risk of concurrent reads and data loss in readNextLine() (...</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/f8badd69d08f609cbbd7a218c3b2b8de05987277"><code>f8badd6</code></a> chore: replace <code>interface{}</code> with <code>any</code> (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/261">#261</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/3442d321ad10a9edce5f2f76580e014a67de2229"><code>3442d32</code></a> feat(MCPServer): avoid unnecessary notifications when Resource/Tool not exist...</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/61b9784ea84d637e29a1bb2b226b953c4bdce4fe"><code>61b9784</code></a> docs: make code examples in the README correct as per spec (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/268">#268</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/1c99eaf3bfa39f832e73ec26402b4c5fa62d0d16"><code>1c99eaf</code></a> test(server): reliably detect Start/Shutdown deadlock in SSEServer (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/264">#264</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.25.0...v0.27.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
3ee95f14ce |
chore: upgrade terraform-provider-coder & preview libs (#17738)
The changes in `coder/preview` necessitated the changes in `codersdk/richparameters.go` & `provisioner/terraform/resources.go`. --------- Signed-off-by: Danny Kopping <dannykopping@gmail.com> Co-authored-by: Steven Masley <stevenmasley@gmail.com> |
||
|
|
2696926003 |
fix: fixed flaking VPN tunnel tests & bump coder/quartz to 0.1.3 (#17737)
Closes: https://github.com/coder/internal/issues/624 |
||
|
|
c66e80e862 |
fix: extract checkbox label from dynamic parameter styling prop (#17651)
resolves #17474 A label will only be shown next to the checkbox If there is a value for `label` in the styling prop for the dynamic parameter <img width="457" alt="Screenshot 2025-05-01 at 21 35 32" src="https://github.com/user-attachments/assets/3b3a8160-65a2-4411-b763-0d07a4eeb699" /> |
||
|
|
b8137e7ca4 |
chore: bump github.com/openai/openai-go from 0.1.0-beta.6 to 0.1.0-beta.10 (#17677)
Bumps [github.com/openai/openai-go](https://github.com/openai/openai-go) from 0.1.0-beta.6 to 0.1.0-beta.10. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/openai/openai-go/releases">github.com/openai/openai-go's releases</a>.</em></p> <blockquote> <h2>v0.1.0-beta.10</h2> <h2>0.1.0-beta.10 (2025-04-14)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.9...v0.1.0-beta.10">v0.1.0-beta.9...v0.1.0-beta.10</a></p> <h3>Chores</h3> <ul> <li><strong>internal:</strong> expand CI branch coverage (<a href="https://redirect.github.com/openai/openai-go/issues/369">#369</a>) (<a href="https://github.com/openai/openai-go/commit/258dda8007a69b9c2720b225ee6d27474d676a93">258dda8</a>)</li> <li><strong>internal:</strong> reduce CI branch coverage (<a href="https://github.com/openai/openai-go/commit/a2f7c03eb984d98f29f908df103ea1743f2e3d9a">a2f7c03</a>)</li> </ul> <h2>v0.1.0-beta.9</h2> <h2>0.1.0-beta.9 (2025-04-09)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-%5Bgo/compare/v0.1.0-beta.8...v0.1.0-beta.9%5D(https://www.golinks.io/compare/v0.1.0-beta.8...v0.1.0-beta.9?trackSource=github)">v0.1.0-beta.8...v0.1.0-beta.9</a></p> <h3>Chores</h3> <ul> <li>workaround build errors (<a href="https://redirect.github.com/openai/openai-%5Bgo/issues/366%5D(https://www.golinks.io/issues/366?trackSource=github)">#366</a>) (<a href="https://github.com/openai/openai-%5Bgo/commit/adeb003cab8efbfbf4424e03e96a0f5e728551cb%5D(https://www.golinks.io/commit/adeb003cab8efbfbf4424e03e96a0f5e728551cb?trackSource=github)">adeb003</a>)</li> </ul> <h2>v0.1.0-beta.8</h2> <h2>0.1.0-beta.8 (2025-04-09)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.7...v0.1.0-beta.8">v0.1.0-beta.7...v0.1.0-beta.8</a></p> <h3>Features</h3> <ul> <li><strong>api:</strong> Add evalapi to sdk (<a href="https://redirect.github.com/openai/openai-go/issues/360">#360</a>) (<a href="https://github.com/openai/openai-go/commit/88977d1868dbbe0060c56ba5dac8eb19773e4938">88977d1</a>)</li> <li><strong>api:</strong> manual updates (<a href="https://redirect.github.com/openai/openai-go/issues/363">#363</a>) (<a href="https://github.com/openai/openai-go/commit/5d068e0053172db7f5b75038aa215eee074eeeed">5d068e0</a>)</li> <li><strong>client:</strong> add escape hatch to omit required param fields (<a href="https://redirect.github.com/openai/openai-go/issues/354">#354</a>) (<a href="https://github.com/openai/openai-go/commit/9690d6b49f8b00329afc038ec15116750853e620">9690d6b</a>)</li> <li><strong>client:</strong> support custom http clients (<a href="https://redirect.github.com/openai/openai-go/issues/357">#357</a>) (<a href="https://github.com/openai/openai-go/commit/b5a624f658cad774094427b36b05e446b41e8c52">b5a624f</a>)</li> </ul> <h3>Chores</h3> <ul> <li><strong>docs:</strong> readme improvements (<a href="https://redirect.github.com/openai/openai-go/issues/356">#356</a>) (<a href="https://github.com/openai/openai-go/commit/b2f8539d6316e3443aa733be2c95926696119c13">b2f8539</a>)</li> <li><strong>internal:</strong> fix examples (<a href="https://redirect.github.com/openai/openai-go/issues/361">#361</a>) (<a href="https://github.com/openai/openai-go/commit/de398b453d398299eb80c15f8fdb2bcbef5eeed6">de398b4</a>)</li> <li><strong>internal:</strong> skip broken test (<a href="https://redirect.github.com/openai/openai-go/issues/362">#362</a>) (<a href="https://github.com/openai/openai-go/commit/cccead9ba916142ac8fbe6e8926d706511e32ae3">cccead9</a>)</li> <li><strong>tests:</strong> improve enum examples (<a href="https://redirect.github.com/openai/openai-go/issues/359">#359</a>) (<a href="https://github.com/openai/openai-go/commit/e0b9739920114d6e991d3947b67fdf62cfaa09c7">e0b9739</a>)</li> </ul> <h2>v0.1.0-beta.7</h2> <h2>0.1.0-beta.7 (2025-04-07)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.6...v0.1.0-beta.7">v0.1.0-beta.6...v0.1.0-beta.7</a></p> <h3>Features</h3> <ul> <li><strong>client:</strong> make response union's AsAny method type safe (<a href="https://redirect.github.com/openai/openai-go/issues/352">#352</a>) (<a href="https://github.com/openai/openai-go/commit/1252f56c917e57d6d2b031501b2ff5f89f87cf87">1252f56</a>)</li> </ul> <h3>Chores</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/openai/openai-go/blob/main/CHANGELOG.md">github.com/openai/openai-go's changelog</a>.</em></p> <blockquote> <h2>0.1.0-beta.10 (2025-04-14)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.9...v0.1.0-beta.10">v0.1.0-beta.9...v0.1.0-beta.10</a></p> <h3>Chores</h3> <ul> <li><strong>internal:</strong> expand CI branch coverage (<a href="https://redirect.github.com/openai/openai-go/issues/369">#369</a>) (<a href="https://github.com/openai/openai-go/commit/258dda8007a69b9c2720b225ee6d27474d676a93">258dda8</a>)</li> <li><strong>internal:</strong> reduce CI branch coverage (<a href="https://github.com/openai/openai-go/commit/a2f7c03eb984d98f29f908df103ea1743f2e3d9a">a2f7c03</a>)</li> </ul> <h2>0.1.0-beta.9 (2025-04-09)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.8...v0.1.0-beta.9">v0.1.0-beta.8...v0.1.0-beta.9</a></p> <h3>Chores</h3> <ul> <li>workaround build errors (<a href="https://redirect.github.com/openai/openai-go/issues/366">#366</a>) (<a href="https://github.com/openai/openai-go/commit/adeb003cab8efbfbf4424e03e96a0f5e728551cb">adeb003</a>)</li> </ul> <h2>0.1.0-beta.8 (2025-04-09)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.7...v0.1.0-beta.8">v0.1.0-beta.7...v0.1.0-beta.8</a></p> <h3>Features</h3> <ul> <li><strong>api:</strong> Add evalapi to sdk (<a href="https://redirect.github.com/openai/openai-go/issues/360">#360</a>) (<a href="https://github.com/openai/openai-go/commit/88977d1868dbbe0060c56ba5dac8eb19773e4938">88977d1</a>)</li> <li><strong>api:</strong> manual updates (<a href="https://redirect.github.com/openai/openai-go/issues/363">#363</a>) (<a href="https://github.com/openai/openai-go/commit/5d068e0053172db7f5b75038aa215eee074eeeed">5d068e0</a>)</li> <li><strong>client:</strong> add escape hatch to omit required param fields (<a href="https://redirect.github.com/openai/openai-go/issues/354">#354</a>) (<a href="https://github.com/openai/openai-go/commit/9690d6b49f8b00329afc038ec15116750853e620">9690d6b</a>)</li> <li><strong>client:</strong> support custom http clients (<a href="https://redirect.github.com/openai/openai-go/issues/357">#357</a>) (<a href="https://github.com/openai/openai-go/commit/b5a624f658cad774094427b36b05e446b41e8c52">b5a624f</a>)</li> </ul> <h3>Chores</h3> <ul> <li><strong>docs:</strong> readme improvements (<a href="https://redirect.github.com/openai/openai-go/issues/356">#356</a>) (<a href="https://github.com/openai/openai-go/commit/b2f8539d6316e3443aa733be2c95926696119c13">b2f8539</a>)</li> <li><strong>internal:</strong> fix examples (<a href="https://redirect.github.com/openai/openai-go/issues/361">#361</a>) (<a href="https://github.com/openai/openai-go/commit/de398b453d398299eb80c15f8fdb2bcbef5eeed6">de398b4</a>)</li> <li><strong>internal:</strong> skip broken test (<a href="https://redirect.github.com/openai/openai-go/issues/362">#362</a>) (<a href="https://github.com/openai/openai-go/commit/cccead9ba916142ac8fbe6e8926d706511e32ae3">cccead9</a>)</li> <li><strong>tests:</strong> improve enum examples (<a href="https://redirect.github.com/openai/openai-go/issues/359">#359</a>) (<a href="https://github.com/openai/openai-go/commit/e0b9739920114d6e991d3947b67fdf62cfaa09c7">e0b9739</a>)</li> </ul> <h2>0.1.0-beta.7 (2025-04-07)</h2> <p>Full Changelog: <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.6...v0.1.0-beta.7">v0.1.0-beta.6...v0.1.0-beta.7</a></p> <h3>Features</h3> <ul> <li><strong>client:</strong> make response union's AsAny method type safe (<a href="https://redirect.github.com/openai/openai-go/issues/352">#352</a>) (<a href="https://github.com/openai/openai-go/commit/1252f56c917e57d6d2b031501b2ff5f89f87cf87">1252f56</a>)</li> </ul> <h3>Chores</h3> <ul> <li><strong>docs:</strong> doc improvements (<a href="https://redirect.github.com/openai/openai-go/issues/350">#350</a>) (<a href="https://github.com/openai/openai-go/commit/80debc824eaacb4b07c8f3e8b1d0488d860d5be5">80debc8</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/openai/openai-go/commit/c0414f15a9f4065adee2ed96a4dcd4d4cb9708aa"><code>c0414f1</code></a> release: 0.1.0-beta.10</li> <li><a href="https://github.com/openai/openai-go/commit/192ec22bd758a045b2fe7304252c508b7a075e6d"><code>192ec22</code></a> chore(internal): reduce CI branch coverage</li> <li><a href="https://github.com/openai/openai-go/commit/17cbc6d2c8ffbba0c9d19206b1f402010790ba2e"><code>17cbc6d</code></a> chore(internal): expand CI branch coverage (<a href="https://redirect.github.com/openai/openai-go/issues/369">#369</a>)</li> <li><a href="https://github.com/openai/openai-go/commit/e1d5123160f195fbb74e00548e8d7896db9caafc"><code>e1d5123</code></a> release: 0.1.0-beta.9</li> <li><a href="https://github.com/openai/openai-go/commit/4e42dd39d9ad6d9deb8c75d9131fb636edf93ae9"><code>4e42dd3</code></a> chore: workaround build errors (<a href="https://redirect.github.com/openai/openai-go/issues/366">#366</a>)</li> <li><a href="https://github.com/openai/openai-go/commit/0ae103de4e01e5239788a56fca3d7621b83460ab"><code>0ae103d</code></a> release: 0.1.0-beta.8</li> <li><a href="https://github.com/openai/openai-go/commit/68c32a0aec380926b962ed74d4002a883d012dcd"><code>68c32a0</code></a> feat(api): manual updates (<a href="https://redirect.github.com/openai/openai-go/issues/363">#363</a>)</li> <li><a href="https://github.com/openai/openai-go/commit/8599318b87e59ea0550da8c8451dd12c6716776f"><code>8599318</code></a> chore(internal): skip broken test (<a href="https://redirect.github.com/openai/openai-go/issues/362">#362</a>)</li> <li><a href="https://github.com/openai/openai-go/commit/5e86f0f2734a9898584a250b5052403172f331ba"><code>5e86f0f</code></a> chore(internal): fix examples (<a href="https://redirect.github.com/openai/openai-go/issues/361">#361</a>)</li> <li><a href="https://github.com/openai/openai-go/commit/4a496a7674de63d9fb838a5095a2958a7cbaa1f7"><code>4a496a7</code></a> feat(api): Add evalapi to sdk (<a href="https://redirect.github.com/openai/openai-go/issues/360">#360</a>)</li> <li>Additional commits viewable in <a href="https://github.com/openai/openai-go/compare/v0.1.0-beta.6...v0.1.0-beta.10">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
1f569f71f8 |
chore: bump google.golang.org/api from 0.230.0 to 0.231.0 (#17671)
Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.230.0 to 0.231.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.231.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.230.0...v0.231.0">0.231.0</a> (2025-04-29)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3122">#3122</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/47cbba61ec8d62ebdfd1affe3a9244b20184c781">47cbba6</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3124">#3124</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/677b602b6f3f072ebfac6c5791cc06d15720b136">677b602</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3125">#3125</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/8ccf1f08977c7843d093bba21d391b082e206a75">8ccf1f0</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3126">#3126</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/405935174a0a7c9734c8e6b0dce487c481a7927e">4059351</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3127">#3127</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ae18b2206b6182d47d69227b638dfc42d975b889">ae18b22</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3129">#3129</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c33e0d153c99c931e5b953e3ccfa40fe8ac20c02">c33e0d1</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.230.0...v0.231.0">0.231.0</a> (2025-04-29)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3122">#3122</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/47cbba61ec8d62ebdfd1affe3a9244b20184c781">47cbba6</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3124">#3124</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/677b602b6f3f072ebfac6c5791cc06d15720b136">677b602</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3125">#3125</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/8ccf1f08977c7843d093bba21d391b082e206a75">8ccf1f0</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3126">#3126</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/405935174a0a7c9734c8e6b0dce487c481a7927e">4059351</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3127">#3127</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ae18b2206b6182d47d69227b638dfc42d975b889">ae18b22</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3129">#3129</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c33e0d153c99c931e5b953e3ccfa40fe8ac20c02">c33e0d1</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/70d3b4f38ec8df290ddcaedb749eaf29f798958c"><code>70d3b4f</code></a> chore(main): release 0.231.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3123">#3123</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c33e0d153c99c931e5b953e3ccfa40fe8ac20c02"><code>c33e0d1</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3129">#3129</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/673da13c2fc8c8758ae8c1c1fc2d02fdb9556bc5"><code>673da13</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3128">#3128</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/ae18b2206b6182d47d69227b638dfc42d975b889"><code>ae18b22</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3127">#3127</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/405935174a0a7c9734c8e6b0dce487c481a7927e"><code>4059351</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3126">#3126</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/8ccf1f08977c7843d093bba21d391b082e206a75"><code>8ccf1f0</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3125">#3125</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/677b602b6f3f072ebfac6c5791cc06d15720b136"><code>677b602</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3124">#3124</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/47cbba61ec8d62ebdfd1affe3a9244b20184c781"><code>47cbba6</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3122">#3122</a>)</li> <li>See full diff in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.230.0...v0.231.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
dc66dafc7c |
chore: bump github.com/mark3labs/mcp-go from 0.23.1 to 0.25.0 (#17672)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.23.1 to 0.25.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.25.0</h2> <h2>What's Changed</h2> <ul> <li>update doc comments to match Go conventions by <a href="https://github.com/yinebebt"><code>@yinebebt</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/226">mark3labs/mcp-go#226</a></li> <li>fix: Add Accept Header in StreamableHTTP Client by <a href="https://github.com/hhxiao"><code>@hhxiao</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/230">mark3labs/mcp-go#230</a></li> <li>fix(SSE): only initialize <code>http.Server</code> when not set by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/229">mark3labs/mcp-go#229</a></li> <li>fix: Prevent panic in parsing functions for null results by <a href="https://github.com/cocovs"><code>@cocovs</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/218">mark3labs/mcp-go#218</a></li> <li>[SSEClient] Add ability to override the http.Client by <a href="https://github.com/sks"><code>@sks</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/109">mark3labs/mcp-go#109</a></li> <li>feat(SSEServer): add WithAppendQueryToMessageEndpoint() by <a href="https://github.com/liut"><code>@liut</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/136">mark3labs/mcp-go#136</a></li> <li>feat: quick return tool-call request, send response via SSE in goroutine by <a href="https://github.com/CeerDecy"><code>@CeerDecy</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/163">mark3labs/mcp-go#163</a></li> <li>feat(server/sse): Add support for dynamic base paths by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/214">mark3labs/mcp-go#214</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/yinebebt"><code>@yinebebt</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/226">mark3labs/mcp-go#226</a></li> <li><a href="https://github.com/hhxiao"><code>@hhxiao</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/230">mark3labs/mcp-go#230</a></li> <li><a href="https://github.com/cocovs"><code>@cocovs</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/218">mark3labs/mcp-go#218</a></li> <li><a href="https://github.com/sks"><code>@sks</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/109">mark3labs/mcp-go#109</a></li> <li><a href="https://github.com/liut"><code>@liut</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/136">mark3labs/mcp-go#136</a></li> <li><a href="https://github.com/CeerDecy"><code>@CeerDecy</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/163">mark3labs/mcp-go#163</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.24.1...v0.25.0">https://github.com/mark3labs/mcp-go/compare/v0.24.1...v0.25.0</a></p> <h2>Release v0.24.1</h2> <h2>What's Changed</h2> <ul> <li>fix: marshal <code>ToolInputSchema.Properties</code> to {} when len=0 by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/225">mark3labs/mcp-go#225</a></li> <li>fix(client/test): verify mock server binary exists after compilation by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/215">mark3labs/mcp-go#215</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.24.0...v0.24.1">https://github.com/mark3labs/mcp-go/compare/v0.24.0...v0.24.1</a></p> <h2>Release v0.24.0</h2> <h2>What's Changed</h2> <ul> <li>Use correct name in Go documentation by <a href="https://github.com/oschwald"><code>@oschwald</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/202">mark3labs/mcp-go#202</a></li> <li>fix(client): resource leak in <code>SSEClient.SendRequest()</code> by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/206">mark3labs/mcp-go#206</a></li> <li>fix(client): risk of resource leak and closing closed channel by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/208">mark3labs/mcp-go#208</a></li> <li>no need to check empty text by <a href="https://github.com/graydovee"><code>@graydovee</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/209">mark3labs/mcp-go#209</a></li> <li>refactor: Pull out <code>Annotations</code> structure rather than being an anonymous inner struct by <a href="https://github.com/rm-hull"><code>@rm-hull</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/203">mark3labs/mcp-go#203</a></li> <li>perf: optimize usage of RWMutex in MCPServer for performance by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/181">mark3labs/mcp-go#181</a></li> <li>feat: Add server hooks:OnRequestInitialization by <a href="https://github.com/AlexNiny"><code>@AlexNiny</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/164">mark3labs/mcp-go#164</a></li> <li>fix: Improve content type handling in streamable_http.go by <a href="https://github.com/TBXark"><code>@TBXark</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/210">mark3labs/mcp-go#210</a></li> <li>Add <code>mcptest</code> package for in-process MCP testing by <a href="https://github.com/octo"><code>@octo</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/149">mark3labs/mcp-go#149</a></li> <li>Manage tools on a per session basis by <a href="https://github.com/ezynda3"><code>@ezynda3</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/179">mark3labs/mcp-go#179</a></li> <li>Fix: fix client sse tcp connection re-use by draining outstanding io by <a href="https://github.com/bcain99"><code>@bcain99</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/212">mark3labs/mcp-go#212</a></li> <li>perf(server): release Mutex early for performance by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/213">mark3labs/mcp-go#213</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/oschwald"><code>@oschwald</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/202">mark3labs/mcp-go#202</a></li> <li><a href="https://github.com/graydovee"><code>@graydovee</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/209">mark3labs/mcp-go#209</a></li> <li><a href="https://github.com/rm-hull"><code>@rm-hull</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/203">mark3labs/mcp-go#203</a></li> <li><a href="https://github.com/AlexNiny"><code>@AlexNiny</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/164">mark3labs/mcp-go#164</a></li> <li><a href="https://github.com/octo"><code>@octo</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/149">mark3labs/mcp-go#149</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/eadd7023515f7eaad5808720c157b1cc25581d90"><code>eadd702</code></a> Format</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/4a1010e73b34db4a602a7f34e2690a3a51d963cb"><code>4a1010e</code></a> feat(server/sse): Add support for dynamic base paths (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/214">#214</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/cfeb0eec85509f516064e3df007b625d4fc89f48"><code>cfeb0ee</code></a> feat: quick return tool-call request, send response via SSE in goroutine (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/163">#163</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/d352118718f3f0481ff8484f5e9914ed26be5d38"><code>d352118</code></a> feat(SSEServer): add WithAppendQueryToMessageEndpoint() (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/136">#136</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/df5f67eeb1841f4350b4079b643051364be7ed7b"><code>df5f67e</code></a> [chore][client] Add ability to override the http.Client (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/109">#109</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/ddb59ddfadc950647316561afebe8060f6276880"><code>ddb59dd</code></a> fix: handle nil rawMessage in response parsing functions (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/218">#218</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/f0a648b91d852442c1cd52f98391aa1fe1540b60"><code>f0a648b</code></a> fix(SSE): only initialize http.Server when not set (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/229">#229</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/ffc63d90b0cb05ee26ced8880c329dadad4c202b"><code>ffc63d9</code></a> Add Accept header (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/230">#230</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/ae96a68a47e6ad255b8e976e89c30ac595139511"><code>ae96a68</code></a> fix: update doc comments to match Go conventions (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/226">#226</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/df736673ba674040abe5c2edbedd70455483d961"><code>df73667</code></a> fix(client/test): verify mock server binary exists after compilation (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/215">#215</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.23.1...v0.25.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
544259b809 |
feat: add database tables and API routes for agentic chat feature (#17570)
Backend portion of experimental `AgenticChat` feature: - Adds database tables for chats and chat messages - Adds functionality to stream messages from LLM providers using `kylecarbs/aisdk-go` - Adds API routes with relevant functionality (list, create, update chats, insert chat message) - Adds experiment `codersdk.AgenticChat` --------- Co-authored-by: Kyle Carberry <kyle@carberry.com> |
||
|
|
268a50c193 |
feat(agent/agentcontainers): add file watcher and dirty status (#17573)
Fixes coder/internal#479 Fixes coder/internal#480 |
||
|
|
b9177eff7f |
chore: update guts to latest, using mutations to prevent diffs (#17588)
Guts changes: https://github.com/coder/guts/compare/v1.1.0...main |
||
|
|
b299ebebf7 |
chore: bump github.com/valyala/fasthttp from 1.60.0 to 1.61.0 (#17575)
Bumps [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) from 1.60.0 to 1.61.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/valyala/fasthttp/releases">github.com/valyala/fasthttp's releases</a>.</em></p> <blockquote> <h2>v1.61.0</h2> <h2>What's Changed</h2> <ul> <li>chore(deps): bump golang.org/x/sys from 0.31.0 to 0.32.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1989">valyala/fasthttp#1989</a></li> <li>chore(deps): bump golang.org/x/crypto from 0.36.0 to 0.37.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1988">valyala/fasthttp#1988</a></li> <li>chore(deps): bump securego/gosec from 2.22.2 to 2.22.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1990">valyala/fasthttp#1990</a></li> <li>chore(deps): bump golang.org/x/net from 0.38.0 to 0.39.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1991">valyala/fasthttp#1991</a></li> <li>Fix round robin addresses in dual stack dialing by <a href="https://github.com/raviqqe"><code>@raviqqe</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1995">valyala/fasthttp#1995</a></li> <li>Fix panic when perIPConn.Close is called multiple times by <a href="https://github.com/erikdubbelboer"><code>@erikdubbelboer</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1993">valyala/fasthttp#1993</a></li> <li>early hint functionality by <a href="https://github.com/pjebs"><code>@pjebs</code></a> in <a href="https://redirect.github.com/valyala/fasthttp/pull/1996">valyala/fasthttp#1996</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/raviqqe"><code>@raviqqe</code></a> made their first contribution in <a href="https://redirect.github.com/valyala/fasthttp/pull/1995">valyala/fasthttp#1995</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/valyala/fasthttp/compare/v1.60.0...v1.61.0">https://github.com/valyala/fasthttp/compare/v1.60.0...v1.61.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/valyala/fasthttp/commit/a05560dd7e07834473c374ba3d1bfc9dfa508d64"><code>a05560d</code></a> implement early hints (<a href="https://redirect.github.com/valyala/fasthttp/issues/1996">#1996</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/48f3a2f423f103cd67e504a51f3ec3a1381a5620"><code>48f3a2f</code></a> Fix panic when perIPConn.Close is called multiple times (<a href="https://redirect.github.com/valyala/fasthttp/issues/1993">#1993</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/e380d34bce703d5d43b8effcef66b7305af12a35"><code>e380d34</code></a> Fix round robin addresses in dual stack dialing (<a href="https://redirect.github.com/valyala/fasthttp/issues/1995">#1995</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/4c71125994a1a67c8c6cb979142ae4269c5d89f1"><code>4c71125</code></a> chore(deps): bump golang.org/x/net from 0.38.0 to 0.39.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1991">#1991</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/76acf1443d615f73837ed7ef2de7924316746809"><code>76acf14</code></a> chore(deps): bump securego/gosec from 2.22.2 to 2.22.3 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1990">#1990</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/236b2f3148d527c23524f44d9b521d7640dd06a6"><code>236b2f3</code></a> chore(deps): bump golang.org/x/crypto from 0.36.0 to 0.37.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1988">#1988</a>)</li> <li><a href="https://github.com/valyala/fasthttp/commit/2629d9d8697d11b2085c73f5005a234448336e84"><code>2629d9d</code></a> chore(deps): bump golang.org/x/sys from 0.31.0 to 0.32.0 (<a href="https://redirect.github.com/valyala/fasthttp/issues/1989">#1989</a>)</li> <li>See full diff in <a href="https://github.com/valyala/fasthttp/compare/v1.60.0...v1.61.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
38e7793c91 |
chore: bump github.com/gohugoio/hugo from 0.146.3 to 0.147.0 (#17577)
Bumps [github.com/gohugoio/hugo](https://github.com/gohugoio/hugo) from 0.146.3 to 0.147.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gohugoio/hugo/releases">github.com/gohugoio/hugo's releases</a>.</em></p> <blockquote> <h2>v0.147.0</h2> <p>This release comes with a new <code>aligny</code> option (shoutout to <a href="https://github.com/pranshugaba"><code>@pranshugaba</code></a> for the implementation) for <a href="https://gohugo.io/functions/images/text/">images.Text</a> that, in combination with <code>alignx</code> makes it simple to e.g. center the text on top of image in both axis. But the main reason this release comes now and not later, is the improvements/fixes to the order Hugo applies the default configuration to some keys. This is inherited from how we did this before we rewrote the configuration handling, and it made the merging of configuration from modules/themes into the config root harder and less flexible than it had to be. Me, <a href="https://github.com/bep"><code>@bep</code></a>, looking into this, was triggered by <a href="https://discourse.gohugo.io/t/how-to-manage-common-config-in-hugo-using-modules/54485/4">this</a> forum topic. Having many sites share a common configuration is very useful. With this release, you can simply get what the thread starter asks for by doing something à la:</p> <pre lang="toml"><code>baseURL = "http://example.org" title = "My Hugo Site" <h1>... import any themes/modules.</h1> <h1>This will merge in all config imported from imported modules.</h1> <p>_merge = "deep" </code></pre></p> <p>See the <a href="https://gohugo.io/configuration/introduction/#merge-configuration-settings">documentation</a> for details.</p> <h2>Bug fixes</h2> <ul> <li>tpl: Fix it so we always prefer internal codeblock rendering over render-codeblock-foo.html and similar 07983e04e <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13651">#13651</a></li> <li>tpl/tplimpl: Fix allowFullScreen option in Vimeo and YouTube shortcodes 5c491409d <a href="https://github.com/jmooring"><code>@jmooring</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13650">#13650</a></li> <li>config: Fix _merge issue when key doesn't exist on the left side 179aea11a <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13643">#13643</a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13646">#13646</a></li> <li>all: Fix typos 6a0e04241 <a href="https://github.com/coliff"><code>@coliff</code></a></li> </ul> <h2>Improvements</h2> <ul> <li>create/skeletons: Adjust template names in theme skeleton 75b219db8 <a href="https://github.com/jmooring"><code>@jmooring</code></a></li> <li>tpl: Remove some unreached code branches ad4f63c92 <a href="https://github.com/bep"><code>@bep</code></a></li> <li>images: Add some test cases for aligny on images.Text 53202314a <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13414">#13414</a></li> <li>images: Add option for vertical alignment to images.Text 2fce0bac0 <a href="https://github.com/pranshugaba"><code>@pranshugaba</code></a></li> </ul> <h2>Dependency Updates</h2> <ul> <li>build(deps): bump github.com/evanw/esbuild from 0.25.2 to 0.25.3 1bd7ac7ed <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot]</li> <li>build(deps): bump github.com/alecthomas/chroma/v2 from 2.16.0 to 2.17.0 41cb880f9 <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot]</li> </ul> <h2>v0.146.7</h2> <h2>Bug fixes</h2> <ul> <li>Revert the breaking change from 0.146.0 with dots in content filenames 496730840 <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13632">#13632</a></li> <li>tpl: Fix indeterminate template lookup with templates with and without lang 6d69dc88a <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13636">#13636</a></li> <li>tpl/collections: Fix where ... not in with empty slice 4eb0e4286 <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13621">#13621</a></li> <li>tpl: Fix layout fall back logic when layout is set in front matter but not found 5e62cc6fc <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13630">#13630</a></li> </ul> <h2>Improvements</h2> <ul> <li>parser/metadecoders: Add CSV targetType (map or slice) option to transform.Unmarshal db72a1f07 <a href="https://github.com/jmooring"><code>@jmooring</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/8859">#8859</a></li> <li>tpl: Detect and fail on infinite template recursion 1408c156d <a href="https://github.com/bep"><code>@bep</code></a> <a href="https://redirect.github.com/gohugoio/hugo/issues/13627">#13627</a></li> </ul> <h2>Dependency Updates</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gohugoio/hugo/commit/7d0039b86ddd6397816cc3383cb0cfa481b15f32"><code>7d0039b</code></a> releaser: Bump versions for release of 0.147.0</li> <li><a href="https://github.com/gohugoio/hugo/commit/07983e04e29986a683c7a9f15d48b83e90aff09c"><code>07983e0</code></a> tpl: Fix it so we always prefer internal codeblock rendering over render-code...</li> <li><a href="https://github.com/gohugoio/hugo/commit/5c491409d36d31f77cdc0407ed29ae2dca71363b"><code>5c49140</code></a> tpl/tplimpl: Fix allowFullScreen option in Vimeo and YouTube shortcodes</li> <li><a href="https://github.com/gohugoio/hugo/commit/75b219db896cd0ae962f062b39fd67c38dfc8e5b"><code>75b219d</code></a> create/skeletons: Adjust template names in theme skeleton</li> <li><a href="https://github.com/gohugoio/hugo/commit/ad4f63c92f41824b861d317f9248fb30b7e68076"><code>ad4f63c</code></a> tpl: Remove some unreached code branches</li> <li><a href="https://github.com/gohugoio/hugo/commit/53202314abdd05d8f0b6ffdcef96640ac3267344"><code>5320231</code></a> images: Add some test cases for aligny on images.Text</li> <li><a href="https://github.com/gohugoio/hugo/commit/2fce0bac033d8b7e98046f85f669ba813d862788"><code>2fce0ba</code></a> images: Add option for vertical alignment to images.Text</li> <li><a href="https://github.com/gohugoio/hugo/commit/179aea11ac2ce80a38b211e11fd513cead63b17e"><code>179aea1</code></a> config: Fix _merge issue when key doesn't exist on the left side</li> <li><a href="https://github.com/gohugoio/hugo/commit/61a286595e9a333fef95db1e9a086ef9367b3d87"><code>61a2865</code></a> Merge commit 'b3d87dd0fd746f07f9afa6e6a2969aea41da6a38'</li> <li><a href="https://github.com/gohugoio/hugo/commit/b3d87dd0fd746f07f9afa6e6a2969aea41da6a38"><code>b3d87dd</code></a> Squashed 'docs/' changes from dc7a9ae12..b654fcba0</li> <li>Additional commits viewable in <a href="https://github.com/gohugoio/hugo/compare/v0.146.3...v0.147.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
42e91de81d |
chore: bump google.golang.org/api from 0.229.0 to 0.230.0 (#17578)
Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.229.0 to 0.230.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.230.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.229.0...v0.230.0">0.230.0</a> (2025-04-22)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3111">#3111</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/59f08c8d98394de1311907950ae52b75db151a6a">59f08c8</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3113">#3113</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/40e4fb1ee01719658774befbfc582c20ee06581f">40e4fb1</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3114">#3114</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f0bb0a13159f29b30624027724b3ea0ad08c0ff0">f0bb0a1</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3115">#3115</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c122b14b51ab658a5f666b9ec9ab318288c4273d">c122b14</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3117">#3117</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1c0aadbeaf819dfcb52903b978085ac96c12522c">1c0aadb</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3118">#3118</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2b6fa61936ada3252efc355ea176dd638c2f5baa">2b6fa61</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3120">#3120</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/18c546ede7af9fae3ff7115c01a31208c3a9d734">18c546e</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3121">#3121</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ff1b166e4564423ae96c464cad4435db71cefded">ff1b166</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Removes-redundant (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3095">#3095</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9e9ff112acacecddc17be15d4f37ca45fb9177ad">9e9ff11</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.229.0...v0.230.0">0.230.0</a> (2025-04-22)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3111">#3111</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/59f08c8d98394de1311907950ae52b75db151a6a">59f08c8</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3113">#3113</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/40e4fb1ee01719658774befbfc582c20ee06581f">40e4fb1</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3114">#3114</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f0bb0a13159f29b30624027724b3ea0ad08c0ff0">f0bb0a1</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3115">#3115</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c122b14b51ab658a5f666b9ec9ab318288c4273d">c122b14</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3117">#3117</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1c0aadbeaf819dfcb52903b978085ac96c12522c">1c0aadb</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3118">#3118</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2b6fa61936ada3252efc355ea176dd638c2f5baa">2b6fa61</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3120">#3120</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/18c546ede7af9fae3ff7115c01a31208c3a9d734">18c546e</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3121">#3121</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ff1b166e4564423ae96c464cad4435db71cefded">ff1b166</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Removes-redundant (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3095">#3095</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9e9ff112acacecddc17be15d4f37ca45fb9177ad">9e9ff11</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/e4f4ca981adfca5cdf031dd30c645ee356591d12"><code>e4f4ca9</code></a> chore(main): release 0.230.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3112">#3112</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/ff1b166e4564423ae96c464cad4435db71cefded"><code>ff1b166</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3121">#3121</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/5b0e60da0b3c608ab354297a727eedac9c403fde"><code>5b0e60d</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3119">#3119</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/18c546ede7af9fae3ff7115c01a31208c3a9d734"><code>18c546e</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3120">#3120</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/2b6fa61936ada3252efc355ea176dd638c2f5baa"><code>2b6fa61</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3118">#3118</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1c0aadbeaf819dfcb52903b978085ac96c12522c"><code>1c0aadb</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3117">#3117</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/c122b14b51ab658a5f666b9ec9ab318288c4273d"><code>c122b14</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3115">#3115</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f0bb0a13159f29b30624027724b3ea0ad08c0ff0"><code>f0bb0a1</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3114">#3114</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/9e9ff112acacecddc17be15d4f37ca45fb9177ad"><code>9e9ff11</code></a> fix: removes-redundant (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3095">#3095</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/40e4fb1ee01719658774befbfc582c20ee06581f"><code>40e4fb1</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3113">#3113</a>)</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.229.0...v0.230.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
cabfc98030 |
chore: bump github.com/mark3labs/mcp-go from 0.22.0 to 0.23.1 (#17576)
Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.22.0 to 0.23.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mark3labs/mcp-go/releases">github.com/mark3labs/mcp-go's releases</a>.</em></p> <blockquote> <h2>Release v0.23.1</h2> <h2>What's Changed</h2> <ul> <li>fix(client): prevent panics by <a href="https://github.com/jkoelker"><code>@jkoelker</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/192">mark3labs/mcp-go#192</a></li> <li>fix: correct JSON key for client capabilities by <a href="https://github.com/TBXark"><code>@TBXark</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/197">mark3labs/mcp-go#197</a></li> <li>fix(client): check stdio started before sending notification by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/199">mark3labs/mcp-go#199</a></li> <li>fix(client): potential risk of sending on closed channel by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/194">mark3labs/mcp-go#194</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/TBXark"><code>@TBXark</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/197">mark3labs/mcp-go#197</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.23.0...v0.23.1">https://github.com/mark3labs/mcp-go/compare/v0.23.0...v0.23.1</a></p> <h2>Release v0.23.0</h2> <h2>What's Changed</h2> <ul> <li>Export SendNotificationToAllClients by <a href="https://github.com/scottfeldman"><code>@scottfeldman</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/176">mark3labs/mcp-go#176</a></li> <li>feat(server): Add hooks.AddOnUnregisterSession functionality by <a href="https://github.com/robert-jackson-glean"><code>@robert-jackson-glean</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/175">mark3labs/mcp-go#175</a></li> <li>Refact: pre-allocate memory for memory-efficiency by <a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/178">mark3labs/mcp-go#178</a></li> <li>fix sse shutdown by <a href="https://github.com/karngyan"><code>@karngyan</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/128">mark3labs/mcp-go#128</a></li> <li>fix: update spec link by <a href="https://github.com/warjiang"><code>@warjiang</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/188">mark3labs/mcp-go#188</a></li> <li>Add <code>InProcessTransport</code> by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/189">mark3labs/mcp-go#189</a></li> <li>Optimize capability and notification according to specification by <a href="https://github.com/dugenkui03"><code>@dugenkui03</code></a> in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/184">mark3labs/mcp-go#184</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/scottfeldman"><code>@scottfeldman</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/176">mark3labs/mcp-go#176</a></li> <li><a href="https://github.com/cryo-zd"><code>@cryo-zd</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/178">mark3labs/mcp-go#178</a></li> <li><a href="https://github.com/karngyan"><code>@karngyan</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/128">mark3labs/mcp-go#128</a></li> <li><a href="https://github.com/warjiang"><code>@warjiang</code></a> made their first contribution in <a href="https://redirect.github.com/mark3labs/mcp-go/pull/188">mark3labs/mcp-go#188</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mark3labs/mcp-go/compare/v0.22.0...v0.23.0">https://github.com/mark3labs/mcp-go/compare/v0.22.0...v0.23.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mark3labs/mcp-go/commit/edda393a1a231aefaaef41086ba7344e30c6b559"><code>edda393</code></a> fix potential risk of sending on closed channel (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/194">#194</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/6e000c30767a9e03f90d2a3932af91c620945323"><code>6e000c3</code></a> check stdio start before sending notification (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/199">#199</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/fb13cfbf97dfa75c4245e3924a8e9ced99871a55"><code>fb13cfb</code></a> fix: correct JSON key for client capabilities (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/197">#197</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/d343bff720e8ce4c21415dd7bb253bd107d2d0d7"><code>d343bff</code></a> fix(client): prevent panics (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/192">#192</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/781b7327ad04888293d38d0bf0a9cd0588d3af79"><code>781b732</code></a> optimize capability and notification (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/184">#184</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/6760d870f40fa9df86a733170d2d3951ebe5659c"><code>6760d87</code></a> in process transport (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/189">#189</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/be0d8cbfe8cefde1ad0116b76b4abebd93bf323f"><code>be0d8cb</code></a> fix: update spec link (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/188">#188</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/2e4af4cf0c6dd36013aeb725f547ad4963c2155d"><code>2e4af4c</code></a> fix sse shutdown (<a href="https://redirect.github.com/mark3labs/mcp-go/issues/128">#128</a>)</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/9f39a43b4e9d756e386289dd687f57cf9ffacfe0"><code>9f39a43</code></a> Merge branch 'main' of github.com:mark3labs/mcp-go</li> <li><a href="https://github.com/mark3labs/mcp-go/commit/dd7dcc515d62b442b53b1789a4d41959547719a3"><code>dd7dcc5</code></a> Fix spelling</li> <li>Additional commits viewable in <a href="https://github.com/mark3labs/mcp-go/compare/v0.22.0...v0.23.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
25dacd39e7 |
chore: bump github.com/prometheus-community/pro-bing from 0.6.0 to 0.7.0 (#17378)
Bumps [github.com/prometheus-community/pro-bing](https://github.com/prometheus-community/pro-bing) from 0.6.0 to 0.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prometheus-community/pro-bing/releases">github.com/prometheus-community/pro-bing's releases</a>.</em></p> <blockquote> <h2>v0.7.0</h2> <h2>What's Changed</h2> <ul> <li>Synchronize common files from prometheus/prometheus by <a href="https://github.com/prombot"><code>@prombot</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/146">prometheus-community/pro-bing#146</a></li> <li>Bump golang.org/x/net from 0.34.0 to 0.35.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/147">prometheus-community/pro-bing#147</a></li> <li>Bump golang.org/x/sync from 0.10.0 to 0.11.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/148">prometheus-community/pro-bing#148</a></li> <li>Update Go by <a href="https://github.com/SuperQ"><code>@SuperQ</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/152">prometheus-community/pro-bing#152</a></li> <li>Bump golang.org/x/net from 0.35.0 to 0.38.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/150">prometheus-community/pro-bing#150</a></li> <li>Bump golang.org/x/sync from 0.11.0 to 0.13.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/153">prometheus-community/pro-bing#153</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/prometheus-community/pro-bing/compare/v0.6.1...v0.7.0">https://github.com/prometheus-community/pro-bing/compare/v0.6.1...v0.7.0</a></p> <h2>v0.6.1</h2> <h2>What's Changed</h2> <ul> <li>fix/stats race by <a href="https://github.com/perhallgren"><code>@perhallgren</code></a> in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/145">prometheus-community/pro-bing#145</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/perhallgren"><code>@perhallgren</code></a> made their first contribution in <a href="https://redirect.github.com/prometheus-community/pro-bing/pull/145">prometheus-community/pro-bing#145</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/prometheus-community/pro-bing/compare/v0.6.0...v0.6.1">https://github.com/prometheus-community/pro-bing/compare/v0.6.0...v0.6.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prometheus-community/pro-bing/commit/85df87ee97d5a448f5bc5c2ccc6f43d54e68b0cd"><code>85df87e</code></a> Merge pull request <a href="https://redirect.github.com/prometheus-community/pro-bing/issues/153">#153</a> from prometheus-community/dependabot/go_modules/golan...</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/4df7cf6d8a2e926bd84f0c23ef3c70d207e08648"><code>4df7cf6</code></a> Bump golang.org/x/sync from 0.11.0 to 0.13.0</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/0748554038ca051940674fa98cf8ae470b0bfb2d"><code>0748554</code></a> Merge pull request <a href="https://redirect.github.com/prometheus-community/pro-bing/issues/150">#150</a> from prometheus-community/dependabot/go_modules/golan...</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/0a802c09eea30c0d7232e5b23cd02ac0a0063bb0"><code>0a802c0</code></a> Bump golang.org/x/net from 0.35.0 to 0.38.0</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/a184532955ba6a987d1a2b406ab2708c41e9b9d0"><code>a184532</code></a> Merge pull request <a href="https://redirect.github.com/prometheus-community/pro-bing/issues/152">#152</a> from prometheus-community/superq/bump_go</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/ed8beb88ca19f00c9d5dfc8f93f99733366c89aa"><code>ed8beb8</code></a> Update Go</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/c9b2c133ccf6c6212f29ca33c6258f7400ea76f6"><code>c9b2c13</code></a> Merge pull request <a href="https://redirect.github.com/prometheus-community/pro-bing/issues/148">#148</a> from prometheus-community/dependabot/go_modules/golan...</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/b3180894e532d3a854cb025d889e50e4cac5f9fe"><code>b318089</code></a> Bump golang.org/x/sync from 0.10.0 to 0.11.0</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/ba53383b80d9cd150307779f2d7e09ef3985f689"><code>ba53383</code></a> Merge pull request <a href="https://redirect.github.com/prometheus-community/pro-bing/issues/147">#147</a> from prometheus-community/dependabot/go_modules/golan...</li> <li><a href="https://github.com/prometheus-community/pro-bing/commit/a683c097aea7c567a2d4e4c91b001822fbe48850"><code>a683c09</code></a> Bump golang.org/x/net from 0.34.0 to 0.35.0</li> <li>Additional commits viewable in <a href="https://github.com/prometheus-community/pro-bing/compare/v0.6.0...v0.7.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
9922240fd4 |
feat: enable masking password inputs instead of blocking echo (#17469)
Closes #17059 |
||
|
|
5d97d82422 |
chore: update coder/preview dep (#17512)
Using latest release of coder/preview |
||
|
|
d566008087 |
fix: update tailscale to improve block endpoints functionality (#17496)
Direct endpoints from the peer will no longer be processed. |
||
|
|
823d3ea64e |
chore: bump google.golang.org/grpc from 1.71.0 to 1.72.0 (#17481)
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.71.0 to 1.72.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.72.0</h2> <h1>Dependencies</h1> <ul> <li>Minimum supported Go version is now 1.23 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8108">#8108</a>)</li> </ul> <h1>API Changes</h1> <ul> <li>resolver: add experimental <code>AddressMapV2</code> with generics to ultimately replace <code>AddressMap</code>. Deprecate <code>AddressMap</code> for deletion (<a href="https://redirect.github.com/grpc/grpc-go/issues/8187">#8187</a>)</li> <li>resolver: convert EndpointMap in place to use generics (<a href="https://redirect.github.com/grpc/grpc-go/issues/8189">#8189</a>)</li> </ul> <h1>New Features</h1> <ul> <li>xds: add <code>grpc.xds_client.server_failure</code> counter metric on xDS client to record connectivity errors (<a href="https://redirect.github.com/grpc/grpc-go/issues/8203">#8203</a>)</li> <li>balancer/rls: allow <code>maxAge</code> to exceed 5 minutes if <code>staleAge</code> is set in the LB policy configuration (<a href="https://redirect.github.com/grpc/grpc-go/issues/8137">#8137</a>)</li> <li>ringhash: implement <a href="https://github.com/grpc/proposal/blob/master/A76-ring-hash-improvements.md">gRFC A76</a> improvements. (<a href="https://redirect.github.com/grpc/grpc-go/issues/8159">#8159</a>)</li> </ul> <h1>Bug Fixes</h1> <ul> <li>xds: fix support for circuit breakers and load reporting in LOGICAL_DNS clusters (<a href="https://redirect.github.com/grpc/grpc-go/issues/8169">#8169</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/8170">#8170</a>)</li> <li>cds: improve RPC error messages when resources are not found (<a href="https://redirect.github.com/grpc/grpc-go/issues/8122">#8122</a>)</li> <li>priority: fix race that could leak balancers and goroutines during shutdown (<a href="https://redirect.github.com/grpc/grpc-go/issues/8095">#8095</a>)</li> <li>stats/opentelemetry: fix trace attributes message sequence numbers to start from 0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8237">#8237</a>)</li> <li>balancer/pickfirstleaf: fix panic if deprecated Address.Metadata field is set to a non-comparable value by ignoring the field (<a href="https://redirect.github.com/grpc/grpc-go/issues/8227">#8227</a>)</li> </ul> <h1>Behavior Changes</h1> <ul> <li>transport: make servers send an HTTP/2 RST_STREAM frame to cancel a stream when the deadline expires (<a href="https://redirect.github.com/grpc/grpc-go/issues/8071">#8071</a>)</li> </ul> <h1>Documentation</h1> <ul> <li>stats: clarify the expected sequence of events on a stats handler (<a href="https://redirect.github.com/grpc/grpc-go/issues/7885">#7885</a>) <ul> <li>Special Thanks: <a href="https://github.com/RyanBlaney"><code>@RyanBlaney</code></a></li> </ul> </li> </ul> <h2>Release 1.71.1</h2> <h1>Bug Fixes</h1> <ul> <li>grpc: fix a bug causing an extra Read from the compressor if a compressed message is the same size as the limit. This could result in a panic with the built-in gzip compressor (<a href="https://redirect.github.com/grpc/grpc-go/issues/8178">#8178</a>)</li> <li>xds: restore the behavior of reading the bootstrap config before creating the first xDS client instead of at package init time (<a href="https://redirect.github.com/grpc/grpc-go/issues/8164">#8164</a>)</li> <li>stats/opentelemetry: use <code>TextMapPropagator</code> and <code>TracerProvider</code> from <code>TraceOptions</code> instead of OpenTelemetry globals (<a href="https://redirect.github.com/grpc/grpc-go/issues/8166">#8166</a>)</li> <li>client: fix races when an http proxy is configured that could lead to deadlocks or panics (<a href="https://redirect.github.com/grpc/grpc-go/issues/8195">#8195</a>)</li> <li>client: fix bug causing RPC failures with message "no children to pick from" when using a custom resolver that calls the deprecated <code>NewAddress</code> API (<a href="https://redirect.github.com/grpc/grpc-go/issues/8149">#8149</a>)</li> <li>wrr: fix slow processing of address updates that could result in problems including RPC failures for servers with a large number of backends (<a href="https://redirect.github.com/grpc/grpc-go/issues/8179">#8179</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/a43eba6fed49b81b84cfdba85c356aca22086d7e"><code>a43eba6</code></a> Change version to 1.72.0 (<a href="https://redirect.github.com/grpc/grpc-go/issues/8218">#8218</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/48f48c14f7a670d4405680d4ae121b557ae89f55"><code>48f48c1</code></a> balancer/pickfirstleaf: Avoid reading Address.Metadata (<a href="https://redirect.github.com/grpc/grpc-go/issues/8227">#8227</a>) (<a href="https://redirect.github.com/grpc/grpc-go/issues/8259">#8259</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/fd6f5852919a08d9a5aaa421c2910405da6a5ed0"><code>fd6f585</code></a> Cherry-pick <a href="https://redirect.github.com/grpc/grpc-go/issues/8159">#8159</a> and <a href="https://redirect.github.com/grpc/grpc-go/issues/8243">#8243</a> to v1.72.x (<a href="https://redirect.github.com/grpc/grpc-go/issues/8255">#8255</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/79ca1744edd19936966a4ef45bcef2d240587812"><code>79ca174</code></a> stats/opentelemetry: fix trace attributes message sequence numbers to start f...</li> <li><a href="https://github.com/grpc/grpc-go/commit/57a2605e35a0608f1cbdb1e471db94d2a28ec42c"><code>57a2605</code></a> xdsclient: fix TestServerFailureMetrics_BeforeResponseRecv test to wait for w...</li> <li><a href="https://github.com/grpc/grpc-go/commit/5edab9e55414068e74320716117a2659c5d2174e"><code>5edab9e</code></a> xdsclient: add grpc.xds_client.server_failure counter mertric (<a href="https://redirect.github.com/grpc/grpc-go/issues/8203">#8203</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/78ba6616c1c3d641cf2cc861a0696fd5beb90aa3"><code>78ba661</code></a> regenerate protos (<a href="https://redirect.github.com/grpc/grpc-go/issues/8208">#8208</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/6819ed796fcd0232a46dab21c1b7826aa7f1d561"><code>6819ed7</code></a> delegatingresolver: Stop calls into delegates once the parent resolver is clo...</li> <li><a href="https://github.com/grpc/grpc-go/commit/a51009d1d7074ee1efcd323578064cbe44ef87e5"><code>a51009d</code></a> resolver: convert EndpointMap to use generics (<a href="https://redirect.github.com/grpc/grpc-go/issues/8189">#8189</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/b0d120384670bde5a2fa830d65e43b250c24d8fd"><code>b0d1203</code></a> resolver: create AddressMapV2 with generics to replace AddressMap (<a href="https://redirect.github.com/grpc/grpc-go/issues/8187">#8187</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.71.0...v1.72.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
36625af3bc |
chore: bump google.golang.org/api from 0.228.0 to 0.229.0 (#17480)
Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.228.0 to 0.229.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.229.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.228.0...v0.229.0">0.229.0</a> (2025-04-14)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3082">#3082</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ab1e35bd922013503c83b13ceeca77261b161bbc">ab1e35b</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3084">#3084</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/eab21799a214ec6b03e74ea0c8c1bde79c851faf">eab2179</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3085">#3085</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9af4079c0c6bab3c5567b42888be725bfc47b3b0">9af4079</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3086">#3086</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9c927b65141cbfc1019dbc4350836fb363167de9">9c927b6</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3087">#3087</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/3c387cdc0b26846f2c2ae02f9871020fe732c87d">3c387cd</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3089">#3089</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/b64e7929166b212d1721afd68bf9fe8d40dc5775">b64e792</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3090">#3090</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/65fc9d3edb75cb38ceb96a383dcf6d7fee89662e">65fc9d3</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3093">#3093</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/3a51a3a77ef75d10dc75fb4af0e5c791809cb568">3a51a3a</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3094">#3094</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ca845161fd6688acdf5818fcb06f91d314866e4c">ca84516</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3096">#3096</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9e992f492d43134b44b0a830e99c8b78dd8fc524">9e992f4</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3097">#3097</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c09b6a9455c6aab4dbd7422245e4c9b2502c5806">c09b6a9</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3099">#3099</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/66d217562f865a6e93e9cd680c2e65cd815c441a">66d2175</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3101">#3101</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9ad998bc308b688bb47fd1621d73789bc66ec565">9ad998b</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3102">#3102</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/70d6fb25935cb233a3d8cdc144d04add6f1ed5f9">70d6fb2</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3103">#3103</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/414e575ddac0ec40cbd77dccb2b376f2a16c7675">414e575</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3104">#3104</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/91f658957210bd86c3365cbed6d7753a3cc7ff07">91f6589</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3105">#3105</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1c5ea6cfdd2437d3d2f790a5ab252b070e68bbbe">1c5ea6c</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3106">#3106</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/fabfddf97037bebce44fbbd9b85473a621649802">fabfddf</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3107">#3107</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ecbc1a9e09191e81577ac480e32234b9d146d217">ecbc1a9</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.228.0...v0.229.0">0.229.0</a> (2025-04-14)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3082">#3082</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ab1e35bd922013503c83b13ceeca77261b161bbc">ab1e35b</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3084">#3084</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/eab21799a214ec6b03e74ea0c8c1bde79c851faf">eab2179</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3085">#3085</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9af4079c0c6bab3c5567b42888be725bfc47b3b0">9af4079</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3086">#3086</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9c927b65141cbfc1019dbc4350836fb363167de9">9c927b6</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3087">#3087</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/3c387cdc0b26846f2c2ae02f9871020fe732c87d">3c387cd</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3089">#3089</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/b64e7929166b212d1721afd68bf9fe8d40dc5775">b64e792</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3090">#3090</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/65fc9d3edb75cb38ceb96a383dcf6d7fee89662e">65fc9d3</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3093">#3093</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/3a51a3a77ef75d10dc75fb4af0e5c791809cb568">3a51a3a</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3094">#3094</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ca845161fd6688acdf5818fcb06f91d314866e4c">ca84516</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3096">#3096</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9e992f492d43134b44b0a830e99c8b78dd8fc524">9e992f4</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3097">#3097</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/c09b6a9455c6aab4dbd7422245e4c9b2502c5806">c09b6a9</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3099">#3099</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/66d217562f865a6e93e9cd680c2e65cd815c441a">66d2175</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3101">#3101</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/9ad998bc308b688bb47fd1621d73789bc66ec565">9ad998b</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3102">#3102</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/70d6fb25935cb233a3d8cdc144d04add6f1ed5f9">70d6fb2</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3103">#3103</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/414e575ddac0ec40cbd77dccb2b376f2a16c7675">414e575</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3104">#3104</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/91f658957210bd86c3365cbed6d7753a3cc7ff07">91f6589</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3105">#3105</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/1c5ea6cfdd2437d3d2f790a5ab252b070e68bbbe">1c5ea6c</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3106">#3106</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/fabfddf97037bebce44fbbd9b85473a621649802">fabfddf</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3107">#3107</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/ecbc1a9e09191e81577ac480e32234b9d146d217">ecbc1a9</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/8448bf2ae14fbf6a239ceea036ab6b69930db02a"><code>8448bf2</code></a> chore(main): release 0.229.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3083">#3083</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/8dd21ed8ab64b874d31b1096edf6923b0f9e1912"><code>8dd21ed</code></a> chore(all): update cloud.google.com/go/auth to v0.16.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3109">#3109</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/ac04e77c5460d05f02165272051ffb006dab01ae"><code>ac04e77</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3108">#3108</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/ecbc1a9e09191e81577ac480e32234b9d146d217"><code>ecbc1a9</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3107">#3107</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/fabfddf97037bebce44fbbd9b85473a621649802"><code>fabfddf</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3106">#3106</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/1c5ea6cfdd2437d3d2f790a5ab252b070e68bbbe"><code>1c5ea6c</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3105">#3105</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/91f658957210bd86c3365cbed6d7753a3cc7ff07"><code>91f6589</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3104">#3104</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/414e575ddac0ec40cbd77dccb2b376f2a16c7675"><code>414e575</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3103">#3103</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/70d6fb25935cb233a3d8cdc144d04add6f1ed5f9"><code>70d6fb2</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3102">#3102</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f7272c9d0bb58186d5ddab19f4671ac67c914915"><code>f7272c9</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/3100">#3100</a>)</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.228.0...v0.229.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
c0ca47d015 |
chore: bump github.com/charmbracelet/glamour from 0.9.1 to 0.10.0 (#17476)
Bumps [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour) from 0.9.1 to 0.10.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/charmbracelet/glamour/releases">github.com/charmbracelet/glamour's releases</a>.</em></p> <blockquote> <h2>v0.10.0</h2> <h1>Actually readable tables</h1> <p>Big tables that included links were always hard to read. Links can be very long, and tables often have limited space to render them. This means that links often took the space of many lines and weren't properly clickable because they were being truncated in practice.</p> <p>Starting on this release, Glamour will render links and images at the footer of the table, with a reference number so you can easily find the link you're looking for. If you want the old behavior, it is still supported via the new <code>WithInlineTableLinks</code> option.</p> <h2>The New Way</h2> <p><img src="https://github.com/user-attachments/assets/9ea84076-c318-4835-b5be-a583745a4953" alt="table_with_footer_links_and_images" /></p> <h2>The Old Way</h2> <p>Wanna render tables with inline links? You still can:</p> <pre lang="go"><code>r, err := glamour.NewTermRenderer(glamour.WithInlineTableLinks(true)) if err != nil { /*...*/ } <p>out, err := r.RenderBytes(in)<br /> if err != nil { /<em>...</em>/ }</p> <p>fmt.Fprintf(os.Stdout, "%s\n", out)<br /> </code></pre></p> <p><img src="https://github.com/user-attachments/assets/de3d3d33-9592-44ea-99d2-f3d8e9e94f9c" alt="table_with_inline_links_and_images" /></p> <h1>Prettier GitHub links</h1> <p>We also introduced a change so that GitHub links inside tables that reference issues, discussions or PRs will be shown in its shortened form, similar to how GitHub itself present the links on issue descriptions: <code>owner/repo#123</code>.</p> <p><img src="https://github.com/user-attachments/assets/8adb2498-a361-4749-8e98-02f17d4f9062" alt="table_with_footer_auto_links_short" /></p> <h1>Extra</h1> <p>Also, we introduced <code>WithTableWrap</code>, so you can disable table text wrapping if really want:</p> <pre lang="go"><code>r, err := glamour.NewTermRenderer(glamour.WithTableWrap(false)) if err != nil { ... } <p>out, err := r.RenderBytes(in)<br /> if err != nil { ... }</p> <p>fmt.Fprintf(os.Stdout, "%s\n", out)<br /> </code></pre></p> <h2>Changelog</h2> <h3>New Features</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/charmbracelet/glamour/commit/05ee9b5f4dcf3e4426c4ba41e1f9d7ea4f34d603"><code>05ee9b5</code></a> v0.10.0</li> <li><a href="https://github.com/charmbracelet/glamour/commit/c9af0458d403e584402ff683e0e8403a194d73d3"><code>c9af045</code></a> feat(tables): format github links inside tables in a more readable manner</li> <li><a href="https://github.com/charmbracelet/glamour/commit/f2eb484a992f6a31bad968205b6d63719b8c7fa2"><code>f2eb484</code></a> feat: add autolink package with patterns for more readable github urls</li> <li><a href="https://github.com/charmbracelet/glamour/commit/9d873734c11cf9d1e29853643a751624042df3b0"><code>9d87373</code></a> feat(table): pad position on table link list</li> <li><a href="https://github.com/charmbracelet/glamour/commit/a11e9a0c3a66a55d411a0aa4dcd6685d4ba9d823"><code>a11e9a0</code></a> feat(table): show position of link also inside the table</li> <li><a href="https://github.com/charmbracelet/glamour/commit/42f47a22f34bbbf73421210e7aff4f6438ffd052"><code>42f47a2</code></a> feat(table): prefix all links with the position in the footer</li> <li><a href="https://github.com/charmbracelet/glamour/commit/61cfc45c6bcd582a4d0ca810690d668f276ede13"><code>61cfc45</code></a> feat(table): add ability to render links at the bottom</li> <li><a href="https://github.com/charmbracelet/glamour/commit/5437e4a1a7dfc095a4afe063feaab079ab5a9629"><code>5437e4a</code></a> fix: ensure that prop is always cleared</li> <li><a href="https://github.com/charmbracelet/glamour/commit/60534f9196f23ed0849ba1ac05df41325d8968b5"><code>60534f9</code></a> chore(deps): bump golang.org/x/term from 0.30.0 to 0.31.0 (<a href="https://redirect.github.com/charmbracelet/glamour/issues/418">#418</a>)</li> <li><a href="https://github.com/charmbracelet/glamour/commit/606f55a8d8fe2adc7251ad2e269fe9f4a32a0172"><code>606f55a</code></a> chore(deps): bump golang.org/x/text from 0.23.0 to 0.24.0 (<a href="https://redirect.github.com/charmbracelet/glamour/issues/419">#419</a>)</li> <li>Additional commits viewable in <a href="https://github.com/charmbracelet/glamour/compare/v0.9.1...v0.10.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |