Skip to content

chore(deps-dev): bump the js group across 1 directory with 25 updates #653

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 14, 2025

Bumps the js group with 25 updates in the /frontend directory:

Package From To
@apollo/client 3.8.6 3.13.4
@babel/core 7.22.9 7.26.10
@babel/eslint-parser 7.21.3 7.26.10
@babel/plugin-proposal-decorators 7.24.7 7.25.9
@embroider/macros 1.16.5 1.16.11
@embroider/util 1.13.1 1.13.2
@fortawesome/ember-fontawesome 0.4.3 3.0.0
@fortawesome/fontawesome-svg-core 6.5.2 6.7.2
@fortawesome/free-regular-svg-icons 6.5.2 6.7.2
@fortawesome/free-solid-svg-icons 6.5.2 6.7.2
@glimmer/component 1.1.2 2.0.0
@nullvoxpopuli/ember-composable-helpers 5.2.8 5.2.10
@sentry/ember 7.118.0 9.5.0
@tailwindcss/forms 0.5.9 0.5.10
autoprefixer 10.4.20 10.4.21
concurrently 8.2.2 9.1.2
fast-redact 3.3.0 3.5.0
graphql 16.8.1 16.10.0
postcss 8.4.47 8.5.3
qunit 2.19.4 2.24.1
qunit-dom 3.0.0 3.4.0
shepherd.js 11.2.0 14.5.0
simplebar 6.2.7 6.3.0
tailwindcss 3.4.13 3.4.17
tracked-built-ins 3.1.1 4.0.0

Updates @apollo/client from 3.8.6 to 3.13.4

Release notes

Sourced from @​apollo/client's releases.

v3.13.4

Patch Changes

v3.13.3

Patch Changes

  • #12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

v3.13.2

Patch Changes

  • #12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

v3.13.1

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.4

Patch Changes

3.13.3

Patch Changes

  • #12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

3.13.2

Patch Changes

  • #12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

3.13.1

Patch Changes

3.13.0

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

... (truncated)

Commits

Updates @babel/core from 7.22.9 to 7.26.10

Release notes

Sourced from @​babel/core's releases.

v7.26.10 (2025-03-11)

Thanks @​jordan-choi and @​mmmsssttt404 for your first PRs!

This release includes a fix for GHSA-968p-4wvh-cqc8, a security vulnerability which affects the .replace method of transpiled regular expressions that use named capturing groups.

👓 Spec Compliance

🐛 Bug Fix

  • babel-parser, babel-template
  • babel-core
  • babel-parser, babel-plugin-transform-typescript
  • babel-traverse
  • babel-generator
  • babel-parser
  • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3

💅 Polish

  • babel-standalone

🏠 Internal

Committers: 6

v7.26.9 (2025-02-14)

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.26.10 (2025-03-11)

👓 Spec Compliance

🐛 Bug Fix

  • babel-parser, babel-template
  • babel-core
  • babel-parser, babel-plugin-transform-typescript
  • babel-traverse
  • babel-generator
  • babel-parser
  • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3

💅 Polish

  • babel-standalone

🏠 Internal

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol

... (truncated)

Commits

Updates @babel/eslint-parser from 7.21.3 to 7.26.10

Release notes

Sourced from @​babel/eslint-parser's releases.

v7.26.10 (2025-03-11)

Thanks @​jordan-choi and @​mmmsssttt404 for your first PRs!

This release includes a fix for GHSA-968p-4wvh-cqc8, a security vulnerability which affects the .replace method of transpiled regular expressions that use named capturing groups.

👓 Spec Compliance

🐛 Bug Fix

  • babel-parser, babel-template
  • babel-core
  • babel-parser, babel-plugin-transform-typescript
  • babel-traverse
  • babel-generator
  • babel-parser
  • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3

💅 Polish

  • babel-standalone

🏠 Internal

Committers: 6

v7.26.9 (2025-02-14)

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​babel/eslint-parser's changelog.

v7.26.10 (2025-03-11)

👓 Spec Compliance

🐛 Bug Fix

  • babel-parser, babel-template
  • babel-core
  • babel-parser, babel-plugin-transform-typescript
  • babel-traverse
  • babel-generator
  • babel-parser
  • babel-helpers, babel-runtime, babel-runtime-corejs2, babel-runtime-corejs3

💅 Polish

  • babel-standalone

🏠 Internal

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol

... (truncated)

Commits

Updates @babel/plugin-proposal-decorators from 7.24.7 to 7.25.9

Release notes

Sourced from @​babel/plugin-proposal-decorators's releases.

v7.25.9 (2024-10-22)

Thanks @​victorenator for your first PR!

🐛 Bug Fix

  • babel-parser, babel-template, babel-types
  • babel-helper-compilation-targets, babel-preset-env
  • Other

🏠 Internal

🏃‍♀️ Performance

Committers: 4

v7.25.8 (2024-10-10)

🐛 Bug Fix

🏠 Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

Committers: 3

v7.25.7 (2024-10-02)

Thanks @​DylanPiercey and @​YuHyeonWook for your first PRs!

🐛 Bug Fix

  • babel-helper-validator-identifier

... (truncated)

Changelog

Sourced from @​babel/plugin-proposal-decorators's changelog.

v7.25.9 (2024-10-22)

🐛 Bug Fix

  • babel-parser, babel-template, babel-types
  • babel-helper-compilation-targets, babel-preset-env
  • Other

🏠 Internal

  • babel-helper-transform-fixture-test-runner

🏃‍♀️ Performance

v7.25.8 (2024-10-10)

🐛 Bug Fix

🏠 Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

v7.25.7 (2024-10-02)

🐛 Bug Fix

💅 Polish

🏠 Internal

  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone

... (truncated)

Commits

Updates @embroider/macros from 1.16.5 to 1.16.11

Release notes

Sourced from @​embroider/macros's releases.

v8.0.0-alpha.5-@​embroider/addon-dev

Release (2025-03-14)

  • @​embroider/addon-dev 8.0.0-alpha.5 (patch)
  • @​embroider/addon-shim 2.0.0-alpha.2 (patch)
  • @​embroider/babel-loader-9 4.0.0-alpha.2 (patch)
  • @​embroider/broccoli-side-watch 1.1.0-alpha.2 (patch)
  • @​embroider/compat 4.0.0-alpha.9 (patch)
  • @​embroider/config-meta-loader 1.0.0-alpha.3 (patch)
  • @​embroider/core 4.0.0-alpha.9 (patch)
  • @​embroider/hbs-loader 4.0.0-alpha.2 (patch)
  • @​embroider/macros 1.17.0-alpha.7 (patch)
  • @​embroider/reverse-exports 0.1.1-alpha.2 (patch)
  • @​embroider/router 3.0.0-alpha.2 (patch)
  • @​embroider/shared-internals 3.0.0-alpha.5 (patch)
  • @​embroider/template-tag-codemod 1.0.0 (major)
  • @​embroider/util 1.14.0-alpha.2 (patch)
  • @​embroider/vite 1.0.0-alpha.10 (patch)

💥 Breaking Change

  • @embroider/template-tag-codemod

🏠 Internal

  • @embroider/addon-dev, @embroider/addon-shim, @embroider/babel-loader-9, @embroider/broccoli-side-watch, @embroider/compat, @embroider/config-meta-loader, @embroider/core, @embroider/hbs-loader, @embroider/macros, @embroider/reverse-exports, @embroider/router, @embroider/shared-internals, @embroider/util, @embroider/vite

Committers: 1

v0.5.0-alpha.10-@​embroider/template-tag-codemod

Release (2025-03-13)

@​embroider/template-tag-codemod 0.5.0-alpha.10 (patch)

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2370 Handle name collisions when using --addNameToTemplateOnly (@​CvX)

Committers: 1

v8.0.0-alpha.4-@​embroider/addon-dev

Release (2025-03-13)

@​embroider/addon-dev 8.0.0-alpha.4 (patch) @​embroider/core 4.0.0-alpha.8 (patch) @​embroider/template-tag-codemod 0.5.0-alpha.9 (minor) @​embroider/vite 1.0.0-alpha.9 (patch)

... (truncated)

Changelog

Sourced from @​embroider/macros's changelog.

Embroider Changelog

Release (2025-03-14)

  • @​embroider/addon-dev 8.0.0-alpha.5 (patch)
  • @​embroider/addon-shim 2.0.0-alpha.2 (patch)
  • @​embroider/babel-loader-9 4.0.0-alpha.2 (patch)
  • @​embroider/broccoli-side-watch 1.1.0-alpha.2 (patch)
  • @​embroider/compat 4.0.0-alpha.9 (patch)
  • @​embroider/config-meta-loader 1.0.0-alpha.3 (patch)
  • @​embroider/core 4.0.0-alpha.9 (patch)
  • @​embroider/hbs-loader 4.0.0-alpha.2 (patch)
  • @​embroider/macros 1.17.0-alpha.7 (patch)
  • @​embroider/reverse-exports 0.1.1-alpha.2 (patch)
  • @​embroider/router 3.0.0-alpha.2 (patch)
  • @​embroider/shared-internals 3.0.0-alpha.5 (patch)
  • @​embroider/template-tag-codemod 1.0.0 (major)
  • @​embroider/util 1.14.0-alpha.2 (patch)
  • @​embroider/vite 1.0.0-alpha.10 (patch)

💥 Breaking Change

  • @embroider/template-tag-codemod

🏠 Internal

  • @embroider/addon-dev, @embroider/addon-shim, @embroider/babel-loader-9, @embroider/broccoli-side-watch, @embroider/compat, @embroider/config-meta-loader, @embroider/coreDescription has been truncated

Bumps the js group with 25 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.8.6` | `3.13.4` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.9` | `7.26.10` |
| [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.21.3` | `7.26.10` |
| [@babel/plugin-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators) | `7.24.7` | `7.25.9` |
| [@embroider/macros](https://github.com/embroider-build/embroider/tree/HEAD/packages/macros) | `1.16.5` | `1.16.11` |
| [@embroider/util](https://github.com/embroider-build/embroider) | `1.13.1` | `1.13.2` |
| [@fortawesome/ember-fontawesome](https://github.com/FortAwesome/ember-fontawesome) | `0.4.3` | `3.0.0` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.7.2` |
| [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.7.2` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.7.2` |
| [@glimmer/component](https://github.com/emberjs/ember.js) | `1.1.2` | `2.0.0` |
| [@nullvoxpopuli/ember-composable-helpers](https://github.com/NullVoxPopuli/ember-composable-helpers) | `5.2.8` | `5.2.10` |
| [@sentry/ember](https://github.com/getsentry/sentry-javascript) | `7.118.0` | `9.5.0` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.9` | `0.5.10` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `8.2.2` | `9.1.2` |
| [fast-redact](https://github.com/davidmarkclements/fast-redact) | `3.3.0` | `3.5.0` |
| [graphql](https://github.com/graphql/graphql-js) | `16.8.1` | `16.10.0` |
| [postcss](https://github.com/postcss/postcss) | `8.4.47` | `8.5.3` |
| [qunit](https://github.com/qunitjs/qunit) | `2.19.4` | `2.24.1` |
| [qunit-dom](https://github.com/mainmatter/qunit-dom) | `3.0.0` | `3.4.0` |
| [shepherd.js](https://github.com/shepherd-pro/shepherd) | `11.2.0` | `14.5.0` |
| [simplebar](https://github.com/grsmto/simplebar/tree/HEAD/packages/simplebar) | `6.2.7` | `6.3.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.13` | `3.4.17` |
| [tracked-built-ins](https://github.com/tracked-tools/tracked-built-ins) | `3.1.1` | `4.0.0` |



Updates `@apollo/client` from 3.8.6 to 3.13.4
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.8.6...v3.13.4)

Updates `@babel/core` from 7.22.9 to 7.26.10
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-core)

Updates `@babel/eslint-parser` from 7.21.3 to 7.26.10
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.10/eslint/babel-eslint-parser)

Updates `@babel/plugin-proposal-decorators` from 7.24.7 to 7.25.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.9/packages/babel-plugin-proposal-decorators)

Updates `@embroider/macros` from 1.16.5 to 1.16.11
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/macros)

Updates `@embroider/util` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits)

Updates `@fortawesome/ember-fontawesome` from 0.4.3 to 3.0.0
- [Release notes](https://github.com/FortAwesome/ember-fontawesome/releases)
- [Changelog](https://github.com/FortAwesome/ember-fontawesome/blob/3.x/CHANGELOG.md)
- [Commits](FortAwesome/ember-fontawesome@0.4.3...3.0.0)

Updates `@fortawesome/fontawesome-svg-core` from 6.5.2 to 6.7.2
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.5.2...6.7.2)

Updates `@fortawesome/free-regular-svg-icons` from 6.5.2 to 6.7.2
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.5.2...6.7.2)

Updates `@fortawesome/free-solid-svg-icons` from 6.5.2 to 6.7.2
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.5.2...6.7.2)

Updates `@glimmer/component` from 1.1.2 to 2.0.0
- [Release notes](https://github.com/emberjs/ember.js/releases)
- [Changelog](https://github.com/emberjs/ember.js/blob/main/CHANGELOG.md)
- [Commits](emberjs/ember.js@v1.1.2...v2.0.0)

Updates `@nullvoxpopuli/ember-composable-helpers` from 5.2.8 to 5.2.10
- [Release notes](https://github.com/NullVoxPopuli/ember-composable-helpers/releases)
- [Changelog](https://github.com/NullVoxPopuli/ember-composable-helpers/blob/main/CHANGELOG.md)
- [Commits](https://github.com/NullVoxPopuli/ember-composable-helpers/commits)

Updates `@sentry/ember` from 7.118.0 to 9.5.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.118.0...9.5.0)

Updates `@tailwindcss/forms` from 0.5.9 to 0.5.10
- [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-forms@v0.5.9...v0.5.10)

Updates `autoprefixer` from 10.4.20 to 10.4.21
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.20...10.4.21)

Updates `concurrently` from 8.2.2 to 9.1.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v8.2.2...v9.1.2)

Updates `fast-redact` from 3.3.0 to 3.5.0
- [Release notes](https://github.com/davidmarkclements/fast-redact/releases)
- [Commits](davidmarkclements/fast-redact@v3.3.0...v3.5.0)

Updates `graphql` from 16.8.1 to 16.10.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.8.1...v16.10.0)

Updates `postcss` from 8.4.47 to 8.5.3
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.47...8.5.3)

Updates `qunit` from 2.19.4 to 2.24.1
- [Release notes](https://github.com/qunitjs/qunit/releases)
- [Changelog](https://github.com/qunitjs/qunit/blob/main/History.md)
- [Commits](qunitjs/qunit@2.19.4...2.24.1)

Updates `qunit-dom` from 3.0.0 to 3.4.0
- [Release notes](https://github.com/mainmatter/qunit-dom/releases)
- [Changelog](https://github.com/mainmatter/qunit-dom/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mainmatter/qunit-dom/commits)

Updates `shepherd.js` from 11.2.0 to 14.5.0
- [Release notes](https://github.com/shepherd-pro/shepherd/releases)
- [Changelog](https://github.com/shipshapecode/shepherd/blob/main/CHANGELOG.md)
- [Commits](https://github.com/shepherd-pro/shepherd/commits)

Updates `simplebar` from 6.2.7 to 6.3.0
- [Release notes](https://github.com/grsmto/simplebar/releases)
- [Changelog](https://github.com/Grsmto/simplebar/blob/master/packages/simplebar/CHANGELOG.md)
- [Commits](https://github.com/grsmto/simplebar/commits/simplebar@6.3.0/packages/simplebar)

Updates `tailwindcss` from 3.4.13 to 3.4.17
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v3.4.17/packages/tailwindcss)

Updates `tracked-built-ins` from 3.1.1 to 4.0.0
- [Release notes](https://github.com/tracked-tools/tracked-built-ins/releases)
- [Changelog](https://github.com/tracked-tools/tracked-built-ins/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tracked-tools/tracked-built-ins/commits)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@babel/eslint-parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@babel/plugin-proposal-decorators"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@embroider/macros"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: "@embroider/util"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: "@fortawesome/ember-fontawesome"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: "@fortawesome/fontawesome-svg-core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@fortawesome/free-regular-svg-icons"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@fortawesome/free-solid-svg-icons"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: "@glimmer/component"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: "@nullvoxpopuli/ember-composable-helpers"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: "@sentry/ember"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: "@tailwindcss/forms"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: fast-redact
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: graphql
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: qunit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: qunit-dom
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: shepherd.js
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: simplebar
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: tracked-built-ins
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner March 14, 2025 13:55
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 14, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 15, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/js-ab8e90cff1 branch April 15, 2025 10:18
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