adfinis / timed

Monorepo for the Timed time-tracking application
GNU Affero General Public License v3.0
4 stars 5 forks source link

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

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
@apollo/client 3.8.6 3.10.4
@babel/core 7.22.9 7.24.7
@babel/eslint-parser 7.21.3 7.24.7
@commitlint/cli 17.4.4 19.3.0
@commitlint/config-conventional 17.4.4 19.2.2
@embroider/macros 1.13.1 1.16.2
@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.7.0
faker 4.1.0 6.6.6
fast-redact 3.3.0 3.5.0
qunit 2.19.4 2.21.0
qunit-dom 3.0.0 3.1.2
sass 1.58.3 1.77.4
shepherd.js 11.2.0 12.0.5
simplebar 6.2.5 6.2.6
tracked-built-ins 3.1.1 3.3.0

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

    Release notes

    Sourced from @​babel/core's releases.

    v7.24.7 (2024-06-05)

    :bug: Bug Fix

    :house: Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    Committers: 7

    v7.24.6 (2024-05-24)

    Thanks @​amjed-98, @​blakewilson, @​coelhucas, and @​SukkaW for your first PRs!

    :bug: Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    :house: Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other

    ... (truncated)

    Changelog

    Sourced from @​babel/core's changelog.

    v7.24.7 (2024-06-05)

    :bug: Bug Fix

    :house: Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    v7.24.6 (2024-05-24)

    :bug: Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    :house: Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other

    v7.24.5 (2024-04-29)

    :bug: Bug Fix

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

    :nail_care: Polish

    • babel-parser

    ... (truncated)

    Commits


    Updates @babel/eslint-parser from 7.21.3 to 7.24.7

    Release notes

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

    v7.24.7 (2024-06-05)

    :bug: Bug Fix

    :house: Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    Committers: 7

    v7.24.6 (2024-05-24)

    Thanks @​amjed-98, @​blakewilson, @​coelhucas, and @​SukkaW for your first PRs!

    :bug: Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    :house: Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other

    ... (truncated)

    Changelog

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

    v7.24.7 (2024-06-05)

    :bug: Bug Fix

    :house: Internal

    • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

    v7.24.6 (2024-05-24)

    :bug: Bug Fix

    • babel-helper-create-class-features-plugin, babel-plugin-transform-class-properties
    • babel-core, babel-generator, babel-plugin-transform-modules-commonjs
    • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
    • babel-helpers, babel-plugin-proposal-decorators, babel-runtime-corejs3
      • #16483 Fix: throw TypeError if addInitializer is called after finished (@​JLHwung)
    • babel-parser, babel-plugin-transform-typescript

    :house: Internal

    • babel-core, babel-helpers, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-helpers
    • babel-cli, babel-helpers, babel-plugin-external-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
    • babel-parser, babel-traverse
    • Other

    v7.24.5 (2024-04-29)

    :bug: Bug Fix

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

    :nail_care: Polish

    • babel-parser

    ... (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: https://github.com/conventional-changelog/commitlint/compare/v19.2.2...v19.3.0

    v19.2.2

    19.2.2 (2024-04-14)

    Bug Fixes

    Chore

    New Contributors

    Full Changelog: https://github.com/conventional-changelog/commitlint/compare/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: https://github.com/conventional-changelog/commitlint/compare/v19.2.1...v19.2.2

    v19.2.1

    19.2.1 (2024-03-19)

    Bug Fixes

    New Contributors

    Full Changelog: https://github.com/conventional-changelog/commitlint/compare/v19.2.0...v19.2.1

    v19.2.0

    19.2.0 (2024-03-15)

    Features

    New Contributors

    Full Changelog: https://github.com/conventional-changelog/commitlint/compare/v19.1.0...v19.2.0

    v19.1.0

    ... (truncated)

    Changelog

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

    19.2.2 (2024-04-14)

    Note: Version bump only for package @​commitlint/config-conventional

    19.1.0 (2024-03-12)

    Note: Version bump only for package @​commitlint/config-conventional

    19.0.3 (2024-02-28)

    Note: Version bump only for package @​commitlint/config-conventional

    19.0.0 (2024-02-27)

    Reverts

    • Revert "chore!: minimum node version v20" (2816783)

    BREAKING CHANGES

    • migrate to pure ESM

    • feat: migrate to pure ESM

    • chore: update snapshot

    • fix: load parserPreset with another await

    • test: migrate to vitest

    • test: remove no replacement --runInBand test-ci script

    • chore: fix code reviews

    ... (truncated)

    Commits