chore(deps): bump the npm-minor-and-patch group with 7 updates - #45
Closed
dependabot[bot] wants to merge 1 commit into
Closed
chore(deps): bump the npm-minor-and-patch group with 7 updates#45dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps the npm-minor-and-patch group with 7 updates: | Package | From | To | | --- | --- | --- | | [@hono/zod-validator](https://github.com/honojs/middleware/tree/HEAD/packages/zod-validator) | `0.7.6` | `0.8.0` | | [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.26.0` | `1.29.0` | | [agents](https://github.com/cloudflare/agents/tree/HEAD/packages/agents) | `0.7.9` | `0.13.3` | | [hono](https://github.com/honojs/hono) | `4.12.22` | `4.12.23` | | [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) | `0.16.9` | `0.16.10` | | [vue](https://github.com/vuejs/core) | `3.5.33` | `3.5.35` | | [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.94.0` | `4.95.0` | Updates `@hono/zod-validator` from 0.7.6 to 0.8.0 - [Release notes](https://github.com/honojs/middleware/releases) - [Changelog](https://github.com/honojs/middleware/blob/main/packages/zod-validator/CHANGELOG.md) - [Commits](https://github.com/honojs/middleware/commits/@hono/zod-validator@0.8.0/packages/zod-validator) Updates `@modelcontextprotocol/sdk` from 1.26.0 to 1.29.0 - [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases) - [Commits](modelcontextprotocol/typescript-sdk@v1.26.0...v1.29.0) Updates `agents` from 0.7.9 to 0.13.3 - [Release notes](https://github.com/cloudflare/agents/releases) - [Changelog](https://github.com/cloudflare/agents/blob/main/packages/agents/CHANGELOG.md) - [Commits](https://github.com/cloudflare/agents/commits/agents@0.13.3/packages/agents) Updates `hono` from 4.12.22 to 4.12.23 - [Release notes](https://github.com/honojs/hono/releases) - [Commits](honojs/hono@v4.12.22...v4.12.23) Updates `@cloudflare/vitest-pool-workers` from 0.16.9 to 0.16.10 - [Release notes](https://github.com/cloudflare/workers-sdk/releases) - [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md) - [Commits](https://github.com/cloudflare/workers-sdk/commits/HEAD/packages/vitest-pool-workers) Updates `vue` from 3.5.33 to 3.5.35 - [Release notes](https://github.com/vuejs/core/releases) - [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md) - [Commits](vuejs/core@v3.5.33...v3.5.35) Updates `wrangler` from 4.94.0 to 4.95.0 - [Release notes](https://github.com/cloudflare/workers-sdk/releases) - [Commits](https://github.com/cloudflare/workers-sdk/commits/HEAD/packages/wrangler) --- updated-dependencies: - dependency-name: "@hono/zod-validator" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm-minor-and-patch - dependency-name: "@modelcontextprotocol/sdk" dependency-version: 1.29.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm-minor-and-patch - dependency-name: agents dependency-version: 0.13.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm-minor-and-patch - dependency-name: hono dependency-version: 4.12.23 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-minor-and-patch - dependency-name: "@cloudflare/vitest-pool-workers" dependency-version: 0.16.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-and-patch - dependency-name: vue dependency-version: 3.5.35 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-and-patch - dependency-name: wrangler dependency-version: 4.95.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Author
|
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
dependabot
Bot
deleted the
dependabot/npm_and_yarn/npm-minor-and-patch-9717d24b8a
branch
May 29, 2026 06:55
3 tasks
xfodev
added a commit
to xfodev/loopover
that referenced
this pull request
Jul 20, 2026
…sing form in extractLinkedIssueNumbers self-review-context.ts's linked-issue extraction claimed to mirror src/db/repositories.ts's extractLinkedIssueNumbers but diverged in the two ways the host's own comments warn against (JSONbored#7527): 1. It stripped inline code spans by `body.replace(/`[^`]*`/g, "")` before matching. Removing a span leaves the surrounding whitespace, so "Fixes `x` JSONbored#45" collapsed to "Fixes JSONbored#45" and fabricated a link the original text never had. Switched to the host's byte-range approach: compute each code span's [start,end) and reject any keyword match whose range overlaps one, keeping the original text intact. 2. Its pattern recognized only the bare `#N` and qualified `owner/repo#N` forms. Added the full-URL closing form `KEYWORD https://github.com/owner/repo/issues/N` (and `www.`), same-repo scoped exactly like the qualified form -- a miner PR closing an issue via a pasted URL previously undercounted its own linked issues in the pre-submission self-review, the same gap the host fixed for the gate. The bare and qualified forms keep identical semantics; this is an additive parity fix. The function is now exported so the regression cases assert it directly. This lighter port intentionally omits the host's 50-item overflow cap + dedup set (the miner scans only its own small PR body), noted in the comment. Closes JSONbored#7527
4 tasks
loopover-orb Bot
pushed a commit
that referenced
this pull request
Jul 20, 2026
…sing form in extractLinkedIssueNumbers (#7550) self-review-context.ts's linked-issue extraction claimed to mirror src/db/repositories.ts's extractLinkedIssueNumbers but diverged in the two ways the host's own comments warn against (#7527): 1. It stripped inline code spans by `body.replace(/`[^`]*`/g, "")` before matching. Removing a span leaves the surrounding whitespace, so "Fixes `x` #45" collapsed to "Fixes #45" and fabricated a link the original text never had. Switched to the host's byte-range approach: compute each code span's [start,end) and reject any keyword match whose range overlaps one, keeping the original text intact. 2. Its pattern recognized only the bare `#N` and qualified `owner/repo#N` forms. Added the full-URL closing form `KEYWORD https://github.com/owner/repo/issues/N` (and `www.`), same-repo scoped exactly like the qualified form -- a miner PR closing an issue via a pasted URL previously undercounted its own linked issues in the pre-submission self-review, the same gap the host fixed for the gate. The bare and qualified forms keep identical semantics; this is an additive parity fix. The function is now exported so the regression cases assert it directly. This lighter port intentionally omits the host's 50-item overflow cap + dedup set (the miner scans only its own small PR body), noted in the comment. Closes #7527
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the npm-minor-and-patch group with 7 updates:
0.7.60.8.01.26.01.29.00.7.90.13.34.12.224.12.230.16.90.16.103.5.333.5.354.94.04.95.0Updates
@hono/zod-validatorfrom 0.7.6 to 0.8.0Release notes
Sourced from @hono/zod-validator's releases.
Changelog
Sourced from @hono/zod-validator's changelog.
Commits
a08b023Version Packages (#1887)e90e4fbfeat(zod-validator): surface the default 400 on the no-hook overload and keep...e762ac0feat(eslint): ignoring variables and parameters prefixed with_(#1772)475cd12chore: update typescript to5.9.3(#1741)96ae310chore: update Zod/Valibot import examples to use namespace imports in docs an...fbec266chore(deps-dev): bump hono from 4.11.3 to 4.11.4 (#1710)c7edf1echore(deps-dev): upgrade@cloudflare/vitest-pool-workersandvitest(#1714)03a28c5fix: less strict template expressions (#1681)1f8372echore(typescript): add@tsconfig/strictest(#1679)49db969chore(eslint): update suppressions (#1678)Updates
@modelcontextprotocol/sdkfrom 1.26.0 to 1.29.0Release notes
Sourced from @modelcontextprotocol/sdk's releases.
... (truncated)
Commits
e12cbd7chore: bump version to 1.29.0 (#1820)3913fd4fix(stdio): always set windowsHide on Windows, not just in Electron (#1640)5608e78[v1.x backport] Allow servers / clients to advertise extensions in the capabi...7213816v1.x #1623 follow up -add missing types to package.json (#1773)364f38cv1.x npm audit fix (#1780)c95cc09Add typings exports (#1623)ddadaa6[v1.x] fix: add missing size field to ResourceSchema (#1575)2a15851[v1.x] fix: disallow null (infinite) requested TTL (#1339)13e30f1fix: treat v1.x as primary branch for npm latest tag (backport #1577) (#1749)a056569chore: bump version to 1.28.0 (#1746)Updates
agentsfrom 0.7.9 to 0.13.3Release notes
Sourced from agents's releases.
... (truncated)
Changelog
Sourced from agents's changelog.
... (truncated)
Commits
b504eedVersion Packages (#1573)a1cd51bFix session auto-compaction token estimates (#1580)6fa7fd7Fix facet identity self-deadlocks (#1578)d0b4d0efix: generate valid default workflow IDs (#1579)3cfa498fix: fire chat responses for errors returned before parts are returned (#1567)f942ffefeat: Stash chat metadata for recovery before inference starts (#1559)5beeeb4Version Packages (#1572)4f14b9cAdd Chat SDK state adapter and messenger admin UI (#1570)a5bc238Version Packages (#1562)32cde40Add Chat SDK messenger example with managed fiber durability (#1563)Updates
honofrom 4.12.22 to 4.12.23Release notes
Sourced from hono's releases.
Commits
83bfb3b4.12.23bcd290afix(utils/ipaddr): do not compress a single 0 group to::(#4971)c968177feat(compress): add contentTypeFilter option and `COMPRESSIBLE_CONTENT_TYPE_R...0265a54docs(contribution): add AI Usage Policy (#4970)c84c5d2feat(context): export the Context class publicly (#4543)82dad62fix(serve-static): normalize all backslashes in file paths, not just the firs...Updates
@cloudflare/vitest-pool-workersfrom 0.16.9 to 0.16.10Changelog
Sourced from @cloudflare/vitest-pool-workers's changelog.
Commits
Updates
vuefrom 3.5.33 to 3.5.35Release notes
Sourced from vue's releases.
Changelog
Sourced from vue's changelog.
Commits
8be32d6release: v3.5.3580fc139fix(runtime-core): skip idle persisted transition hooks in keep-alive moves (...d6c7371ci: use backup action for size report commentsbb18dc8perf(runtime-dom): optimize array event handler dispatch (#14828)5734fe9perf(reactivity): skip type checks for cached proxies (#14860)584beb1fix(teleport): skip child unmount when pending mount discarded (#14876) (#14877)34a0dedfix(compiler-core): avoid double processing v-for keys with v-memo (#14861)170fc95fix(runtime-core): avoid repeated hydration mismatch checks (#14857)1b7a2ccperf(server-renderer): avoid materializing iterables in ssrRenderList (#14821)3d077f2fix(compiler-sfc): resolve top-level exports from files registered as global ...Updates
wranglerfrom 4.94.0 to 4.95.0Commits
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions