Skip to content

chore(deps): bump the dependencies group with 7 updates#94

Merged
ar27111994 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-3413b78355
May 25, 2026
Merged

chore(deps): bump the dependencies group with 7 updates#94
ar27111994 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-3413b78355

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 23, 2026

Bumps the dependencies group with 7 updates:

Package From To
apify 3.7.1 3.7.2
axios 1.16.0 1.16.1
@apify/actor-memory-expression 0.1.16 0.1.17
@apify/input_secrets 1.2.36 1.2.41
@types/node 25.6.2 25.9.1
eslint 10.3.0 10.4.0
lint-staged 17.0.3 17.0.5

Updates apify from 3.7.1 to 3.7.2

Changelog

Sourced from apify's changelog.

3.7.2 (2026-05-11)

🐛 Bug Fixes

Commits
  • 9098349 chore(release): set package version to 3.7.2 and update changelog [skip ci]
  • 2c1a2a8 fix: drop only-allow preinstall, enforce pnpm via devEngines (#606)
  • 776991b chore: Automatic theme updating workflow [skip ci]
  • a3dbd25 chore: Automatic theme updating workflow [skip ci]
  • 8b62c69 chore(deps): bump axios/postcss/basic-ftp + serialize-javascript override (#605)
  • 88525d6 ci: use pnpm for docs versioning step in release workflow (#604)
  • bc1467f docs: update codeowners (#602)
  • 3a91422 chore: Automatic theme updating workflow [skip ci]
  • cb59c5e chore: migrate to oxfmt (#600)
  • 11fd666 chore(build): clean tsconfig.build.tsbuildinfo so re-builds emit (#601)
  • Additional commits viewable in compare view

Updates axios from 1.16.0 to 1.16.1

Release notes

Sourced from axios's releases.

v1.16.1 — May 13, 2026

This release ships a defence-in-depth fix for prototype pollution in formDataToJSON, hardens proxy and CI workflows, restores Webpack 4 compatibility for the fetch adapter, and includes several small bug fixes and maintenance improvements.

🔒 Security Fixes

  • Prototype Pollution Defence-in-Depth: Hardened formDataToJSON against already-polluted Object.prototype by walking own properties only, so attacker-controlled keys inherited from a poisoned prototype cannot propagate through deserialization. (#7413)
  • Proxy Cleartext Leak: Fixed an issue where HTTPS request data could be transmitted in cleartext to an HTTP proxy under certain configurations. (#10858)
  • CI Cache Removal: Removed all GitHub Actions caches as a defence-in-depth measure against cache poisoning vectors in the build pipeline. (#10882)

🐛 Bug Fixes

  • Data URI Parsing: Updated the fromDataURI regex to match RFC 2397 more strictly, fixing edge cases in data: URL handling. (#10829)
  • Unicode Headers: Preserved Unicode header values when running through request interceptors, so non-ASCII header content is no longer corrupted before dispatch. (#10850)
  • XHR Upload Progress: Guarded against malformed ProgressEvent payloads emitted by some environments during XHR upload, preventing crashes when loaded / total are missing or invalid. (#10868)
  • Webpack 4 Fetch Adapter: Fixed an "unexpected token" error caused by syntax in the fetch adapter that Webpack 4 could not parse, restoring compatibility for legacy bundler users. (#10864)
  • Type Definitions: Made parseReviver context.source optional in the type definitions to align with the ES2023 specification. (#10837)
  • URL Object Support Reverted: Reverted the change that allowed passing a URL object as config.url (originally #10866) due to regressions; this support will be reintroduced in a later release once the underlying issues are addressed. (#10874)

🔧 Maintenance & Chores

  • Cycle Detection Refactor: Replaced the array-based cycle tracker in toJSONObject with a WeakSet, improving performance and memory behaviour on large nested structures. (#10832)
  • composeSignals Cleanup: Refactored composeSignals to use a clearer early-return structure, simplifying the cancellation/abort composition path. (#10844)
  • AI Readiness & Repo Docs: Added AGENTS.md and related contributor-guide updates for both human and AI agents, plus post-release documentation improvements. (#10835, #10841)
  • Docs Improvements: Clarified the GET request example, fixed the interceptor eject example to reference the correct instance, and corrected the Buzzoid sponsor description in the README. (#10836, #10853, #10856)
  • Sponsorship Tooling: Fixed empty sponsor arrays in the sponsor processing script, added the ability to inject additional sponsors, updated the sponsorship link, and added a Twicsy advertisement entry. (#10843, #10859, #10869)
  • Dependencies: Bumped @commitlint/cli from 20.5.0 to 20.5.2. (#10846)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

Changelog

Sourced from axios's changelog.

v1.16.1 — May 13, 2026

This release ships a defence-in-depth fix for prototype pollution in formDataToJSON, hardens proxy and CI workflows, restores Webpack 4 compatibility for the fetch adapter, and includes several small bug fixes and maintenance improvements.

🔒 Security Fixes

  • Prototype Pollution Defence-in-Depth: Hardened formDataToJSON against already-polluted Object.prototype by walking own properties only, so attacker-controlled keys inherited from a poisoned prototype cannot propagate through deserialization. (#7413)
  • Proxy Cleartext Leak: Fixed an issue where HTTPS request data could be transmitted in cleartext to an HTTP proxy under certain configurations. (#10858)
  • CI Cache Removal: Removed all GitHub Actions caches as a defence-in-depth measure against cache poisoning vectors in the build pipeline. (#10882)

🐛 Bug Fixes

  • Data URI Parsing: Updated the fromDataURI regex to match RFC 2397 more strictly, fixing edge cases in data: URL handling. (#10829)
  • Unicode Headers: Preserved Unicode header values when running through request interceptors, so non-ASCII header content is no longer corrupted before dispatch. (#10850)
  • XHR Upload Progress: Guarded against malformed ProgressEvent payloads emitted by some environments during XHR upload, preventing crashes when loaded / total are missing or invalid. (#10868)
  • Webpack 4 Fetch Adapter: Fixed an "unexpected token" error caused by syntax in the fetch adapter that Webpack 4 could not parse, restoring compatibility for legacy bundler users. (#10864)
  • Type Definitions: Made parseReviver context.source optional in the type definitions to align with the ES2023 specification. (#10837)
  • URL Object Support Reverted: Reverted the change that allowed passing a URL object as config.url (originally #10866) due to regressions; this support will be reintroduced in a later release once the underlying issues are addressed. (#10874)

🔧 Maintenance & Chores

  • Cycle Detection Refactor: Replaced the array-based cycle tracker in toJSONObject with a WeakSet, improving performance and memory behaviour on large nested structures. (#10832)
  • composeSignals Cleanup: Refactored composeSignals to use a clearer early-return structure, simplifying the cancellation/abort composition path. (#10844)
  • AI Readiness & Repo Docs: Added AGENTS.md and related contributor-guide updates for both human and AI agents, plus post-release documentation improvements. (#10835, #10841)
  • Docs Improvements: Clarified the GET request example, fixed the interceptor eject example to reference the correct instance, and corrected the Buzzoid sponsor description in the README. (#10836, #10853, #10856)
  • Sponsorship Tooling: Fixed empty sponsor arrays in the sponsor processing script, added the ability to inject additional sponsors, updated the sponsorship link, and added a Twicsy advertisement entry. (#10843, #10859, #10869)
  • Dependencies: Bumped @commitlint/cli from 20.5.0 to 20.5.2. (#10846)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

Commits
  • 1337d6b chore(release): prepare release 1.16.1 (#10877)
  • 858a790 fix: remove all caches (#10882)
  • 34adfd9 revert: "fix: support URL object as config.url input (#10866)" (#10874)
  • 847d89b fix: support URL object as config.url input (#10866)
  • 4094886 fix(progress): guard malformed XHR upload events (#10868)
  • 44f0c5b chore: change sponsorship link and add Twicsy advertisement (#10869)
  • 64e1095 chore: update PR and issue template to use h2 (#10865)
  • 3e6b4e1 fix: error unexpected token in fetch JS compatibility issue with Webpack 4 (#...
  • c4453ba fix: add the ability to add additional sponsors to the process sponsors scrip...
  • caa00a9 fix: https data in cleartext to proxy (#10858)
  • Additional commits viewable in compare view

Updates @apify/actor-memory-expression from 0.1.16 to 0.1.17

Release notes

Sourced from @​apify/actor-memory-expression's releases.

@​apify/actor-memory-expression@​0.1.17

0.1.17 (2026-05-22)

Note: Version bump only for package @​apify/actor-memory-expression

Changelog

Sourced from @​apify/actor-memory-expression's changelog.

apify-shared monorepo

apify-shared is now an independently versioned monorepo.

This file is generated.

See the changelogs of each package:

package version changelog
@apify/actor-memory-expression 0.1.17 CHANGELOG
@apify/consts 2.53.2 CHANGELOG
@apify/datastructures 2.0.6 CHANGELOG
@apify/git 2.1.6 CHANGELOG
@apify/image_proxy_client 2.0.4 CHANGELOG
@apify/input_schema 3.28.11 CHANGELOG
@apify/input_secrets 1.2.41 CHANGELOG
@apify/json_schemas 0.16.8 CHANGELOG
@apify/log 2.5.40 CHANGELOG
@apify/markdown 3.0.65 CHANGELOG
@apify/payment_qr_codes 0.2.2 CHANGELOG
@apify/pseudo_url 2.0.81 CHANGELOG
@apify/timeout 0.3.5 CHANGELOG
@apify/utilities 2.32.0 CHANGELOG
Commits
  • 98f72db chore: release [skip ci]
  • b46f967 fix: enforce strict APIFY_ID_REGEX validation with anchors (#640)
  • 62d7afb chore: update root lock file and changelog [skip ci]
  • 544e942 chore: release [skip ci]
  • 54040a1 chore: extract username validation to dedicated module (#638)
  • ca5f835 chore: update root lock file and changelog [skip ci]
  • af867e3 chore: release [skip ci]
  • 08fa33e feat: Add new forbidden username filters (#637)
  • 0e93723 chore: Update actions from apify/actions [internal] (#636)
  • 3965e0d chore: Replace calling reusable actions from apify/workflows/... to `apify/...
  • Additional commits viewable in compare view

Updates @apify/input_secrets from 1.2.36 to 1.2.41

Release notes

Sourced from @​apify/input_secrets's releases.

@​apify/input_secrets@1.2.41

1.2.41 (2026-05-22)

Note: Version bump only for package @​apify/input_secrets

@​apify/input_secrets@1.2.40

1.2.40 (2026-05-22)

Note: Version bump only for package @​apify/input_secrets

@​apify/input_secrets@1.2.39

1.2.39 (2026-05-21)

Note: Version bump only for package @​apify/input_secrets

@​apify/input_secrets@1.2.38

1.2.38 (2026-05-18)

Note: Version bump only for package @​apify/input_secrets

@​apify/input_secrets@1.2.37

1.2.37 (2026-05-11)

Note: Version bump only for package @​apify/input_secrets

Changelog

Sourced from @​apify/input_secrets's changelog.

apify-shared monorepo

apify-shared is now an independently versioned monorepo.

This file is generated.

See the changelogs of each package:

package version changelog
@apify/actor-memory-expression 0.1.17 CHANGELOG
@apify/consts 2.53.2 CHANGELOG
@apify/datastructures 2.0.6 CHANGELOG
@apify/git 2.1.6 CHANGELOG
@apify/image_proxy_client 2.0.4 CHANGELOG
@apify/input_schema 3.28.11 CHANGELOG
@apify/input_secrets 1.2.41 CHANGELOG
@apify/json_schemas 0.16.8 CHANGELOG
@apify/log 2.5.40 CHANGELOG
@apify/markdown 3.0.65 CHANGELOG
@apify/payment_qr_codes 0.2.2 CHANGELOG
@apify/pseudo_url 2.0.81 CHANGELOG
@apify/timeout 0.3.5 CHANGELOG
@apify/utilities 2.32.0 CHANGELOG
Commits
  • e568dd6 chore: release [skip ci]
  • c452c24 feat: expand forbidden usernames list and improve boundary checking (#639)
  • 51d9ade chore: update root lock file and changelog [skip ci]
  • 98f72db chore: release [skip ci]
  • b46f967 fix: enforce strict APIFY_ID_REGEX validation with anchors (#640)
  • 62d7afb chore: update root lock file and changelog [skip ci]
  • 544e942 chore: release [skip ci]
  • 54040a1 chore: extract username validation to dedicated module (#638)
  • ca5f835 chore: update root lock file and changelog [skip ci]
  • af867e3 chore: release [skip ci]
  • Additional commits viewable in compare view

Updates @types/node from 25.6.2 to 25.9.1

Commits

Updates eslint from 10.3.0 to 10.4.0

Release notes

Sourced from eslint's releases.

v10.4.0

Features

  • 1a45ec5 feat: check sequence expressions in for-direction (#20701) (kuldeep kumar)
  • 450040b feat: add includeIgnoreFile() to eslint/config (#20735) (Kirk Waiblinger)

Bug Fixes

  • 544c0c3 fix: escape code path DOT labels in debug output (#20866) (Pixel998)
  • 6799431 fix: update dependency @​eslint/config-helpers to ^0.6.0 (#20850) (renovate[bot])
  • f078fef fix: handle non-array deprecated rule replacements (#20825) (xbinaryx)

Documentation

  • 7e52a71 docs: add mention of @eslint-react/eslint-plugin (#20869) (Pavel)
  • db3468b docs: tweak wording around ambiguous CJS-vs-ESM config (#20865) (Kirk Waiblinger)
  • 9084664 docs: Update README (GitHub Actions Bot)
  • 9cc7387 docs: Update README (GitHub Actions Bot)
  • 3d7b548 docs: Update README (GitHub Actions Bot)
  • 191ec3c docs: Update README (GitHub Actions Bot)

Chores

  • 6616856 chore: upgrade knip to v6 (#20875) (Pixel998)
  • d13b084 ci: ensure auto-created PRs run CI (#20860) (lumir)
  • e71c7af ci: bump pnpm/action-setup from 6.0.5 to 6.0.7 (#20862) (dependabot[bot])
  • d84393d test: add unit tests for SuppressionsService.applySuppressions() (#20863) (kuldeep kumar)
  • 24db8cb test: add tests for SuppressionsService.save() (#20802) (kuldeep kumar)
  • 2ef0549 chore: update ecosystem plugins (#20857) (github-actions[bot])
  • a429791 ci: remove eslint-webpack-plugin types integration test (#20668) (Milos Djermanovic)
  • 9e37386 chore: replace recast with range approach in code-sample-minimizer (#20682) (Copilot)
  • 0dd1f9f test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#20845) (Francesco Trotta)
  • 9da3c7b refactor: remove deprecated meta.language and migrate meta.dialects (#20716) (Pixel998)
  • 2099ed1 refactor: add meta.defaultOptions to more rules, enable linting (#20800) (xbinaryx)
  • f1dfbc9 chore: update ecosystem plugins (#20836) (github-actions[bot])
  • c759413 ci: bump pnpm/action-setup from 6.0.3 to 6.0.5 (#20843) (dependabot[bot])
  • 5b817d6 test: add unit tests for lib/shared/ast-utils (#20838) (kuldeep kumar)
  • 1c13ae3 test: add unit tests for lib/shared/severity (#20835) (kuldeep kumar)
Commits

Updates lint-staged from 17.0.3 to 17.0.5

Release notes

Sourced from lint-staged's releases.

v17.0.5

Patch Changes

  • #1792 1f67271 - Correctly set the --max-arg-length default value based on the running platform. This controls how very long lists of staged files are split into multiple chunks.

v17.0.4

Patch Changes

  • #1788 f95c1f8 - Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:

    • after editing <file> it is staged with git add <file>, and then committed with git commit
    • after editing <file> it is committed with git commit --all without explicit git add
    • after editing <file> it is committed with git commit <pathspec> without explicit git add

    There's new test cases which actually setup the Git pre_commit hook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.

Changelog

Sourced from lint-staged's changelog.

17.0.5

Patch Changes

  • #1792 1f67271 - Correctly set the --max-arg-length default value based on the running platform. This controls how very long lists of staged files are split into multiple chunks.

17.0.4

Patch Changes

  • #1788 f95c1f8 - Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:

    • after editing <file> it is staged with git add <file>, and then committed with git commit
    • after editing <file> it is committed with git commit --all without explicit git add
    • after editing <file> it is committed with git commit <pathspec> without explicit git add

    There's new test cases which actually setup the Git pre_commit hook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.

Commits
  • cbd822e Merge pull request #1793 from lint-staged/changeset-release/main
  • 1911244 chore(changeset): release
  • 7339d7d Merge pull request #1792 from lint-staged/fix-max-arg-length-default
  • 1f67271 fix: default maxArgLength to undefined instead of NaN when parsing cli ...
  • 2862964 Merge pull request #1789 from lint-staged/changeset-release/main
  • c9ecd54 chore(changeset): release
  • cc6b51a Merge pull request #1788 from lint-staged/fix-update-index-again
  • f95c1f8 fix: update both default index.lock and non-standard lock when latter exists
  • f44ee68 Merge pull request #1786 from lint-staged/update-repo-url
  • a61cf18 build(deps): update dependencies
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <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

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [apify](https://github.com/apify/apify-sdk-js) | `3.7.1` | `3.7.2` |
| [axios](https://github.com/axios/axios) | `1.16.0` | `1.16.1` |
| [@apify/actor-memory-expression](https://github.com/apify/apify-shared-js) | `0.1.16` | `0.1.17` |
| [@apify/input_secrets](https://github.com/apify/apify-shared-js) | `1.2.36` | `1.2.41` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.6.2` | `25.9.1` |
| [eslint](https://github.com/eslint/eslint) | `10.3.0` | `10.4.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.3` | `17.0.5` |


Updates `apify` from 3.7.1 to 3.7.2
- [Release notes](https://github.com/apify/apify-sdk-js/releases)
- [Changelog](https://github.com/apify/apify-sdk-js/blob/master/CHANGELOG.md)
- [Commits](apify/apify-sdk-js@v3.7.1...v3.7.2)

Updates `axios` from 1.16.0 to 1.16.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.16.0...v1.16.1)

Updates `@apify/actor-memory-expression` from 0.1.16 to 0.1.17
- [Release notes](https://github.com/apify/apify-shared-js/releases)
- [Changelog](https://github.com/apify/apify-shared-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/apify/apify-shared-js/compare/@apify/actor-memory-expression@0.1.16...@apify/actor-memory-expression@0.1.17)

Updates `@apify/input_secrets` from 1.2.36 to 1.2.41
- [Release notes](https://github.com/apify/apify-shared-js/releases)
- [Changelog](https://github.com/apify/apify-shared-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/apify/apify-shared-js/compare/@apify/input_secrets@1.2.36...@apify/input_secrets@1.2.41)

Updates `@types/node` from 25.6.2 to 25.9.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 10.3.0 to 10.4.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.3.0...v10.4.0)

Updates `lint-staged` from 17.0.3 to 17.0.5
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.3...v17.0.5)

---
updated-dependencies:
- dependency-name: apify
  dependency-version: 3.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: axios
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@apify/actor-memory-expression"
  dependency-version: 0.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@apify/input_secrets"
  dependency-version: 1.2.41
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint
  dependency-version: 10.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-version: 17.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 23, 2026
@greptile-apps
Copy link
Copy Markdown

greptile-apps Bot commented May 23, 2026

No reviewable files after applying ignore patterns.

@socket-security
Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​apify/​actor-memory-expression@​0.1.16 ⏵ 0.1.17731007699 +1100
Updated@​apify/​input_secrets@​1.2.36 ⏵ 1.2.419910077100 +1100
Updated@​types/​node@​25.6.2 ⏵ 25.9.1100 +110081 +196100
Updatedaxios@​1.16.0 ⏵ 1.16.185 -110010094100
Updatedeslint@​10.3.0 ⏵ 10.4.08910010095 -1100
Updatedapify@​3.7.1 ⏵ 3.7.297 +610091100 +1100
Updatedlint-staged@​17.0.3 ⏵ 17.0.5100 +110010097 +1100

View full report

@ar27111994 ar27111994 merged commit 2c85447 into main May 25, 2026
13 of 14 checks passed
@ar27111994 ar27111994 deleted the dependabot/npm_and_yarn/dependencies-3413b78355 branch May 25, 2026 13:51
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant