Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the npm-modules-updates group across 1 directory with 12 updates #1894

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the npm-modules-updates group with 12 updates in the /frontend/apps/remark42 directory:

Package From To
@github/markdown-toolbar-element 2.1.1 2.2.3
@github/text-expander-element 2.2.2 2.9.1
@ungap/custom-elements 1.1.0 1.3.0
clsx 1.2.1 2.1.1
core-js 3.23.4 3.40.0
node-emoji 1.11.0 2.2.0
@types/node-emoji 1.8.1 2.1.0
preact 10.6.2 10.25.4
react-intl 6.0.5 7.1.5
react-redux 8.0.2 9.2.0
redux 4.2.0 5.0.1
redux-thunk 2.4.1 3.1.0

Updates @github/markdown-toolbar-element from 2.1.1 to 2.2.3

Release notes

Sourced from @​github/markdown-toolbar-element's releases.

v2.2.3

What's Changed

Full Changelog: github/markdown-toolbar-element@v2.2.2...v2.2.3

v2.2.2

What's Changed

Full Changelog: github/markdown-toolbar-element@v2.2.1...v2.2.2

v2.2.1

What's Changed

New Contributors

Full Changelog: github/markdown-toolbar-element@v2.2.0...v2.2.1

v2.2.0

What's Changed

Full Changelog: github/markdown-toolbar-element@v2.1.1...v2.2.0

Commits
  • 9e1f966 Merge pull request #80 from github/fix-clicking-on-inner-elements-in-button
  • fe5ae6e fix clicking on inner elements in button
  • 21ff272 Merge pull request #79 from github/allow-clicking-on-svgs-in-buttons
  • 2733d07 allow clicking on svgs in buttons
  • 24f4ce9 Merge pull request #77 from github/dependabot/npm_and_yarn/json5-1.0.2
  • 78d4a27 Merge pull request #78 from github/dependabot/npm_and_yarn/socket.io-parser-4...
  • 5abbde7 Bump socket.io-parser from 4.2.1 to 4.2.4
  • e9bcca1 Bump json5 from 1.0.1 to 1.0.2
  • aaef930 Merge pull request #76 from github/dependabot/npm_and_yarn/follow-redirects-1...
  • 06cbebb Bump follow-redirects from 1.15.2 to 1.15.4
  • Additional commits viewable in compare view

Updates @github/text-expander-element from 2.2.2 to 2.9.1

Release notes

Sourced from @​github/text-expander-element's releases.

v2.9.1

What's Changed

Full Changelog: github/text-expander-element@v2.9.0...v2.9.1

v2.9.0

What's Changed

New Contributors

Full Changelog: github/text-expander-element@v2.8.0...v2.9.0

v2.8.0

What's Changed

New Contributors

Full Changelog: github/text-expander-element@v2.7.2...v2.8.0

v2.7.2

What's Changed

Bug fixes

Dependency updates

Full Changelog: github/text-expander-element@v2.7.1...v2.7.2

v2.7.1

What's Changed

... (truncated)

Commits
  • 6df4207 Re-export the types in index.d.ts (#75)
  • 4a8fe03 Improve and export types (#72)
  • c158e69 Merge pull request #74 from github/chore/pin-ubuntu-runners
  • 954090f Merge pull request #70 from kizu/patch-1
  • 57e077a Update README.md
  • 9a7a595 Update README.md
  • acc1d35 Merge pull request #69 from github/dependabot/npm_and_yarn/npm_and_yarn-82ad4...
  • a465fdb Bump the npm_and_yarn group with 2 updates
  • 4d6e63e Merge pull request #68 from github/add-keys-setter
  • e606cd1 add a keys setter
  • Additional commits viewable in compare view

Updates @ungap/custom-elements from 1.1.0 to 1.3.0

Commits

Updates clsx from 1.2.1 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

Chores

  • Add licenses.dev badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

v2.1.0

Features

  • Add new clsx/lite submodule for string-only usage: 1a49142

    This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx usage pattern:

    clsx('foo bar', props.maybe && 'conditional classes', props.className);

    Important: This clsx/lite module ignores all non-string arguments and is therefore not a 1:1 replacement for clsx itself!

    import { clsx } from 'clsx';
    import { clsx as lite } from 'clsx/lite';
    // strings-only usage is identical
    clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    // clsx/lite ignores all non-strings
    clsx('foo', { a: true, b: false, c: true }); //=> "foo a c"
    lite('foo', { a: true, b: false, c: true }); //=> "foo"


Full Changelog: lukeed/clsx@v2.0.1...v2.1.0

v2.0.1

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#26): deff09b

... (truncated)

Commits

Updates core-js from 3.23.4 to 3.40.0

Changelog

Sourced from core-js's changelog.

3.40.0 - 2025.01.08
3.39.0 - 2024.10.31
  • Changes v3.38.1...v3.39.0
  • Iterator helpers proposal:
    • Built-ins:
      • Iterator
        • Iterator.from
        • Iterator.prototype.drop
        • Iterator.prototype.every
        • Iterator.prototype.filter
        • Iterator.prototype.find
        • Iterator.prototype.flatMap
        • Iterator.prototype.forEach
        • Iterator.prototype.map
        • Iterator.prototype.reduce
        • Iterator.prototype.some
        • Iterator.prototype.take
        • Iterator.prototype.toArray
        • Iterator.prototype[@@toStringTag]

... (truncated)

Commits
  • 6e49392 v3.40.0
  • 34e4086 update the way async disposing of only sync disposable resources
  • e21bdbf bump the year
  • dd21b36 add a fix of V8 < 12.8 / NodeJS < 22.10 bug with handling infinite length of ...
  • 8de4f9a re-use IteratorResult objects when possible in Iterator.concat
  • 696feb8 add Error.isError
  • 19d4688 enable eslint-plugin-es-x no-nonstandard-*-properties rules
  • ebf97cc drop unneeded non-standard %TypedArray%.prototype.toSpliced feature detection
  • f37b548 don't use globally available non-standard Math.scale
  • 5c7cc53 inline internals/math-f16round
  • Additional commits viewable in compare view

Updates node-emoji from 1.11.0 to 2.2.0

Release notes

Sourced from node-emoji's releases.

v2.1.0: TypeScript Types!

What's Changed

New Contributors

Full Changelog: omnidan/node-emoji@v2.0.2...v2.1.0

2.0.2

  • completely new codebase
  • ESM support
  • new API and functions

emoji.replace now requires preserveSpaces: true to be passed to preserve spaces:

emoji.replace('I ❤️ coffee!', 'love', { preserveSpaces: true })
Changelog

Sourced from node-emoji's changelog.

2.2.0 (2024-12-03)

Features

  • allow RegExp objects to be passed to search that are evaluated for each emoji (7046cbb)

2.1.3 (2023-11-20)

Bug Fixes

  • pin skin-tone to ^2.0.0 and add renovate.json ignoreDeps (dcd6c43)

2.1.2 (2023-11-20)

Bug Fixes

  • add back CJS support, with a test (e2856d9)

2.1.1 (2023-11-18)

Bug Fixes

  • underlines in README.md badges (05e30ae)
Commits
  • 1c76e0a chore: release v2.2.0
  • 0018b4e feat: allow regular expressions to be passed to search (#204)
  • 4744eae Run pnpm install
  • 192974c Merge branch 'main' into feat/allow-regex-objects-in-search-issue-105
  • 9e46292 Merge pull request #203 from ikelax/docs/add-JSDoc-comments-from-DT-pr-issue-136
  • 7ef3b06 chore: add tea.yaml to .eslintignore, and refresh pnpm-lock.yaml
  • 8b29254 docs: add jsdoc for search
  • 7046cbb feat: allow RegExp objects to be passed to search that are evaluated for each...
  • 38151bc docs: fix a typo in the jsdoc
  • b11e21f docs: copy the JSDoc comments from the [DefinitelyTyped pull request](https:/...
  • Additional commits viewable in compare view

Updates @types/node-emoji from 1.8.1 to 2.1.0

Commits

Updates preact from 10.6.2 to 10.25.4

Release notes

Sourced from preact's releases.

10.25.4

Types

Fixes

10.25.3

Fixes

Types

10.25.2

Notable

Revert unkeyed no-search (#4604, thanks @​JoviDeCroock)

We noticed that there's a few unpleasant scenario's that could form from this change, we wanted to be on the safe side here and revert this for the time being. if you run into issues with swapping components placement wise in a list use the key property.

Fixes

Types

  • fix max and min type definition to allow number (#4598, thanks @​devlux)

Performance

Maintenance

10.25.1

Fixes

... (truncated)

Commits

Updates react-intl from 6.0.5 to 7.1.5

Release notes

Sourced from react-intl's releases.

[email protected]

7.1.5 (2025-01-24)

Bug Fixes

[email protected]

7.1.4 (2025-01-20)

Bug Fixes

[email protected]

7.1.3 (2025-01-20)

Note: Version bump only for package react-intl

[email protected]

7.1.2 (2025-01-20)

Note: Version bump only for package react-intl

[email protected]

7.1.1 (2025-01-17)

Note: Version bump only for package react-intl

[email protected]

7.1.0 (2025-01-02)

Features

[email protected]

7.0.4 (2024-12-09)

Note: Version bump only for package react-intl

[email protected]

7.0.3 (2024-12-09)

Bug Fixes

... (truncated)

Commits
  • 87175d0 build: publish
  • bcf6d7a fix(react-intl): move react to peerDep
  • 75715db chore(deps): update dependency @​swc/core to v1.10.9 (#4832)
  • 38e762f chore(deps): update dependency lint-staged to v15.4.1 (#4837)
  • c6f2c11 chore(deps): update dependency @​types/node to v22.10.7 (#4660)
  • 4ef39e1 fix(deps): update dependency eslint to v9.18.0 (#4823)
  • 1d8fae2 build(deps): bump nanoid from 3.3.6 to 3.3.8 in /packages/react-intl/example-...
  • 8a8192c build(deps): bump path-to-regexp and express in /packages/react-intl/example-...
  • 22dc370 chore(deps): update dependency rules_nodejs to v6.3.3 (#4834)
  • 36455cf build: publish
  • Additional commits viewable in compare view

Updates react-redux from 8.0.2 to 9.2.0

Release notes

Sourced from react-redux's releases.

v9.2.0

This feature release updates the React peer dependency to work with React 19, and improves treeshakeability of our build artifacts.

Changelog

React 19 Compat

React 19 was just released! We've updated our peer dep to accept React 19, and updated our runtime and type tests to check against both React 18 and 19.

Also see Redux Toolkit v2.5.0 for the same peer dep update.

Treeshaking

We've done some nitty-gritty optimization work to ensure bundlers correctly treeshake unused parts of the bundle.

What's Changed

Full Changelog: reduxjs/react-redux@v9.1.2...v9.2.0

v9.1.2

This bugfix release removes the no-longer-necessary peer dependency on react-native, and tweaks a few TS types for compat with the upcoming React 19 release.

Changes

React Native Peer Dependency Removed

We've always had an awkward peer dependency on both ReactDOM and React Native, because of the need to import the unstable_batchedUpdates API directly from each reconciler. That's part of what led to the sequence of 9.x patch releases to deal with RN compat.

As of 9.0.3, we dropped the batching imports completely, since React 18 now batches by default. That means we didn't even have any remaining imports from react-native.

Meanwhile, React 18.3 just came out, but so did React Native 0.74. RN 0.74 still requires React 18.2.

This caused NPM users to have installation failures when trying to use React-Redux:

  • React-Redux has a peer dep on RN
  • RN has a peer dep on React 18.2
  • But the latest React, 18.3 would get installed in the app
  • NPM errors with a peer dep mismatch

We no longer need to list RN as a peer dep, and dropping that also fixes the NPM installation issues as well.

What's Changed

... (truncated)

Commits
  • 7e2fdd4 Release 9.2.0
  • 8c57382 Merge pull request #2217 from reduxjs/feature/react-19-devdep-cleanup
  • d23509b Exclude stray dist folders and website from tsconfig
  • b275a32 Eliminate other stray React import
  • 3ba9838 Drop unused Babel devdeps
  • 1a81c41 Merge pull request #2216 from reduxjs/migrate-to-react-19
  • c58e397 Migrate to React 19
  • e08518a Fix act related issues in test/hooks/useSelector.spec.tsx
  • 1cd1385 Update hoist-non-react-statics implementation
  • a1fc886 Fix type of innerMapStateToProps in Provider.spec.tsx
  • Additional commits viewable in compare view

Updates redux from 4.2.0 to 5.0.1

Release notes

Sourced from redux's releases.

v5.0.1

This patch release adjusts the isPlainObject util to allow objects created via Object.create(null), and fixes a type issue which accidentally made the store state type non-nullable.

What's Changed

Full Changelog: reduxjs/redux@v5.0.0...v5.0.1

v5.0.0

This major release:

  • Converts the codebase to TypeScript
  • Updates the packaging for better ESM/CJS compatibility and modernizes the build output
  • Requires that action.type must be a string
  • Continues to mark createStore as deprecated
  • Deprecates the AnyAction type in favor of an UnknownAction type that is used everywhere
  • Removes the PreloadedState type in favor of a new generic argument for the Reducer type.

This release has breaking changes.

This release is part of a wave of major versions of all the Redux packages: Redux Toolkit 2.0, Redux core 5.0, React-Redux 9.0, Reselect 5.0, and Redux Thunk 3.0.

For full details on all of the breaking changes and other significant changes to all of those packages, see the "Migrating to RTK 2.0 and Redux 5.0" migration guide in the Redux docs.

[!NOTE] The Redux core, Reselect, and Redux Thunk packages are included as part of Redux Toolkit, and RTK users do not need to manually upgrade them - you'll get them as part of the upgrade to RTK 2.0. (If you're not using Redux Toolkit yet, please start migrating your existing legacy Redux code to use Redux Toolkit today!)

# RTK
npm install @reduxjs/toolkit
yarn add @reduxjs/toolkit
Standalone
npm install redux
yarn add redux

Changelog

ESM/CJS Package Compatibility

The biggest theme of the Redux v5 and RTK 2.0 releases is trying to get "true" ESM package publishing compatibility in place, while still supporting CJS in the published package.

The primary build artifact is now an ESM file, dist/redux.mjs. Most build tools should pick this up. There's also a CJS artifact, and a second copy of the ESM file named redux.legacy-esm.js to support Webpack 4 (which does not recognize the exports field in package.json). Additionally, all of the build artifacts now live under ./dist/ in the published package.

Modernized Build Output

We now publish modern JS syntax targeting ES2020, including optional chaining, object spread, and other modern syntax. If you need to

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by phryneas, a new releaser for redux since your current version.


Updates redux-thunk from 2.4.1 to 3.1.0

Release notes

Sourced from redux-thunk's releases.

v3.1.0

This major release:

  • Updates the packaging for better ESM/CJS compatibility
  • Changes the package to use named exports instead of a default export

This release has breaking changes. (Note: this actually points to v3.1.0, which includes a hotfix that was meant for 3.0.0.)

This release is part of a wave of major versions of all the Redux packages: Redux Toolkit 2.0, Redux core 5.0, React-Redux 9.0, Reselect 5.0, and Redux Thunk 3.0.

For full details on all of the breaking changes and other significant changes to all of those packages, see the "Migrating to RTK 2.0 and Redux 5.0" migration guide in the Redux docs.

[!NOTE] The Redux core, Reselect, and Redux Thunk packages are included as part of Redux Toolkit, and RTK users do not need to manually upgrade them - you'll get them as part of the upgrade to RTK 2.0. (If you're not using Redux Toolkit yet, please start migrating your existing legacy Redux code to use Redux Toolkit today!)

# RTK
npm install @reduxjs/toolkit
yarn add @reduxjs/toolkit
Standalone
npm install redux-thunk
yarn add redux-thunk

Changelog

Named Exports Instead of Default Exports

The redux-thunk package previously used a single default export that was the thunk middleware, with an attached field named withExtraArgument that allowed customization.

The default export has been removed. There are now two named exports: thunk (the basic middleware) and withExtraArgument.

If you are using Redux Toolkit, this should have no effect, as RTK already handles this inside of configureStore.

ESM/CJS Package Compatibility

The biggest theme of the Redux v5 and RTK 2.0 releases is trying to get "true" ESM package publishing compatibility in place, while still supporting CJS in the published package.

The primary build artifact is now an ESM file, dist/redux-thunk.mjs. Most build tools should pick this up. There's also a CJS artifact, and a second copy of the ESM file named redux-thunk.legacy-esm.js to support Webpack 4 (which does not recognize the exports field in package.json).

Build Tooling

We're now building the package using https://github.com/egoist/tsup. We also now include sourcemaps for the ESM and CJS artifacts.

The repo has been updated to use Yarn 3 for dependencies and Vitest for running tests.

Dropping UMD Builds

Redux has always shipped with UMD build artifacts. These are primarily meant for direct import as script tags, such as in a CodePen or a no-bundler build environment.

... (truncated)

Commits

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 a...

Description has been truncated

Bumps the npm-modules-updates group with 12 updates in the /frontend/apps/remark42 directory:

| Package | From | To |
| --- | --- | --- |
| [@github/markdown-toolbar-element](https://github.com/github/markdown-toolbar-element) | `2.1.1` | `2.2.3` |
| [@github/text-expander-element](https://github.com/github/text-expander-element) | `2.2.2` | `2.9.1` |
| [@ungap/custom-elements](https://github.com/ungap/custom-elements) | `1.1.0` | `1.3.0` |
| [clsx](https://github.com/lukeed/clsx) | `1.2.1` | `2.1.1` |
| [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.23.4` | `3.40.0` |
| [node-emoji](https://github.com/omnidan/node-emoji) | `1.11.0` | `2.2.0` |
| [@types/node-emoji](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node-emoji) | `1.8.1` | `2.1.0` |
| [preact](https://github.com/preactjs/preact) | `10.6.2` | `10.25.4` |
| [react-intl](https://github.com/formatjs/formatjs) | `6.0.5` | `7.1.5` |
| [react-redux](https://github.com/reduxjs/react-redux) | `8.0.2` | `9.2.0` |
| [redux](https://github.com/reduxjs/redux) | `4.2.0` | `5.0.1` |
| [redux-thunk](https://github.com/reduxjs/redux-thunk) | `2.4.1` | `3.1.0` |



Updates `@github/markdown-toolbar-element` from 2.1.1 to 2.2.3
- [Release notes](https://github.com/github/markdown-toolbar-element/releases)
- [Commits](github/markdown-toolbar-element@v2.1.1...v2.2.3)

Updates `@github/text-expander-element` from 2.2.2 to 2.9.1
- [Release notes](https://github.com/github/text-expander-element/releases)
- [Commits](github/text-expander-element@v2.2.2...v2.9.1)

Updates `@ungap/custom-elements` from 1.1.0 to 1.3.0
- [Commits](ungap/custom-elements@v1.1.0...v1.3.0)

Updates `clsx` from 1.2.1 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v1.2.1...v2.1.1)

Updates `core-js` from 3.23.4 to 3.40.0
- [Release notes](https://github.com/zloirock/core-js/releases)
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zloirock/core-js/commits/v3.40.0/packages/core-js)

Updates `node-emoji` from 1.11.0 to 2.2.0
- [Release notes](https://github.com/omnidan/node-emoji/releases)
- [Changelog](https://github.com/omnidan/node-emoji/blob/main/CHANGELOG.md)
- [Commits](omnidan/node-emoji@v1.11.0...v2.2.0)

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

Updates `preact` from 10.6.2 to 10.25.4
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.6.2...10.25.4)

Updates `react-intl` from 6.0.5 to 7.1.5
- [Release notes](https://github.com/formatjs/formatjs/releases)
- [Commits](https://github.com/formatjs/formatjs/compare/[email protected]@7.1.5)

Updates `react-redux` from 8.0.2 to 9.2.0
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v8.0.2...v9.2.0)

Updates `redux` from 4.2.0 to 5.0.1
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.0...v5.0.1)

Updates `redux-thunk` from 2.4.1 to 3.1.0
- [Release notes](https://github.com/reduxjs/redux-thunk/releases)
- [Commits](reduxjs/redux-thunk@v2.4.1...v3.1.0)

---
updated-dependencies:
- dependency-name: "@github/markdown-toolbar-element"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: "@github/text-expander-element"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: "@ungap/custom-elements"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: core-js
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: node-emoji
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: "@types/node-emoji"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-modules-updates
- dependency-name: react-intl
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: react-redux
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
- dependency-name: redux-thunk
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-modules-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from umputun as a code owner February 1, 2025 12:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2025
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.

0 participants