Skip to content

Bump disruptor from 1.2.20 to 1.2.21 - #585

Merged
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/com.conversantmedia-disruptor-1.2.21
Nov 19, 2022
Merged

Bump disruptor from 1.2.20 to 1.2.21#585
mergify[bot] merged 1 commit into
mainfrom
dependabot/maven/com.conversantmedia-disruptor-1.2.21

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Oct 24, 2022

Copy link
Copy Markdown
Contributor

Bumps disruptor from 1.2.20 to 1.2.21.

Release notes

Sourced from disruptor's releases.

1.2.21

maintenance release: dependabot

Commits
  • 0803a76 1.2.21: dependabot changes
  • 6dae053 Bump junit from 4.13.1 to 4.13.2
  • 3738429 Bump maven-resources-plugin from 2.6 to 3.3.0
  • 1f1b368 Bump cobertura-maven-plugin from 2.6 to 2.7
  • 395309b Bump nexus-staging-maven-plugin from 1.6.7 to 1.6.13
  • 7362b77 Bump maven-failsafe-plugin from 2.17 to 2.22.2
  • 1cebffe Bump actions/setup-java from 3.4.0 to 3.6.0
  • a9af680 Bump actions/checkout from 2 to 3.1.0
  • d2348be Bump maven-assembly-plugin from 2.4 to 3.4.2
  • 708ab52 Bump maven-surefire-report-plugin from 2.17 to 2.22.2
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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 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)
Bumps [disruptor](https://github.com/conversant/disruptor) from 1.2.20 to 1.2.21.
- [Release notes](https://github.com/conversant/disruptor/releases)
- [Changelog](https://github.com/conversant/disruptor/blob/master/RELEASE)
- [Commits](conversant/disruptor@1.2.20...1.2.21)

---
updated-dependencies:
- dependency-name: com.conversantmedia:disruptor
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java labels Oct 24, 2022
@mergify
mergify Bot merged commit 089cc1c into main Nov 19, 2022
@dependabot
dependabot Bot deleted the dependabot/maven/com.conversantmedia-disruptor-1.2.21 branch November 19, 2022 09:34
mergify Bot added a commit that referenced this pull request May 24, 2026
…o 5.22.0 in /studio [skip ci]

Bumps [enhanced-resolve](https://github.com/webpack/enhanced-resolve) from 5.21.3 to 5.22.0.
Release notes

*Sourced from [enhanced-resolve's releases](https://github.com/webpack/enhanced-resolve/releases).*

> v5.22.0
> -------
>
> ### Minor Changes
>
> * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591))
>
> v5.21.6
> -------
>
> ### Patch Changes
>
> * Speed up alias resolution on the hot path. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589))
>
>   + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`.
>   + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup.
>
>   Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%.
>
> v5.21.5
> -------
>
> ### Patch Changes
>
> * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd))
>
> v5.21.4
> -------
>
> ### Patch Changes
>
> * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585))


Changelog

*Sourced from [enhanced-resolve's changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md).*

> 5.22.0
> ------
>
> ### Minor Changes
>
> * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591))
>
> 5.21.6
> ------
>
> ### Patch Changes
>
> * Speed up alias resolution on the hot path. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589))
>
>   + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`.
>   + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup.
>
>   Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%.
>
> 5.21.5
> ------
>
> ### Patch Changes
>
> * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd))
>
> 5.21.4
> ------
>
> ### Patch Changes
>
> * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585))


Commits

* [`25b923a`](webpack/enhanced-resolve@25b923a) chore(release): new release ([#592](https://redirect.github.com/webpack/enhanced-resolve/issues/592))
* [`a0f6257`](webpack/enhanced-resolve@a0f6257) feat: add exact option to CachedInputFileSystem#purge ([#591](https://redirect.github.com/webpack/enhanced-resolve/issues/591))
* [`658315c`](webpack/enhanced-resolve@658315c) chore(release): new release ([#590](https://redirect.github.com/webpack/enhanced-resolve/issues/590))
* [`7d8c24f`](webpack/enhanced-resolve@7d8c24f) perf: bucket alias options by first char & sort exports keys by priority ([#589](https://redirect.github.com/webpack/enhanced-resolve/issues/589))
* [`6a83888`](webpack/enhanced-resolve@6a83888) chore(release): new release ([#588](https://redirect.github.com/webpack/enhanced-resolve/issues/588))
* [`61f36fd`](webpack/enhanced-resolve@61f36fd) chore: add changelog entry
* [`9ceca83`](webpack/enhanced-resolve@9ceca83) fix: don't add configDir to modules when tsconfig has no baseUrl ([#587](https://redirect.github.com/webpack/enhanced-resolve/issues/587))
* [`e6f2158`](webpack/enhanced-resolve@e6f2158) chore(release): new release ([#586](https://redirect.github.com/webpack/enhanced-resolve/issues/586))
* [`ec533b6`](webpack/enhanced-resolve@ec533b6) fix: TsconfigPathsPlugin walks up parent directories when tsconfig is true (#...
* [`9e1c1e1`](webpack/enhanced-resolve@9e1c1e1) chore(deps): bump actions/create-github-app-token from 3.1.1 to 3.2.0 in the ...
* Additional commits viewable in [compare view](webpack/enhanced-resolve@v5.21.3...v5.22.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=enhanced-resolve&package-manager=npm\_and\_yarn&previous-version=5.21.3&new-version=5.22.0)](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)
---
Dependabot commands and options
  
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 show  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)
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…m.conversantmedia-disruptor-1.2.21

Bump disruptor from 1.2.20 to 1.2.21
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…o 5.22.0 in /studio [skip ci]

Bumps [enhanced-resolve](https://github.com/webpack/enhanced-resolve) from 5.21.3 to 5.22.0.
Release notes

*Sourced from [enhanced-resolve's releases](https://github.com/webpack/enhanced-resolve/releases).*

> v5.22.0
> -------
>
> ### Minor Changes
>
> * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591))
>
> v5.21.6
> -------
>
> ### Patch Changes
>
> * Speed up alias resolution on the hot path. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589))
>
>   + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`.
>   + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup.
>
>   Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%.
>
> v5.21.5
> -------
>
> ### Patch Changes
>
> * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd))
>
> v5.21.4
> -------
>
> ### Patch Changes
>
> * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [ArcadeData#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585))


Changelog

*Sourced from [enhanced-resolve's changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md).*

> 5.22.0
> ------
>
> ### Minor Changes
>
> * `CachedInputFileSystem#purge` accepts a second `{ exact?: boolean }` argument; `exact: true` removes only entries whose key matches `what` exactly instead of any entry whose key starts with `what`. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/pull/591))
>
> 5.21.6
> ------
>
> ### Patch Changes
>
> * Speed up alias resolution on the hot path. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/pull/589))
>
>   + `AliasPlugin` / `TsconfigPathsPlugin`: bucket compiled alias options by the first char code of `name`, so resolves skip options whose name can't possibly match the request's first char. Gated to cases with 2+ distinct first chars so degenerate single-bucket lists (e.g. long alias chains) don't pay for the `Map.get`.
>   + `TsconfigPathsPlugin`: memoize `_selectPathsDataForContext(map, requestPath)` per map so the per-source-file `contextList` scan only runs once per directory. Gated to maps with 2+ contexts so single-context tsconfigs aren't penalized by the cache lookup.
>
>   Biggest wins on alias-heavy configs (300+ entries): `huge-alias-miss` +151%, `huge-alias-list` +126%, `alias-first-char-miss` +120%.
>
> 5.21.5
> ------
>
> ### Patch Changes
>
> * Don't add configDir to modules when tsconfig has no baseUrl. (by [`@​alexander-akait`](https://github.com/alexander-akait) in [`61f36fd`](webpack/enhanced-resolve@61f36fd))
>
> 5.21.4
> ------
>
> ### Patch Changes
>
> * When `tsconfig: true` is used, walk up parent directories to find `tsconfig.json`, matching TypeScript's own `findConfigFile` behavior. (by [`@​xiaoxiaojx`](https://github.com/xiaoxiaojx) in [ArcadeData#585](https://redirect.github.com/webpack/enhanced-resolve/pull/585))


Commits

* [`25b923a`](webpack/enhanced-resolve@25b923a) chore(release): new release ([ArcadeData#592](https://redirect.github.com/webpack/enhanced-resolve/issues/592))
* [`a0f6257`](webpack/enhanced-resolve@a0f6257) feat: add exact option to CachedInputFileSystem#purge ([ArcadeData#591](https://redirect.github.com/webpack/enhanced-resolve/issues/591))
* [`658315c`](webpack/enhanced-resolve@658315c) chore(release): new release ([ArcadeData#590](https://redirect.github.com/webpack/enhanced-resolve/issues/590))
* [`7d8c24f`](webpack/enhanced-resolve@7d8c24f) perf: bucket alias options by first char & sort exports keys by priority ([ArcadeData#589](https://redirect.github.com/webpack/enhanced-resolve/issues/589))
* [`6a83888`](webpack/enhanced-resolve@6a83888) chore(release): new release ([#588](https://redirect.github.com/webpack/enhanced-resolve/issues/588))
* [`61f36fd`](webpack/enhanced-resolve@61f36fd) chore: add changelog entry
* [`9ceca83`](webpack/enhanced-resolve@9ceca83) fix: don't add configDir to modules when tsconfig has no baseUrl ([ArcadeData#587](https://redirect.github.com/webpack/enhanced-resolve/issues/587))
* [`e6f2158`](webpack/enhanced-resolve@e6f2158) chore(release): new release ([ArcadeData#586](https://redirect.github.com/webpack/enhanced-resolve/issues/586))
* [`ec533b6`](webpack/enhanced-resolve@ec533b6) fix: TsconfigPathsPlugin walks up parent directories when tsconfig is true (#...
* [`9e1c1e1`](webpack/enhanced-resolve@9e1c1e1) chore(deps): bump actions/create-github-app-token from 3.1.1 to 3.2.0 in the ...
* Additional commits viewable in [compare view](webpack/enhanced-resolve@v5.21.3...v5.22.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=enhanced-resolve&package-manager=npm\_and\_yarn&previous-version=5.21.3&new-version=5.22.0)](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)
---
Dependabot commands and options
  
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 show  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)
mergify Bot added a commit that referenced this pull request Aug 23, 2026
Bumps the github-actions group with 2 updates: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) and [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action).
Updates `docker/setup-buildx-action` from 4.2.0 to 4.3.0
Release notes

*Sourced from [docker/setup-buildx-action's releases](https://github.com/docker/setup-buildx-action/releases).*

> v4.3.0
> ------
>
> * Bump `@​docker/actions-toolkit` from 0.92.0 to 0.95.0 in [docker/setup-buildx-action#595](https://redirect.github.com/docker/setup-buildx-action/pull/595)
> * Bump brace-expansion from 1.1.13 to 1.1.18 in [docker/setup-buildx-action#600](https://redirect.github.com/docker/setup-buildx-action/pull/600)
> * Bump js-yaml from 5.2.0 to 5.3.0 in [docker/setup-buildx-action#585](https://redirect.github.com/docker/setup-buildx-action/pull/585)
> * Bump postcss from 8.5.10 to 8.5.25 in [docker/setup-buildx-action#598](https://redirect.github.com/docker/setup-buildx-action/pull/598)
> * Bump undici from 6.27.0 to 6.28.0 in [docker/setup-buildx-action#601](https://redirect.github.com/docker/setup-buildx-action/pull/601)
>
> **Full Changelog**: <docker/setup-buildx-action@v4.2.0...v4.3.0>


Commits

* [`37fe631`](docker/setup-buildx-action@37fe631) Merge pull request [#595](https://redirect.github.com/docker/setup-buildx-action/issues/595) from docker/dependabot/npm\_and\_yarn/docker/actions-to...
* [`b5c4f91`](docker/setup-buildx-action@b5c4f91) [dependabot skip] chore: update generated content
* [`3e93b63`](docker/setup-buildx-action@3e93b63) build(deps): bump `@​docker/actions-toolkit` from 0.92.0 to 0.95.0
* [`e527031`](docker/setup-buildx-action@e527031) Merge pull request [#600](https://redirect.github.com/docker/setup-buildx-action/issues/600) from docker/dependabot/npm\_and\_yarn/brace-expansion-1...
* [`c68814b`](docker/setup-buildx-action@c68814b) [dependabot skip] chore: update generated content
* [`3f891b0`](docker/setup-buildx-action@3f891b0) build(deps): bump brace-expansion from 1.1.13 to 1.1.18
* [`787db26`](docker/setup-buildx-action@787db26) Merge pull request [#585](https://redirect.github.com/docker/setup-buildx-action/issues/585) from docker/dependabot/npm\_and\_yarn/js-yaml-5.2.1
* [`f779368`](docker/setup-buildx-action@f779368) [dependabot skip] chore: update generated content
* [`7d5e604`](docker/setup-buildx-action@7d5e604) build(deps): bump js-yaml from 5.2.0 to 5.3.0
* [`292c2fb`](docker/setup-buildx-action@292c2fb) Merge pull request [#590](https://redirect.github.com/docker/setup-buildx-action/issues/590) from docker/dependabot/github\_actions/actions/setup-n...
* Additional commits viewable in [compare view](docker/setup-buildx-action@bb05f3f...37fe631)
  
Updates `anthropics/claude-code-action` from 1.0.192 to 1.0.198
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.198
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.197...v1.0.198>
>
> v1.0.197
> --------
>
> What's Changed
> --------------
>
> * fix: neutralize the checkout credential under actions/checkout v6+ include layout ([#1510](https://redirect.github.com/anthropics/claude-code-action/issues/1510)) by [`@​TemRevil`](https://github.com/TemRevil) in [anthropics/claude-code-action#1526](https://redirect.github.com/anthropics/claude-code-action/pull/1526)
>
> New Contributors
> ----------------
>
> * [`@​TemRevil`](https://github.com/TemRevil) made their first contribution in [anthropics/claude-code-action#1526](https://redirect.github.com/anthropics/claude-code-action/pull/1526)
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.196...v1.0.197>
>
> v1.0.196
> --------
>
> What's Changed
> --------------
>
> * fix(security): unify secret redaction in public comment outputs by [`@​Juwan-Hwang`](https://github.com/Juwan-Hwang) in [anthropics/claude-code-action#1693](https://redirect.github.com/anthropics/claude-code-action/pull/1693)
> * fix: strip unused ALL\_INPUTS environment variable from Claude subprocess env by [`@​Juwan-Hwang`](https://github.com/Juwan-Hwang) in [anthropics/claude-code-action#1692](https://redirect.github.com/anthropics/claude-code-action/pull/1692)
> * fix(github): match bot actors in comment filters using GraphQL \_\_typename by [`@​Neal006`](https://github.com/Neal006) in [anthropics/claude-code-action#1616](https://redirect.github.com/anthropics/claude-code-action/pull/1616)
>
> New Contributors
> ----------------
>
> * [`@​Juwan-Hwang`](https://github.com/Juwan-Hwang) made their first contribution in [anthropics/claude-code-action#1693](https://redirect.github.com/anthropics/claude-code-action/pull/1693)
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.195...v1.0.196>
>
> v1.0.195
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.194...v1.0.195>
>
> v1.0.194
> --------
>
> What's Changed
> --------------
>
> * Harden delete\_files MCP tool: validate paths within repo root (consistency with commit\_files) by [`@​GabrielOnRails`](https://github.com/GabrielOnRails) in [anthropics/claude-code-action#1636](https://redirect.github.com/anthropics/claude-code-action/pull/1636)
> * Only limit fetch depth when the checkout is already shallow by [`@​winklemad`](https://github.com/winklemad) in [anthropics/claude-code-action#1647](https://redirect.github.com/anthropics/claude-code-action/pull/1647)
> * fix(base-action): add ~/.local/bin to $GITHUB\_PATH after auto-install by [`@​anishesg`](https://github.com/anishesg) in [anthropics/claude-code-action#1643](https://redirect.github.com/anthropics/claude-code-action/pull/1643)
> * feat(context): include diffHunk in PR review comment context by [`@​rishavnaskar`](https://github.com/rishavnaskar) in [anthropics/claude-code-action#1584](https://redirect.github.com/anthropics/claude-code-action/pull/1584)
> * ci: skip Claude-backed test jobs on fork PRs by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1655](https://redirect.github.com/anthropics/claude-code-action/pull/1655)
> * fix: bump shell-quote to 1.8.4 to remediate CVE-2026-9277 by [`@​doshidhaval`](https://github.com/doshidhaval) in [anthropics/claude-code-action#1557](https://redirect.github.com/anthropics/claude-code-action/pull/1557)
> * fix(images): bound attachment downloads by [`@​abhinavkr26104`](https://github.com/abhinavkr26104) in [anthropics/claude-code-action#1625](https://redirect.github.com/anthropics/claude-code-action/pull/1625)
>
> New Contributors
> ----------------
>
> * [`@​GabrielOnRails`](https://github.com/GabrielOnRails) made their first contribution in [anthropics/claude-code-action#1636](https://redirect.github.com/anthropics/claude-code-action/pull/1636)
> * [`@​winklemad`](https://github.com/winklemad) made their first contribution in [anthropics/claude-code-action#1647](https://redirect.github.com/anthropics/claude-code-action/pull/1647)
> * [`@​doshidhaval`](https://github.com/doshidhaval) made their first contribution in [anthropics/claude-code-action#1557](https://redirect.github.com/anthropics/claude-code-action/pull/1557)
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.193...v1.0.194>
>
> v1.0.193
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1.0.192...v1.0.193>


Commits

* [`3f854a8`](anthropics/claude-code-action@3f854a8) chore: bump Claude Code to 2.1.238 and Agent SDK to 0.3.238
* [`5ee796a`](anthropics/claude-code-action@5ee796a) chore: bump Claude Code to 2.1.237 and Agent SDK to 0.3.237
* [`cff8d3c`](anthropics/claude-code-action@cff8d3c) fix(git-config): neutralize checkout credential in include-based config ([#1526](https://redirect.github.com/anthropics/claude-code-action/issues/1526))
* [`e2a4b76`](anthropics/claude-code-action@e2a4b76) chore: bump Claude Code to 2.1.236 and Agent SDK to 0.3.236
* [`65b50df`](anthropics/claude-code-action@65b50df) fix(github): match bot actors in comment filters using GraphQL \_\_typename ([#1](https://redirect.github.com/anthropics/claude-code-action/issues/1)...
* [`0a80d21`](anthropics/claude-code-action@0a80d21) fix: strip unused ALL\_INPUTS environment variable from Claude subprocess env ...
* [`54eadc2`](anthropics/claude-code-action@54eadc2) fix(security): unify secret redaction in public comment outputs ([#1693](https://redirect.github.com/anthropics/claude-code-action/issues/1693))
* [`d40ddef`](anthropics/claude-code-action@d40ddef) chore: bump Claude Code to 2.1.235 and Agent SDK to 0.3.235
* [`459ad35`](anthropics/claude-code-action@459ad35) chore: bump Claude Code to 2.1.234 and Agent SDK to 0.3.234
* [`d721746`](anthropics/claude-code-action@d721746) fix: bound image attachment downloads ([#1625](https://redirect.github.com/anthropics/claude-code-action/issues/1625))
* Additional commits viewable in [compare view](anthropics/claude-code-action@e63208c...3f854a8)
  
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)
---
Dependabot commands and options
  
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 show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will 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  minor version` will 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 ` 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 ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

1 participant