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

Bump the major-dependencies group with 5 updates #2903

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the major-dependencies group with 5 updates:

Package From To
@navikt/aksel-icons 6.16.3 7.0.1
@navikt/ds-css 6.16.3 7.0.1
@navikt/ds-react 6.16.3 7.0.1
@navikt/ds-tokens 6.16.3 7.0.1
date-fns 3.6.0 4.1.0

Updates @navikt/aksel-icons from 6.16.3 to 7.0.1

Changelog

Sourced from @​navikt/aksel-icons's changelog.

7.0.1

7.0.0

Major Changes

6.17.0

Minor Changes

  • Icons: New 'face' icons for 'Engagement'-category. (#3134)
Commits

Updates @navikt/ds-css from 6.16.3 to 7.0.1

Changelog

Sourced from @​navikt/ds-css's changelog.

Changelog

7.0

@​navikt/aksel-icons

@​navikt/ds-react

  • Combobox: Fix issue with whitespace in the ID of options with multiple spaces (#3162)
  • ErrorSummary: Focus heading instead of container for improved experience with screen reader. (#3139)

@​navikt/ds-tailwind

@​navikt/ds-css

  • List: 💄 make icons 24x24px large (#3148)
  • ErrorSummary: Focus heading instead of container for improved experience with screen reader. (#3139)

6.17

@​navikt/aksel-icons

  • Icons: New 'face' icons for 'Engagement'-category. (#3134)

@​navikt/ds-react

  • Combobox: Add support for onBlur, and omit props that have no effect. (#3125)

6.16

@​navikt/aksel

  • Aksel-CLI: Bump jscodeshift-add-imports to 1.0.11. (#3099)

@​navikt/aksel-icons

  • Icons: Updated Clipboard icons. (#3113)

@​navikt/ds-react

... (truncated)

Commits
  • 0d29a07 Version Packages (#3151)
  • d6b685c Bugfix/combobox list items with multiple spaces get invalid (#3162)
  • 17eaf61 🎨 [referansesider] sykepenger++
  • f0820f4 🎨 [referansesider] sykepenger++
  • cd9dc04 Upgrade dockerimage (#3160)
  • bc711c9 💄 [referansesider] css tweaks for Accordion
  • 5fd1d38 🎨 [referansesider] add PillLink
  • f44acf4 build(deps-dev): Bump vite in /examples/referansesider (#3154)
  • 302eed3 💄 [referansesider] use new tokens 👏
  • 24bec11 💄 [referansesider] Accordion
  • Additional commits viewable in compare view

Updates @navikt/ds-react from 6.16.3 to 7.0.1

Changelog

Sourced from @​navikt/ds-react's changelog.

Changelog

7.0

@​navikt/aksel-icons

@​navikt/ds-react

  • Combobox: Fix issue with whitespace in the ID of options with multiple spaces (#3162)
  • ErrorSummary: Focus heading instead of container for improved experience with screen reader. (#3139)

@​navikt/ds-tailwind

@​navikt/ds-css

  • List: 💄 make icons 24x24px large (#3148)
  • ErrorSummary: Focus heading instead of container for improved experience with screen reader. (#3139)

6.17

@​navikt/aksel-icons

  • Icons: New 'face' icons for 'Engagement'-category. (#3134)

@​navikt/ds-react

  • Combobox: Add support for onBlur, and omit props that have no effect. (#3125)

6.16

@​navikt/aksel

  • Aksel-CLI: Bump jscodeshift-add-imports to 1.0.11. (#3099)

@​navikt/aksel-icons

  • Icons: Updated Clipboard icons. (#3113)

@​navikt/ds-react

... (truncated)

Commits
  • 0d29a07 Version Packages (#3151)
  • d6b685c Bugfix/combobox list items with multiple spaces get invalid (#3162)
  • 17eaf61 🎨 [referansesider] sykepenger++
  • f0820f4 🎨 [referansesider] sykepenger++
  • cd9dc04 Upgrade dockerimage (#3160)
  • bc711c9 💄 [referansesider] css tweaks for Accordion
  • 5fd1d38 🎨 [referansesider] add PillLink
  • f44acf4 build(deps-dev): Bump vite in /examples/referansesider (#3154)
  • 302eed3 💄 [referansesider] use new tokens 👏
  • 24bec11 💄 [referansesider] Accordion
  • Additional commits viewable in compare view

Updates @navikt/ds-tokens from 6.16.3 to 7.0.1

Changelog

Sourced from @​navikt/ds-tokens's changelog.

7.0.1

7.0.0

6.17.0

Commits

Updates date-fns from 3.6.0 to 4.1.0

Release notes

Sourced from date-fns's releases.

v4.1.0

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),

... (truncated)

Changelog

Sourced from date-fns's changelog.

v4.1.0 - 2024-09-17

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade TZDate to v1.0.2 as it includes a bunch of critical bug fixes.

Fixed

  • Fixed internal constructFrom throwing an exception on null arguments. While null isn't allowed, the functions should rather return Invalid Date or NaN in such cases. See #3885.

Added

  • Added missing time zone support to format, formatISO, formatISO9075, formatRelative and formatRFC3339. See #3886.

v4.0.0 - 2024-09-16

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

Read more about the release in the announcement blog post.

- Sasha @​kossnocorp

Added

  • Added time zones support via @date-fns/tz's TZDate class and tz helper function. See its README for the details about the API.

  • All relevant functions now accept the context in option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@date-fns/tz";
    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"

    In the example, addDays will get the current date and time in Singapore and add 5 days to it. startOfDay will inherit the date type and return the start of the day in Singapore.

Changed

  • The function arguments, as well as Interval's start and end, now can be of different types, allowing you to mix UTCDate, TZDate, Date, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context in option or the first encountered argument object type. The Interval's start and end will be considered separately, starting from start.

    In the given example, the result will be in the TZDate as the first argument is a number, and the start takes precedence over the end.

    clamp(Date.now(), {

... (truncated)

Commits
  • 313b902 Fix v4.1.0 change log entry
  • 26cd336 Promote to v4.1.0
  • 97b53b9 Cover time zone edge cases
  • 59b7563 Add missing time zone support to format, formatISO, formatISO9075, formatRela...
  • 0121164 Prevent constructFrom from throwing an error on null
  • bd87ef5 Update @​date-fns/docs
  • 99b4e67 Prepare v4.0
  • 8df1706 Rewrite the time zones doc
  • e351977 Promote to v4.0.0-beta.1
  • 8523656 Fix scripts/test/types.sh
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from a team as a code owner September 23, 2024 07:04
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 23, 2024
Bumps the major-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@navikt/aksel-icons](https://github.com/navikt/aksel/tree/HEAD/@navikt/aksel-icons) | `6.16.3` | `7.0.1` |
| [@navikt/ds-css](https://github.com/navikt/aksel) | `6.16.3` | `7.0.1` |
| [@navikt/ds-react](https://github.com/navikt/aksel) | `6.16.3` | `7.0.1` |
| [@navikt/ds-tokens](https://github.com/navikt/aksel/tree/HEAD/@navikt/core/tokens) | `6.16.3` | `7.0.1` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.6.0` | `4.1.0` |


Updates `@navikt/aksel-icons` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/aksel-icons/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/aksel-icons)

Updates `@navikt/ds-css` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-react` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-tokens` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/core/tokens/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/core/tokens)

Updates `date-fns` from 3.6.0 to 4.1.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.6.0...v4.1.0)

---
updated-dependencies:
- dependency-name: "@navikt/aksel-icons"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-css"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-tokens"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/major-dependencies-7a4561d70f branch from 9566985 to a9e63f7 Compare September 23, 2024 08:38
dependabot bot and others added 2 commits September 23, 2024 10:58
Bumps the major-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@navikt/aksel-icons](https://github.com/navikt/aksel/tree/HEAD/@navikt/aksel-icons) | `6.16.3` | `7.0.1` |
| [@navikt/ds-css](https://github.com/navikt/aksel) | `6.16.3` | `7.0.1` |
| [@navikt/ds-react](https://github.com/navikt/aksel) | `6.16.3` | `7.0.1` |
| [@navikt/ds-tokens](https://github.com/navikt/aksel/tree/HEAD/@navikt/core/tokens) | `6.16.3` | `7.0.1` |
| [date-fns](https://github.com/date-fns/date-fns) | `3.6.0` | `4.1.0` |

Updates `@navikt/aksel-icons` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/aksel-icons/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/aksel-icons)

Updates `@navikt/ds-css` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-react` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-tokens` from 6.16.3 to 7.0.1
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/core/tokens/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/core/tokens)

Updates `date-fns` from 3.6.0 to 4.1.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](date-fns/date-fns@v3.6.0...v4.1.0)

---
updated-dependencies:
- dependency-name: "@navikt/aksel-icons"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-css"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: "@navikt/ds-tokens"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@gunnsteingarmo gunnsteingarmo merged commit c7bf826 into main Sep 23, 2024
1 check passed
@gunnsteingarmo gunnsteingarmo deleted the dependabot/npm_and_yarn/major-dependencies-7a4561d70f branch September 23, 2024 09:04
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.

1 participant