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 #642

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 Mar 7, 2025

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

Package From To
@apollo/client 3.8.6 3.13.2
@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.10
@sentry/ember 7.118.0 9.5.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.11
tracked-built-ins 3.1.1 4.0.0

Updates @apollo/client from 3.8.6 to 3.13.2

Release notes

Sourced from @​apollo/client's releases.

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

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

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.

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

... (truncated)

Commits

Updates @babel/core from 7.22.9 to 7.26.9

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

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

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

Commits

Updates @embroider/util from 1.13.1 to 1.13.2

Changelog

Sourced from @​embroider/util's changelog.

Embroider Changelog

Release (2025-03-05)

@​embroider/compat 4.0.0-alpha.7 (minor)

🚀 Enhancement

🏠 Internal

  • app-template-minimal, @embroider/test-scenarios

Committers: 2

Release (2025-03-02)

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

🐛 Bug Fix

  • @embroider/template-tag-codemod
    • #2321 downgrade ember-cli dependency to support a wider range of ember-source (@​mansona)

Committers: 1

Release (2025-02-28)

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

🚀 Enhancement

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2331 Don't duplicate comments that appear next to modified imports (@​ef4)
    • #2330 Handle render tests that define the template outside the render call (@​ef4)
  • @embroider/template-tag-codemod, @embroider/test-support, @embroider/test-scenarios
    • #2328 Skip and report non-native-class syntax components (@​ef4)
  • @embroider/template-tag-codemod
    • #2327 Improve template-tag-codemod error reporting (@​ef4)
    • #2319 template-tag-codemod: only reuse ember prebuild if you explicitly pass the option to do so (@​mansona)

🐛 Bug Fix

  • @embroider/template-tag-codemod, @embroider/test-scenarios
    • #2332 Fix lexical this polyfill when "this" has no tail (@​ef4)

Committers: 2

... (truncated)

Commits

Updates @fortawesome/ember-fontawesome from 0.4.3 to 3.0.0

Changelog

Sourced from @​fortawesome/ember-fontawesome's changelog.

3.0.0 - 2025-02-11

Changed

  • Convert addon to an ember v2 addon
  • Convert addon to TypeScript & add glint support
  • Switch component into strict mode
  • Move @fortawesome/fontawesome-svg-core to peerDependencies
  • Install fastboot package in test-app, so that we are save that it works also inside fastboot apps

Removed

  • Drop support for enableExperimentalBuildTimeTransform (it was never documented)
  • Option warnIfNoIconsIncluded as it was used only in build time code (index.js) which doesn't exists in v2 addons
  • Remove config/icons.js (you need to setup in app.js/ts, see migration process)

Fixed

  • Re-add support for ember v3.28

For upgrading see here


Previous 2.x CHANGELOG is available here

Commits
Maintainer changes

This version was pushed to npm by mkszepp, a new releaser for @​fortawesome/ember-fontawesome since your current version.


Updates @fortawesome/fontawesome-svg-core from 6.5.2 to 6.7.2

Commits

Updates @fortawesome/free-regular-svg-icons from 6.5.2 to 6.7.2

Commits

Updates @fortawesome/free-solid-svg-icons from 6.5.2 to 6.7.2

Commits

Updates @glimmer/component from 1.1.2 to 2.0.0

Changelog

Sourced from @​glimmer/component's changelog.

2.0.0 (August 13, 2015)

  • #11213 [BREAKING] Remove chaining in Observable.set
  • #12036 Cleanup CP Set and Volatile
  • #11993 [CLEANUP] Remove Ember.TrackedArray and Ember.SubArray.
  • #11550 [BUGFIX] Ensure that specifying an observer in a child class only observes changes to the childs dependent keys.
  • #10259 [BUGFIX] Make Ember.computed.or return the last falsey value (similar to ||).
  • #11957 [BUGFIX] Enable Ember.DefaultResolver to properly normalize hyphens (-).
  • #11969 / #11959 [DEPRECATE] Deprecate usage of Ember.String.fmt.
  • #11990 [PERF] @each should remain a stable node for chains.
  • #11964 [BUGFIX] Update htmlbars to v0.14.2.
  • #11965 [CLEANUP] Remove Ember.HTMLBars.makeViewHelper.
  • #11965 [CLEANUP] Remove Ember.HTMLBars._registerHelper.
  • #11965 [CLEANUP] Remove Ember.Handlebars.registerHelper.
  • #11965 [CLEANUP] Remove Ember.Handlebars.makeBoundHelper.
  • #11965 [CLEANUP] Remove Ember.Handlebars.makeViewHelper.
  • #11965 [CLEANUP] Remove Ember.Handlebars.helper.
  • #11965 [CLEANUP] Remove Ember.Handlebars.registerBoundHelper.
  • #12024 [CLEANUP] Remove ComponentTemplateDeprecation mixin.
  • #12001 [CLEANUP] Remove {{with}} keyword's controller option.
  • #12027 [CLEANUP] Remove deprecated template access in Ember.Component.
  • #12019 [DOC] Add helpful assertion when using @​each as a leaf in DK.
  • #12020 [CLEANUP] Remove specifying .render method to views and components.
  • #12027 [CLEANUP] Remove positionalParams specified to Ember.Component at extend time.
  • #12027 [CLEANUP] Remove support for specifying template in a component.
  • #12027 [CLEANUP] Remove deprecated template access in Ember.Component.
  • #12028 [CLEANUP] Store actions in actions not _actions.
  • #11854 [CLEANUP] Remove length from OrderedSet and Map.
  • #11854 [CLEANUP] Remove OrderedSet.prototype.length.
  • #11854 [CLEANUP] Remove Ember.libraries.each.
  • #11854 [CLEANUP] Remove deprecated special {{each}} keys.
  • #11854 [CLEANUP] Remove Ember.Location.registerImplementation.
  • #11854 [CLEANUP] Remove {{template}} support.
  • #11854 [CLEANUP] Remove Ember.Route#setupControllers deprecation.
  • #11854 [CLEANUP] Remove Ember.Route#renderTemplates deprecation.
  • #11845 [CLEANUP] Remove Ember.Application#initialize.
  • #11845 [CLEANUP] Remove support for Ember.Application.resolver.
  • #11845 [CLEANUP] Remove support for resolver without normalize.
  • #11845 [CLEANUP] Remove IE6 & IE7 deprecation.
  • #11845 [CLEANUP] Remove returning string of attrs from helper support.
  • #11845 [CLEANUP] Remove support for returning string of attrs from helper.
  • #11845 [CLEANUP] Remove support for view and viewClass with {{outlet}}.
  • #11771 [CLEANUP] Remove deprecated Controller#controllerFor.
  • #11750 [CLEANUP] Remove metaPath, getMeta and setMeta.
  • #11854 [CLEANUP] Lots of deprecation removals.
  • #11820 [CLEANUP] Remove sendEvent hook.
  • #11815 [CLEANUP] Remove {chainWatchers: null} from Meta.prototype.
  • #11819 [CLEANUP] Abstract chainWatchers into an object.
  • #11824 Revert "[CLEANUP] Remove support for reversed args in Ember.observer.
  • #11822 [BUGFIX] Deprecate currentWhen with {{link-to}}.

... (truncated)

Commits
  • e9be841 Release v2.0.0.
  • de88d12 Add 1.13.x to beta changelog.
  • a43a962 Add 2.0.0 to CHANGELOG.
  • c1caa90 [CLEANUP beta] Remove collection helper without flag
  • abdc442 [CLEANUP beta] Assert on view and controller keywords
  • 75b2a74 Ensure Applica...

    Description has been truncated

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 7, 2025
@dependabot dependabot bot requested a review from a team as a code owner March 7, 2025 10:06
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Mar 7, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/js-f26dd4e443 branch from 5ea2b1f to 72cb42c Compare March 7, 2025 11:35
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.2` |
| [@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.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` |
| [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.11` |
| [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.2
- [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.2)

Updates `@babel/core` from 7.22.9 to 7.26.9
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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
- [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 `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
- [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
- [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
- [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.11
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.11/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 force-pushed the dependabot/npm_and_yarn/frontend/js-f26dd4e443 branch from 72cb42c to 35a2157 Compare March 7, 2025 11:42
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