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 18 updates #428

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 Aug 19, 2024

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

Package From To
@apollo/client 3.8.6 3.11.4
@babel/core 7.22.9 7.25.2
@babel/eslint-parser 7.21.3 7.25.1
@embroider/util 1.13.1 1.13.2
@fontsource/source-sans-pro 4.5.11 5.0.8
@fortawesome/ember-fontawesome 0.4.3 2.0.0
@fortawesome/fontawesome-svg-core 6.5.2 6.6.0
@fortawesome/free-regular-svg-icons 6.5.2 6.6.0
@fortawesome/free-solid-svg-icons 6.5.2 6.6.0
@sentry/ember 7.118.0 8.26.0
faker 4.1.0 6.6.6
fast-redact 3.3.0 3.5.0
graphql 16.8.1 16.9.0
qunit 2.19.4 2.22.0
qunit-dom 3.0.0 3.2.0
sass 1.58.3 1.77.8
shepherd.js 11.2.0 13.0.3
tracked-built-ins 3.1.1 3.3.0

Updates @apollo/client from 3.8.6 to 3.11.4

Release notes

Sourced from @​apollo/client's releases.

v3.11.4

Patch Changes

  • #11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

v3.11.3

Patch Changes

  • #11984 5db1659 Thanks @​jerelmiller! - Fix an issue where multiple fetches with results that returned errors would sometimes set the data property with an errorPolicy of none.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where fetchMore would write its result data to the cache when using it with a no-cache fetch policy.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where executing fetchMore with a no-cache fetch policy could sometimes result in multiple network requests.

  • #11974 c95848e Thanks @​jerelmiller! -

    Potentially disruptive change

    When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

v3.11.2

Patch Changes

v3.11.1

Patch Changes

  • #11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

v3.11.0

Potentially Breaking Fixes

  • #11789 5793301 Thanks @​phryneas! - Changes usages of the GraphQLError type to GraphQLFormattedError.

    This was a type bug - these errors were never GraphQLError instances to begin with, and the GraphQLError class has additional properties that can

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.11.4

Patch Changes

  • #11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

3.11.3

Patch Changes

  • #11984 5db1659 Thanks @​jerelmiller! - Fix an issue where multiple fetches with results that returned errors would sometimes set the data property with an errorPolicy of none.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where fetchMore would write its result data to the cache when using it with a no-cache fetch policy.

  • #11974 c95848e Thanks @​jerelmiller! - Fix an issue where executing fetchMore with a no-cache fetch policy could sometimes result in multiple network requests.

  • #11974 c95848e Thanks @​jerelmiller! -

    Potentially disruptive change

    When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

3.11.2

Patch Changes

3.11.1

Patch Changes

  • #11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

3.11.0

Potentially Breaking Fixes

... (truncated)

Commits
  • c6e8182 Version Packages (#11991)
  • 41b17e5 Fix issue returning arrays from cache.modify modifier functions when the arra...
  • 9e4b798 renovate: don't request reviewers (#11992)
  • e609156 Fix a potential crash when calling clearStore while a query was running. (#...
  • 8aa627f Version Packages (#11985)
  • 5db1659 Fix issue where multiple fetches might report data if result contained erro...
  • c95848e Fix fetchMore for queries with no-cache fetch policies (#11974)
  • 076bb63 Version Packages (#11981)
  • 38c0a2c Fix missing getServerSnapshot function for useSubscription (#11980)
  • 07693a2 chore(deps): update all devdependencies (#11979)
  • Additional commits viewable in compare view

Updates @babel/core from 7.22.9 to 7.25.2

Release notes

Sourced from @​babel/core's releases.

v7.25.2 (2024-07-30)

🐛 Bug Fix

Committers: 2

v7.25.1 (2024-07-28)

🐛 Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

🏠 Internal

Committers: 4

v7.25.0 (2024-07-26)

Thanks @​davidtaylorhq and @​slatereax for your first PR!

You can find the release blog post with some highlights at https://babeljs.io/blog/2024/07/26/7.25.0.

👓 Spec Compliance

  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3
  • babel-plugin-transform-typescript
    • #16602 Ensure enum members syntactically determinable to be strings do not get reverse mappings (@​liuxingbaoyu)

🚀 New Feature

  • babel-helper-create-class-features-plugin, babel-helper-function-name, babel-helper-plugin-utils, babel-helper-wrap-function, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-preset-env, babel-traverse, babel-types
  • babel-helper-hoist-variables, babel-helper-plugin-utils, babel-plugin-proposal-async-do-expressions, babel-plugin-transform-modules-systemjs, babel-traverse
  • babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-split-export-declaration, babel-plugin-transform-classes, babel-traverse, babel-types
  • babel-helper-create-class-features-plugin, babel-helper-environment-visitor, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-remap-async-to-generator, babel-helper-replace-supers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-plugin-transform-async-generator-functions, babel-plugin-transform-classes, babel-traverse

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.25.2 (2024-07-30)

🐛 Bug Fix

v7.25.1 (2024-07-28)

🐛 Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

🏠 Internal

v7.25.0 (2024-07-26)

👓 Spec Compliance

  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3
  • babel-plugin-transform-typescript
    • #16602 Ensure enum members syntactically determinable to be strings do not get reverse mappings (@​liuxingbaoyu)

🚀 New Feature

  • babel-helper-create-class-features-plugin, babel-helper-function-name, babel-helper-plugin-utils, babel-helper-wrap-function, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-preset-env, babel-traverse, babel-types
  • babel-helper-hoist-variables, babel-helper-plugin-utils, babel-plugin-proposal-async-do-expressions, babel-plugin-transform-modules-systemjs, babel-traverse
  • babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-split-export-declaration, babel-plugin-transform-classes, babel-traverse, babel-types
  • babel-helper-create-class-features-plugin, babel-helper-environment-visitor, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-remap-async-to-generator, babel-helper-replace-supers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-plugin-transform-async-generator-functions, babel-plugin-transform-classes, babel-traverse
  • babel-core, babel-parser
  • babel-compat-data, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-preset-env
  • babel-plugin-transform-block-scoping, babel-traverse, babel-types
  • babel-helper-import-to-platform-api, babel-plugin-proposal-json-modules
  • babel-helper-transform-fixture-test-runner, babel-node
  • babel-compat-data, babel-helper-create-regexp-features-plugin, babel-plugin-proposal-duplicate-named-capturing-groups-regex, babel-plugin-transform-duplicate-named-capturing-groups-regex, babel-preset-env, babel-standalone

🐛 Bug Fix

... (truncated)

Commits

Updates @babel/eslint-parser from 7.21.3 to 7.25.1

Release notes

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

v7.25.1 (2024-07-28)

🐛 Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

🏠 Internal

Committers: 4

v7.25.0 (2024-07-26)

Thanks @​davidtaylorhq and @​slatereax for your first PR!

You can find the release blog post with some highlights at https://babeljs.io/blog/2024/07/26/7.25.0.

👓 Spec Compliance

  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3
  • babel-plugin-transform-typescript
    • #16602 Ensure enum members syntactically determinable to be strings do not get reverse mappings (@​liuxingbaoyu)

🚀 New Feature

  • babel-helper-create-class-features-plugin, babel-helper-function-name, babel-helper-plugin-utils, babel-helper-wrap-function, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-preset-env, babel-traverse, babel-types
  • babel-helper-hoist-variables, babel-helper-plugin-utils, babel-plugin-proposal-async-do-expressions, babel-plugin-transform-modules-systemjs, babel-traverse
  • babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-split-export-declaration, babel-plugin-transform-classes, babel-traverse, babel-types
  • babel-helper-create-class-features-plugin, babel-helper-environment-visitor, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-remap-async-to-generator, babel-helper-replace-supers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-plugin-transform-async-generator-functions, babel-plugin-transform-classes, babel-traverse
  • babel-core, babel-parser
  • babel-compat-data, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-preset-env
  • babel-plugin-transform-block-scoping, babel-traverse, babel-types
  • babel-helper-import-to-platform-api, babel-plugin-proposal-json-modules
  • babel-helper-transform-fixture-test-runner, babel-node

... (truncated)

Changelog

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

v7.25.1 (2024-07-28)

🐛 Bug Fix

  • babel-plugin-transform-function-name
  • babel-plugin-transform-react-constant-elements
    • #16582 fix plugin-transform-react-constant-elements transform JSXFrament but not add JSXExpressionContainer (@​keiseiTi)
  • babel-traverse

🏠 Internal

v7.25.0 (2024-07-26)

👓 Spec Compliance

  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3
  • babel-plugin-transform-typescript
    • #16602 Ensure enum members syntactically determinable to be strings do not get reverse mappings (@​liuxingbaoyu)

🚀 New Feature

  • babel-helper-create-class-features-plugin, babel-helper-function-name, babel-helper-plugin-utils, babel-helper-wrap-function, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-preset-env, babel-traverse, babel-types
  • babel-helper-hoist-variables, babel-helper-plugin-utils, babel-plugin-proposal-async-do-expressions, babel-plugin-transform-modules-systemjs, babel-traverse
  • babel-helper-create-class-features-plugin, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-split-export-declaration, babel-plugin-transform-classes, babel-traverse, babel-types
  • babel-helper-create-class-features-plugin, babel-helper-environment-visitor, babel-helper-module-transforms, babel-helper-plugin-utils, babel-helper-remap-async-to-generator, babel-helper-replace-supers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-bugfix-v8-static-class-fields-redefine-readonly, babel-plugin-transform-async-generator-functions, babel-plugin-transform-classes, babel-traverse
  • babel-core, babel-parser
  • babel-compat-data, babel-plugin-bugfix-safari-class-field-initializer-scope, babel-preset-env
  • babel-plugin-transform-block-scoping, babel-traverse, babel-types
  • babel-helper-import-to-platform-api, babel-plugin-proposal-json-modules
  • babel-helper-transform-fixture-test-runner, babel-node
  • babel-compat-data, babel-helper-create-regexp-features-plugin, babel-plugin-proposal-duplicate-named-capturing-groups-regex, babel-plugin-transform-duplicate-named-capturing-groups-regex, babel-preset-env, babel-standalone

🐛 Bug Fix

🏠 Internal

  • Other

... (truncated)

Commits

Updates @embroider/util from 1.13.1 to 1.13.2

Release notes

Sourced from @​embroider/util's releases.

v3.6.0-@​embroider/compat

Release (2024-07-18)

@​embroider/compat 3.6.0 (minor)

🚀 Enhancement

  • @embroider/compat, @embroider/test-scenarios

Committers: 1

v3.5.7-@​embroider/compat

Release (2024-07-16)

@​embroider/compat 3.5.7 (patch) @​embroider/util 1.13.2 (patch)

🐛 Bug Fix

🏠 Internal

  • @embroider/test-scenarios
  • Other
  • @embroider/util, @embroider/sample-transforms, @embroider/test-support, @embroider/test-scenarios

Committers: 2

v3.5.6-@​embroider/compat

Release (2024-07-03)

@​embroider/compat 3.5.6 (patch)

🐛 Bug Fix

Committers: 1

v5.0.0-@​embroider/addon-dev

Release (2024-06-27)

... (truncated)

Changelog

Sourced from @​embroider/util's changelog.

Embroider Changelog

Release (2024-07-03)

@​embroider/compat 3.5.6 (patch)

🐛 Bug Fix

Committers: 1

Release (2024-06-27)

@​embroider/addon-dev 5.0.0 (major)

💥 Breaking Change

Committers: 1

Release (2024-06-24)

@​embroider/compat 3.5.5 (patch) @​embroider/core 3.4.14 (patch) @​embroider/macros 1.16.5 (patch) @​embroider/shared-internals 2.6.2 (patch) @​embroider/webpack 4.0.4 (patch)

🐛 Bug Fix

  • @embroider/compat, @embroider/test-scenarios

🏠 Internal

  • @embroider/shared-internals

Committers: 2

Release (2024-06-20)

@​embroider/compat 3.5.4 (patch) @​embroider/core 3.4.13 (patch) @​embroider/macros 1.16.4 (patch)

... (truncated)

Commits

Updates @fontsource/source-sans-pro from 4.5.11 to 5.0.8

Commits

Updates @fortawesome/ember-fontawesome from 0.4.3 to 2.0.0

Release notes

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

2.0.0

Added

  • Support for Ember 4 and the first release of the 2.x major version of this component

1.0.3

Fixed

  • Source for ember-source was incorrectly pointing at an S3 URL

1.0.2

Fixed

  • Fix Font Awesome 5 importing (#236)

1.0.1

Fixed

  • Add ember-auto-import to dependencies #232

1.0.0

No Changes. We are marking this project as stable in anticipation of future Ember releases.

Changelog

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

2.0.0 - 2023-09-12

Added

  • Support for Ember 4 and the first release of the 2.x major version of this component

Previous 1.x CHANGELOG available https://github.com/FortAwesome/ember-fontawesome/blob/1.x/CHANGELOG.md

Commits

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

Release notes

Sourced from @​fortawesome/fontawesome-svg-core's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

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

Release notes

Sourced from @​fortawesome/free-regular-svg-icons's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

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

Release notes

Sourced from @​fortawesome/free-solid-svg-icons's releases.

Release 6.6.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates @sentry/ember from 7.118.0 to 8.26.0

Release notes

Sourced from @​sentry/ember's releases.

8.26.0

Important Changes

  • feat(node): Add fsInstrumentation (#13291)

    This release adds fsIntegration, an integration that instruments the fs API to the Sentry Node SDK. The integration creates spans with naming patterns of fs.readFile, fs.unlink, and so on.

    This integration is not enabled by default and needs to be registered in your Sentry.init call. You can configure via options whether to include path arguments or error messages as span attributes when an fs call fails:

    Sentry.init({
      integrations: [
        Sentry.fsIntegration({
          recordFilePaths: true,
          recordErrorMessagesAsSpanAttributes: true,
        }),
      ],
    });

    WARNING: This integration may add significant overhead to your appl...

    Description has been truncated

    Note
    Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot requested a review from a team as a code owner August 19, 2024 09:30
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 19, 2024
Bumps the js group with 18 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.8.6` | `3.11.4` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.9` | `7.25.2` |
| [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.21.3` | `7.25.1` |
| [@embroider/util](https://github.com/embroider-build/embroider) | `1.13.1` | `1.13.2` |
| [@fontsource/source-sans-pro](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/source-sans-pro) | `4.5.11` | `5.0.8` |
| [@fortawesome/ember-fontawesome](https://github.com/FortAwesome/ember-fontawesome) | `0.4.3` | `2.0.0` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.6.0` |
| [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.6.0` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.5.2` | `6.6.0` |
| [@sentry/ember](https://github.com/getsentry/sentry-javascript) | `7.118.0` | `8.26.0` |
| [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.9.0` |
| [qunit](https://github.com/qunitjs/qunit) | `2.19.4` | `2.22.0` |
| [qunit-dom](https://github.com/mainmatter/qunit-dom) | `3.0.0` | `3.2.0` |
| [sass](https://github.com/sass/dart-sass) | `1.58.3` | `1.77.8` |
| [shepherd.js](https://github.com/shepherd-pro/shepherd) | `11.2.0` | `13.0.3` |
| [tracked-built-ins](https://github.com/tracked-tools/tracked-built-ins) | `3.1.1` | `3.3.0` |



Updates `@apollo/client` from 3.8.6 to 3.11.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.11.4)

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

Updates `@babel/eslint-parser` from 7.21.3 to 7.25.1
- [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.1/eslint/babel-eslint-parser)

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 `@fontsource/source-sans-pro` from 4.5.11 to 5.0.8
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/source-sans-pro/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/source-sans-pro)

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

Updates `@fortawesome/fontawesome-svg-core` from 6.5.2 to 6.6.0
- [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.6.0)

Updates `@fortawesome/free-regular-svg-icons` from 6.5.2 to 6.6.0
- [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.6.0)

Updates `@fortawesome/free-solid-svg-icons` from 6.5.2 to 6.6.0
- [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.6.0)

Updates `@sentry/ember` from 7.118.0 to 8.26.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...8.26.0)

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.9.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.8.1...v16.9.0)

Updates `qunit` from 2.19.4 to 2.22.0
- [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.22.0)

Updates `qunit-dom` from 3.0.0 to 3.2.0
- [Release notes](https://github.com/mainmatter/qunit-dom/releases)
- [Commits](mainmatter/qunit-dom@v3.0.0...v3.2.0)

Updates `sass` from 1.58.3 to 1.77.8
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.58.3...1.77.8)

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

Updates `tracked-built-ins` from 3.1.1 to 3.3.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](tracked-tools/tracked-built-ins@v3.1.1...v3.3.0)

---
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: "@embroider/util"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js
- dependency-name: "@fontsource/source-sans-pro"
  dependency-type: direct:development
  update-type: version-update:semver-major
  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: "@sentry/ember"
  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: 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: sass
  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: tracked-built-ins
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/js-31db48d849 branch from 9b287a3 to 92ce15a Compare August 20, 2024 14:35
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