Skip to content

chore(deps): bump the js group across 1 directory with 21 updates #201

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 May 23, 2024

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

Package From To
fast-redact 3.3.0 3.5.0
@apollo/client 3.8.6 3.10.4
@babel/core 7.22.9 7.24.5
@babel/eslint-parser 7.21.3 7.24.5
@commitlint/cli 17.4.4 19.3.0
@commitlint/config-conventional 17.4.4 19.2.2
@embroider/macros 1.13.1 1.16.1
@embroider/util 1.12.0 1.13.1
@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.1 6.5.2
@fortawesome/free-regular-svg-icons 6.4.0 6.5.2
@fortawesome/free-solid-svg-icons 6.4.2 6.5.2
@sentry/ember 7.98.0 8.3.0
faker 4.1.0 6.6.6
qunit 2.19.4 2.20.1
qunit-dom 3.0.0 3.1.2
sass 1.58.3 1.77.2
shepherd.js 11.2.0 12.0.2
simplebar 6.2.5 6.2.6
tracked-built-ins 3.1.1 3.3.0

Updates fast-redact from 3.3.0 to 3.5.0

Release notes

Sourced from fast-redact's releases.

v3.5.0

What's Changed

New Contributors

Full Changelog: davidmarkclements/fast-redact@v3.4.1...v3.5.0

v3.4.1

What's Changed

New Contributors

Full Changelog: davidmarkclements/fast-redact@v3.4.0...v3.4.1

v3.4.0

What's Changed

New Contributors

Full Changelog: davidmarkclements/fast-redact@v3.3.0...v3.4.0

Commits

Updates @apollo/client from 3.8.6 to 3.10.4

Release notes

Sourced from @​apollo/client's releases.

v3.10.4

Patch Changes

  • #11838 8475346 Thanks @​alex-kinokon! - Don’t prompt for DevTools installation for browser extension page

  • #11839 6481fe1 Thanks @​jerelmiller! - Fix a regression in 3.9.5 where a merge function that returned an incomplete result would not allow the client to refetch in order to fulfill the query.

  • #11844 86984f2 Thanks @​jerelmiller! - Honor the @nonreactive directive when using cache.watchFragment or the useFragment hook to avoid rerendering when using these directives.

  • #11824 47ad806 Thanks @​phryneas! - Create branded QueryRef type without exposed properties.

    This change deprecates QueryReference in favor of a QueryRef type that doesn't expose any properties. This change also updates preloadQuery to return a new PreloadedQueryRef type, which exposes the toPromise function as it does today. This means that query refs produced by useBackgroundQuery and useLoadableQuery now return QueryRef types that do not have access to a toPromise function, which was never meant to be used in combination with these hooks.

    While we tend to avoid any types of breaking changes in patch releases as this, this change was necessary to support an upcoming version of the React Server Component integration, which needed to omit the toPromise function that would otherwise have broken at runtime. Note that this is a TypeScript-only change. At runtime, toPromise is still present on all queryRefs currently created by this package - but we strongly want to discourage you from accessing it in all cases except for the PreloadedQueryRef use case.

    Migration is as simple as replacing all references to QueryReference with QueryRef, so it should be possible to do this with a search & replace in most code bases:

    -import { QueryReference } from '@apollo/client'
    +import { QueryRef } from '@apollo/client'
    
    function Component({ queryRef }: { queryRef: QueryReference<TData> }) {
    
    
    function Component({ queryRef }: { queryRef: QueryRef<TData> }) {
    // ...
    }
  • #11845 4c5c820 Thanks @​jerelmiller! - Remove @nonreactive directives from queries passed to MockLink to ensure they are properly matched.

  • #11837 dff15b1 Thanks @​jerelmiller! - Fix an issue where a polled query created in React strict mode may not stop polling after the component unmounts while using the cache-and-network fetch policy.

  • v3.10.3

    Patch Changes

    v3.10.2

    Patch Changes

    • #11821 2675d3c Thanks @​jerelmiller! - Fix a regression where rerendering a component with useBackgroundQuery would recreate the queryRef instance when used with React's strict mode.

    • #11821 2675d3c Thanks @​jerelmiller! - Revert the change introduced in 3.9.10 via #11738 that disposed of queryRefs synchronously. This change caused too many issues with strict mode.

    v3.10.1

    Patch Changes

    ... (truncated)

    Changelog

    Sourced from @​apollo/client's changelog.

    3.10.4

    Patch Changes

    • #11838 8475346 Thanks @​alex-kinokon! - Don’t prompt for DevTools installation for browser extension page

    • #11839 6481fe1 Thanks @​jerelmiller! - Fix a regression in 3.9.5 where a merge function that returned an incomplete result would not allow the client to refetch in order to fulfill the query.

    • #11844 86984f2 Thanks @​jerelmiller! - Honor the @nonreactive directive when using cache.watchFragment or the useFragment hook to avoid rerendering when using these directives.

    • #11824 47ad806 Thanks @​phryneas! - Create branded QueryRef type without exposed properties.

      This change deprecates QueryReference in favor of a QueryRef type that doesn't expose any properties. This change also updates preloadQuery to return a new PreloadedQueryRef type, which exposes the toPromise function as it does today. This means that query refs produced by useBackgroundQuery and useLoadableQuery now return QueryRef types that do not have access to a toPromise function, which was never meant to be used in combination with these hooks.

      While we tend to avoid any types of breaking changes in patch releases as this, this change was necessary to support an upcoming version of the React Server Component integration, which needed to omit the toPromise function that would otherwise have broken at runtime. Note that this is a TypeScript-only change. At runtime, toPromise is still present on all queryRefs currently created by this package - but we strongly want to discourage you from accessing it in all cases except for the PreloadedQueryRef use case.

      Migration is as simple as replacing all references to QueryReference with QueryRef, so it should be possible to do this with a search & replace in most code bases:

      -import { QueryReference } from '@apollo/client'
      +import { QueryRef } from '@apollo/client'
      
      function Component({ queryRef }: { queryRef: QueryReference<TData> }) {
      
      
      function Component({ queryRef }: { queryRef: QueryRef<TData> }) {
      // ...
      }
  • #11845 4c5c820 Thanks @​jerelmiller! - Remove @nonreactive directives from queries passed to MockLink to ensure they are properly matched.

  • #11837 dff15b1 Thanks @​jerelmiller! - Fix an issue where a polled query created in React strict mode may not stop polling after the component unmounts while using the cache-and-network fetch policy.

  • 3.10.3

    Patch Changes

    3.10.2

    Patch Changes

    • #11821 2675d3c Thanks @​jerelmiller! - Fix a regression where rerendering a component with useBackgroundQuery would recreate the queryRef instance when used with React's strict mode.

    • #11821 2675d3c Thanks @​jerelmiller! - Revert the change introduced in 3.9.10 via #11738 that disposed of queryRefs synchronously. This change caused too many issues with strict mode.

    ... (truncated)

    Commits
    • d773000 Version Packages (#11843)
    • 6481fe1 Fix merge function that returns incomplete result that did not refetch from n...
    • 4c5c820 Remove @nonreactive directives from queries passed to MockLink (#11845)
    • 86984f2 Honor @nonreactive with useFragment and cache.watchFragment (#11844)
    • 8475346 Don’t prompt for DevTools installation for browser extension page (#11838)
    • dff15b1 Fix issue where query may not stop polling after unmount when in Strict mode ...
    • 47ad806 create branded QueryRef type without exposed properties (#11824)
    • 857f100 [docs] Update explainer around reducing-bundle-size (#11791)
    • 3861b7c chore(docs): fix url for reset function (#11836)
    • 50da867 Version Packages (#11833)
    • Additional commits viewable in compare view

    Updates @babel/core from 7.22.9 to 7.24.5

    Release notes

    Sourced from @​babel/core's releases.

    v7.24.5 (2024-04-29)

    Thanks @​romgrk and @​sossost for your first PRs!

    🐛 Bug Fix

    • babel-plugin-transform-classes, babel-traverse
    • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

    💅 Polish

    🏠 Internal

    • Other
    • babel-parser
    • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-transforms, babel-helper-split-export-declaration, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-block-scoping, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-private-property-in-object, babel-plugin-transform-react-jsx-self, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-traverse
    • babel-plugin-proposal-partial-application, babel-types
    • babel-plugin-transform-class-properties, babel-preset-env

    🏃‍♀️ Performance

    • babel-helpers, babel-preset-env, babel-runtime-corejs3

    Committers: 6

    v7.24.4 (2024-04-03)

    Thanks @​Dunqing, @​luiscubal, and @​samualtnorman for your first PRs!

    👓 Spec Compliance

    • babel-parser
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

    ... (truncated)

    Changelog

    Sourced from @​babel/core's changelog.

    v7.24.5 (2024-04-29)

    🐛 Bug Fix

    • babel-plugin-transform-classes, babel-traverse
    • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

    💅 Polish

    🏠 Internal

    • Other
    • babel-parser
    • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-transforms, babel-helper-split-export-declaration, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-block-scoping, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-private-property-in-object, babel-plugin-transform-react-jsx-self, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-traverse
    • babel-plugin-proposal-partial-application, babel-types
    • babel-plugin-transform-class-properties, babel-preset-env

    🏃‍♀️ Performance

    • babel-helpers, babel-preset-env, babel-runtime-corejs3

    v7.24.4 (2024-04-03)

    👓 Spec Compliance

    • babel-parser
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

    🐛 Bug Fix

    • babel-generator
    • babel-compat-data, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-preset-env
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-plugin-transform-block-scoping
    • babel-core, babel-plugin-transform-block-scoped-functions, babel-plugin-transform-block-scoping

    ... (truncated)

    Commits

    Updates @babel/eslint-parser from 7.21.3 to 7.24.5

    Release notes

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

    v7.24.5 (2024-04-29)

    Thanks @​romgrk and @​sossost for your first PRs!

    🐛 Bug Fix

    • babel-plugin-transform-classes, babel-traverse
    • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

    💅 Polish

    🏠 Internal

    • Other
    • babel-parser
    • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-transforms, babel-helper-split-export-declaration, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-block-scoping, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-private-property-in-object, babel-plugin-transform-react-jsx-self, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-traverse
    • babel-plugin-proposal-partial-application, babel-types
    • babel-plugin-transform-class-properties, babel-preset-env

    🏃‍♀️ Performance

    • babel-helpers, babel-preset-env, babel-runtime-corejs3

    Committers: 6

    v7.24.4 (2024-04-03)

    Thanks @​Dunqing, @​luiscubal, and @​samualtnorman for your first PRs!

    👓 Spec Compliance

    • babel-parser
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

    ... (truncated)

    Changelog

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

    v7.24.5 (2024-04-29)

    🐛 Bug Fix

    • babel-plugin-transform-classes, babel-traverse
    • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3

    💅 Polish

    🏠 Internal

    • Other
    • babel-parser
    • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-helper-module-transforms, babel-helper-split-export-declaration, babel-helper-wrap-function, babel-helpers, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-block-scoping, babel-plugin-transform-destructuring, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-chaining, babel-plugin-transform-parameters, babel-plugin-transform-private-property-in-object, babel-plugin-transform-react-jsx-self, babel-plugin-transform-typeof-symbol, babel-plugin-transform-typescript, babel-traverse
    • babel-plugin-proposal-partial-application, babel-types
    • babel-plugin-transform-class-properties, babel-preset-env

    🏃‍♀️ Performance

    • babel-helpers, babel-preset-env, babel-runtime-corejs3

    v7.24.4 (2024-04-03)

    👓 Spec Compliance

    • babel-parser
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3

    🐛 Bug Fix

    • babel-generator
    • babel-compat-data, babel-plugin-bugfix-firefox-class-in-computed-class-key, babel-preset-env
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-plugin-transform-block-scoping
    • babel-core, babel-plugin-transform-block-scoped-functions, babel-plugin-transform-block-scoping

    ... (truncated)

    Commits

    Updates @commitlint/cli from 17.4.4 to 19.3.0

    Release notes

    Sourced from @​commitlint/cli's releases.

    v19.3.0

    19.3.0 (2024-04-23)

    Features

    Chore

    New Contributors

    Full Changelog: conventional-changelog/commitlint@v19.2.2...v19.3.0

    v19.2.2

    19.2.2 (2024-04-14)

    Bug Fixes

    Chore

    New Contributors

    Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

    v19.2.1

    19.2.1 (2024-03-19)

    Bug Fixes

    New Contributors

    ... (truncated)

    Changelog

    Sourced from @​commitlint/cli's changelog.

    19.3.0 (2024-04-23)

    Note: Version bump only for package @​commitlint/cli

    19.2.2 (2024-04-14)

    Note: Version bump only for package @​commitlint/cli

    19.2.1 (2024-03-19)

    Note: Version bump only for package @​commitlint/cli

    19.2.0 (2024-03-15)

    Features

    • cli: introduce new --last flag, to stop recommending HEAD~1 (#3916) (99f4f3f)

    19.1.0 (2024-03-12)

    Note: Version bump only for package @​commitlint/cli

    19.0.3 (2024-02-28)

    Note: Version bump only for package @​commitlint/cli

    ... (truncated)

    Commits

    Updates @commitlint/config-conventional from 17.4.4 to 19.2.2

    Release notes

    Sourced from @​commitlint/config-conventional's releases.

    v19.2.2

    19.2.2 (2024-04-14)

    Bug Fixes

    Chore

    New Contributors

    Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

    v19.2.1

    19.2.1 (2024-03-19)

    Bug Fixes

    New Contributors

    Full Changelog: conventional-changelog/commitlint@v19.2.0...v19.2.1

    v19.2.0

    @dependabot dependabot bot requested a review from a team as a code owner May 23, 2024 08:32
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 23, 2024
    @dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/js-ced7ee4ced branch 3 times, most recently from 529b526 to cd2ae88 Compare May 23, 2024 10:04
    Bumps the js group with 21 updates in the /frontend directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [fast-redact](https://github.com/davidmarkclements/fast-redact) | `3.3.0` | `3.5.0` |
    | [@apollo/client](https://github.com/apollographql/apollo-client) | `3.8.6` | `3.10.4` |
    | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.9` | `7.24.5` |
    | [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) | `7.21.3` | `7.24.5` |
    | [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `17.4.4` | `19.3.0` |
    | [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `17.4.4` | `19.2.2` |
    | [@embroider/macros](https://github.com/embroider-build/embroider/tree/HEAD/packages/macros) | `1.13.1` | `1.16.1` |
    | [@embroider/util](https://github.com/embroider-build/embroider) | `1.12.0` | `1.13.1` |
    | [@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.1` | `6.5.2` |
    | [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.4.0` | `6.5.2` |
    | [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.4.2` | `6.5.2` |
    | [@sentry/ember](https://github.com/getsentry/sentry-javascript) | `7.98.0` | `8.3.0` |
    | [faker](https://github.com/Marak/Faker.js) | `4.1.0` | `6.6.6` |
    | [qunit](https://github.com/qunitjs/qunit) | `2.19.4` | `2.20.1` |
    | [qunit-dom](https://github.com/mainmatter/qunit-dom) | `3.0.0` | `3.1.2` |
    | [sass](https://github.com/sass/dart-sass) | `1.58.3` | `1.77.2` |
    | [shepherd.js](https://github.com/shepherd-pro/shepherd) | `11.2.0` | `12.0.2` |
    | [simplebar](https://github.com/grsmto/simplebar/tree/HEAD/packages/simplebar) | `6.2.5` | `6.2.6` |
    | [tracked-built-ins](https://github.com/tracked-tools/tracked-built-ins) | `3.1.1` | `3.3.0` |
    
    
    
    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 `@apollo/client` from 3.8.6 to 3.10.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.10.4)
    
    Updates `@babel/core` from 7.22.9 to 7.24.5
    - [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.24.5/packages/babel-core)
    
    Updates `@babel/eslint-parser` from 7.21.3 to 7.24.5
    - [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.24.5/eslint/babel-eslint-parser)
    
    Updates `@commitlint/cli` from 17.4.4 to 19.3.0
    - [Release notes](https://github.com/conventional-changelog/commitlint/releases)
    - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
    - [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.3.0/@commitlint/cli)
    
    Updates `@commitlint/config-conventional` from 17.4.4 to 19.2.2
    - [Release notes](https://github.com/conventional-changelog/commitlint/releases)
    - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
    - [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.2.2/@commitlint/config-conventional)
    
    Updates `@embroider/macros` from 1.13.1 to 1.16.1
    - [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.12.0 to 1.13.1
    - [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.1 to 6.5.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.1...6.5.2)
    
    Updates `@fortawesome/free-regular-svg-icons` from 6.4.0 to 6.5.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.4.0...6.5.2)
    
    Updates `@fortawesome/free-solid-svg-icons` from 6.4.2 to 6.5.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.4.2...6.5.2)
    
    Updates `@sentry/ember` from 7.98.0 to 8.3.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.98.0...8.3.0)
    
    Updates `faker` from 4.1.0 to 6.6.6
    - [Commits](https://github.com/Marak/Faker.js/commits)
    
    Updates `qunit` from 2.19.4 to 2.20.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.20.1)
    
    Updates `qunit-dom` from 3.0.0 to 3.1.2
    - [Release notes](https://github.com/mainmatter/qunit-dom/releases)
    - [Commits](mainmatter/qunit-dom@v3.0.0...v3.1.2)
    
    Updates `sass` from 1.58.3 to 1.77.2
    - [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.2)
    
    Updates `shepherd.js` from 11.2.0 to 12.0.2
    - [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 `simplebar` from 6.2.5 to 6.2.6
    - [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/HEAD/packages/simplebar)
    
    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: fast-redact
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: js
    - 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: "@commitlint/cli"
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: js
    - dependency-name: "@commitlint/config-conventional"
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: js
    - dependency-name: "@embroider/macros"
      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-minor
      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-patch
      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: 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: simplebar
      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-minor
      dependency-group: js
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/js-ced7ee4ced branch from cd2ae88 to fe50849 Compare May 23, 2024 15:41
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github May 24, 2024

    Superseded by #214.

    @dependabot dependabot bot closed this May 24, 2024
    @dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/js-ced7ee4ced branch May 24, 2024 10:47
    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