equinor / mercury

Mercury calculator - API and Webapp
https://mercury.app.radix.equinor.com
MIT License
1 stars 0 forks source link

chore(deps): bump the front-end group in /web with 6 updates #540

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 4 months ago

Bumps the front-end group in /web with 6 updates:

Package From To
@equinor/eds-core-react 0.36.0 0.36.1
@microsoft/applicationinsights-react-js 17.0.3 17.1.0
@microsoft/applicationinsights-web 3.0.8 3.1.0
react-oauth2-code-pkce 1.16.1 1.17.2
@types/node 20.11.17 20.11.24
@types/react 18.2.55 18.2.61

Updates @equinor/eds-core-react from 0.36.0 to 0.36.1

Release notes

Sourced from @​equinor/eds-core-react's releases.

eds-core-react@0.36.1

[0.36.1] - 2024-03-01

Changed

Fixed

Changelog

Sourced from @​equinor/eds-core-react's changelog.

[0.36.1] - 2024-03-01

Changed

Fixed

Commits
  • 760f745 🔖 Release eds-core-react@0.36.1, eds-lab-react@0.7.6 (#3338)
  • 322fae9 ⬆️ downshift@8.3.3 (#3336)
  • 3884152 ⬆️ Update dependencies in packages (#3298)
  • 0f71502 fix: packages/eds-core-react/Dockerfile.storybook to reduce vulnerabilities (...
  • See full diff in compare view


Updates @microsoft/applicationinsights-react-js from 17.0.3 to 17.1.0

Release notes

Sourced from @​microsoft/applicationinsights-react-js's releases.

17.1.0

What's Changed

Full Changelog: https://github.com/microsoft/applicationinsights-react-js/compare/17.0.4...17.1.0

17.0.4

Changelog

  • #76 [npm fix] remove sample project from rush
  • #75 Update Application Insights to ^3.0.8
  • #77 Update @​microsoft/rush to ^5.113.4
  • #78 Bump postcss from 8.4.29 to 8.4.35

What's Changed

New Contributors

Full Changelog: https://github.com/microsoft/applicationinsights-react-js/compare/17.0.3...17.0.4

Changelog

Sourced from @​microsoft/applicationinsights-react-js's changelog.

17.1.0 (Feb 15th, 2024)

Changelog

  • #75 Update Application Insights to ^3.1.0

17.0.4 (Feb 12th, 2024)

Changelog

  • #76 [npm fix] remove sample project from rush
  • #75 Update Application Insights to ^3.0.8
  • #77 Update @​microsoft/rush to ^5.113.4
  • #78 Bump postcss from 8.4.29 to 8.4.35
Commits


Updates @microsoft/applicationinsights-web from 3.0.8 to 3.1.0

Release notes

Sourced from @​microsoft/applicationinsights-web's releases.

3.1.0

Changelog

Interface changes / Breaking changes

This release includes support for a new Offline Channel which has changed the IChannelsControls interface to include additional support for the new offline channel. This change is to support the new offline channel and is a breaking change for any custom channels that implement the IChannelsControls interface. If you have a custom channel that implements the IChannelsControls interface you will need to update your implementation to include the new offline channel.

Configuration default changes

As this is a minor version bump we have also change some default values for the following configuration options:

  • disableUserInitMessage is now true by default to disable the user init message.

Potential breaking change

This release contains a potential break change with 'tags' type change

While the interface changes are breaking changes, the changes are not expected to affect the majority of users as when the code attempted to serialize the tags property it would have failed due to the Tags[] type being used instead of the correct Tags type.

Old

    tags?: Tags & Tags[]; 

New

    tags?: Tags;

New Offline Channel

This release also includes the new offline channel which is a new channel that is designed to support offline scenarios. The offline channel is designed to store telemetry items in local storage and then send them when the user comes back online. To take full advantage of the initial version you will need to implement your own IOfflineListener to handle situations where you may have "network" connectivity but not internet access. As the navigator.onLine property if available will only tell you if you have network connectivity and not internet access.

Changelog

  • #2186 [main] offlineListener preparation
  • #2241 [Main][Task]26451789: Add Offline Support
  • #2259 [Main][Task]26694421: Add Offline Support Publish Group
  • #2267 [Main][Task]26681220: Better handle timers in offline channel
  • #2028 [BUG] AI (Internal): 72 tracking
    • Sets the default value for the disableUserInitMessage to true (was previously false since adding)
  • #2193 [main] Add extra config in sender to let users define transports type
  • #2200 [main] [doc] Highlight an issue with the default UMD module format when loading from the CDN into an environment that may have require.js
  • #2208 [Main][Task]26079397: Add disableBeaconSplit sender config and fix potential duplicated events during unload/fallback sender
    • #2236 [Main][Task]26396663: Set default disableBeaconSplit to true
  • #2204 [BUG] Beacon sender reports error for success when diagnostics are enabled

... (truncated)

Changelog

Sourced from @​microsoft/applicationinsights-web's changelog.

3.1.0 (Feb 14th, 2024)

Interface changes / Breaking changes

This release includes support for a new Offline Channel which has changed the IChannelsControls interface to include additional support for the new offline channel. This change is to support the new offline channel and is a breaking change for any custom channels that implement the IChannelsControls interface. If you have a custom channel that implements the IChannelsControls interface you will need to update your implementation to include the new offline channel.

Configuration default changes

As this is a minor version bump we have also change some default values for the following configuration options:

  • disableUserInitMessage is now true by default to disable the user init message.

Potential breaking change

This release contains a potential break change with 'tags' type change

While the interface changes are breaking changes, the changes are not expected to affect the majority of users as when the code attempted to serialize the tags property it would have failed due to the Tags[] type being used instead of the correct Tags type.

Old

    tags?: Tags & Tags[]; 

New

    tags?: Tags;

New Offline Channel

This release also includes the new offline channel which is a new channel that is designed to support offline scenarios. The offline channel is designed to store telemetry items in local storage and then send them when the user comes back online. To take full advantage of the initial version you will need to implement your own IOfflineListener to handle situations where you may have "network" connectivity but not internet access. As the navigator.onLine property if available will only tell you if you have network connectivity and not internet access.

Changelog

  • #2186 [main] offlineListener preparation
  • #2241 [Main][Task]26451789: Add Offline Support
  • #2259 [Main][Task]26694421: Add Offline Support Publish Group
  • #2267 [Main][Task]26681220: Better handle timers in offline channel
  • #2028 [BUG] AI (Internal): 72 tracking
    • Sets the default value for the disableUserInitMessage to true (was previously false since adding)
  • #2193 [main] Add extra config in sender to let users define transports type
  • #2200 [main] [doc] Highlight an issue with the default UMD module format when loading from the CDN into an environment that may have require.js
  • #2208 [Main][Task]26079397: Add disableBeaconSplit sender config and fix potential duplicated events during unload/fallback sender
    • #2236 [Main][Task]26396663: Set default disableBeaconSplit to true
  • #2204 [BUG] Beacon sender reports error for success when diagnostics are enabled
  • #2214 [main] Merge Release-3.0 to main

... (truncated)

Commits


Updates react-oauth2-code-pkce from 1.16.1 to 1.17.2

Commits
  • c6f9410 chore: bump version
  • 2f8033b chore: update packages in root- and example package.json, and remove eslint...
  • 46ede58 chore: update README
  • 4b5027a fix: safeguard against unparsable storage values
  • 6cad6aa feat: use selected storage for auth state and code verifier
  • edcaac9 fix: add randomStagger to refresh interval
  • 528aea3 doc: added known issue on 'Bad auth state'
  • 5f040ea fix: handle token response with no refresh_token
  • 0a2d0ae bump version
  • 5defa83 feature: get exp from decoded Idtoken and use as fallback
  • See full diff in compare view


Updates @types/node from 20.11.17 to 20.11.24

Commits


Updates @types/react from 18.2.55 to 18.2.61

Commits


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 3 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.