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

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

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

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
@apollo/client 3.8.6 3.13.1
@babel/core 7.22.9 7.26.9
@babel/eslint-parser 7.21.3 7.26.8
@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.9
@sentry/ember 7.118.0 9.2.0
@tailwindcss/forms 0.5.9 0.5.10
concurrently 8.2.2 9.1.2
faker 4.1.0 6.6.6
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 4.0.9
tracked-built-ins 3.1.1 4.0.0

Updates @apollo/client from 3.8.6 to 3.13.1

Release notes

Sourced from @​apollo/client's releases.

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(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

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.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Commits
  • 356fcc9 Version Packages (#12377)
  • d3f8f13 Export UseSuspenseFragmentOptions (#12375)
  • bdfc5b2 ObervableQuery.refetch: don't refetch with cache-and-network, swich to `n...
  • e93d19f Version Packages (#12372)
  • c6cac25 Merge pull request #12180 from apollographql/release-3.13
  • b30b06c Exit prerelease mode
  • 3904103 Merge branch 'main' into release-3.13
  • d71f2e8 Require variables option in useSuspenseFragment when there are required v...
  • 66dc5b9 Update ROADMAP.md
  • 27e1532 Add documentation for useSuspenseFragment (#12356)
  • Additional commits viewable in compare view

Updates @babel/core from 7.22.9 to 7.26.9

Release notes

Sourced from @​babel/core's releases.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Committers: 5

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

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
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types

... (truncated)

Commits

Updates @babel/eslint-parser from 7.21.3 to 7.26.8

Release notes

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

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

Committers: 1

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions

... (truncated)

Changelog

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

Changelog

Tags:

  • 💥 [Breaking Change]
  • 👓 [Spec Compliance]
  • 🚀 [New Feature]
  • 🐛 [Bug Fix]
  • 📝 [Documentation]
  • 🏠 [Internal]
  • 💅 [Polish]

Note: Gaps between patch versions are faulty, broken or test releases.

This file contains the changelog starting from v7.15.0.

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
  • babel-parser
  • babel-core

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

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

Release (2025-02-25)

@​embroider/template-tag-codemod 0.5.0-alpha.5 (patch) @​embroider/vite 1.0.0-alpha.7 (patch)

📝 Documentation

  • @embroider/template-tag-codemod

🏠 Internal

  • @embroider/vite
    • #2317 Vite 6.2 includes breaking changes to esbuild types (@​ef4)

Committers: 1

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

Release (2025-02-24)

@​embroider/template-tag-codemod 0.5.0-alpha.4 (minor)

🚀 Enhancement

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2309 codemod: support all the legacy inline hbs module names (@​ef4)

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2307 Share "this" re-bindings within the same scope (@​ef4)

Committers: 1

v3.8.3-@​embroider/compat

Release (2025-02-22)

@​embroider/compat 3.8.3 (patch)

🐛 Bug Fix

  • @embroider/compat
    • #2305 Fix vendor ember-template-compiler.js on v2 ember-source (@​ef4)

Committers: 1

v3.5.2-@​embroider/core

Release (2025-02-21)

@​embroider/core 3.5.2 (patch)

... (truncated)

Commits

Updates @embroider/util from 1.13.1 to 1.13.2

Release notes

Sourced from @​embroider/util's releases.

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

Release (2025-02-25)

@​embroider/template-tag-codemod 0.5.0-alpha.5 (patch) @​embroider/vite 1.0.0-alpha.7 (patch)

📝 Documentation

  • @embroider/template-tag-codemod

🏠 Internal

  • @embroider/vite
    • #2317 Vite 6.2 includes breaking changes to esbuild types (@​ef4)

Committers: 1

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

Release (2025-02-24)

@​embroider/template-tag-codemod 0.5.0-alpha.4 (minor)

🚀 Enhancement

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2309 codemod: support all the legacy inline hbs module names (@​ef4)

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2307 Share "this" re-bindings within the same scope (@​ef4)

Committers: 1

v3.8.3-@​embroider/compat

Release (2025-02-22)

@​embroider/compat 3.8.3 (patch)

🐛 Bug Fix

  • @embroider/compat
    • #2305 Fix vendor ember-template-compiler.js on v2 ember-source (@​ef4)

Committers: 1

v3.5.2-@​embroider/core

Release (2025-02-21)

@​embroider/core 3.5.2 (patch)

... (truncated)

Changelog

Sourced from @​embroider/util's changelog.

Embroider Changelog

Release (2025-02-25)

@​embroider/template-tag-codemod 0.5.0-alpha.5 (patch) @​embroider/vite 1.0.0-alpha.7 (patch)

📝 Documentation

  • @embroider/template-tag-codemod

🏠 Internal

  • @embroider/vite
    • #2317 Vite 6.2 includes breaking changes to esbuild types (@​ef4)

Committers: 1

Release (2025-02-24)

@​embroider/template-tag-codemod 0.5.0-alpha.4 (minor)

🚀 Enhancement

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2309 codemod: support all the legacy inline hbs module names (@​ef4)

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2307 Share "this" re-bindings within the same scope (@​ef4)

Committers: 1

Release (2025-02-21)

@​embroider/compat 4.0.0-alpha.6 (minor) @​embroider/core 4.0.0-alpha.6 (patch) @​embroider/macros 1.17.0-alpha.5 (minor) @​embroider/template-tag-codemod 0.5.0-alpha.3 (patch) @​embroider/vite 1.0.0-alpha.6 (patch)

🚀 Enhancement

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2296 handle empty pojo arg to precompileTemplate (@​ef4)

... (truncated)

Commits

Updates @fortawesome/ember-fontawesome from 0.4.3 to 3.0.0

Release notes<...

Description 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.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.9` | `7.26.9` |
| [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.21.3` | `7.26.8` |
| [@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.9` |
| [@sentry/ember](https://github.com/getsentry/sentry-javascript) | `7.118.0` | `9.2.0` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.9` | `0.5.10` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `8.2.2` | `9.1.2` |
| [faker](https://github.com/Marak/Faker.js) | `4.1.0` | `6.6.6` |
| [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` | `4.0.9` |
| [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.1
- [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.1)

Updates `@babel/core` from 7.22.9 to 7.26.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.26.9/packages/babel-core)

Updates `@babel/eslint-parser` from 7.21.3 to 7.26.8
- [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.8/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.9
- [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.2.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.2.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 `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 `faker` from 4.1.0 to 6.6.6
- [Commits](https://github.com/Marak/Faker.js/commits)

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/[email protected]/packages/simplebar)

Updates `tailwindcss` from 3.4.13 to 4.0.9
- [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/v4.0.9/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: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js
- dependency-name: faker
  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-major
  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] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 28, 2025 12:58
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 28, 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