Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

Bumps the minor-frontend group in /frontend with 5 updates:

Package From To
axios 1.7.8 1.8.1
jotai 2.11.0 2.12.1
react-share 5.1.1 5.2.2
vega 5.31.0 5.32.0
typescript 5.7.2 5.8.2

Updates axios from 1.7.8 to 1.8.1

Release notes

Sourced from axios's releases.

Release v1.8.1

Release notes:

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

Release v1.8.0

Release notes:

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.8.1 (2025-02-26)

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

1.8.0 (2025-02-25)

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

... (truncated)

Commits
  • 2e64afd chore(release): v1.8.1 (#6800)
  • 36a5a62 fix(utils): move generateString to platform utils to avoid importing crypto...
  • cceb7b1 chore(release): v1.8.0 (#6795)
  • 23a25af fix(utils): replace getRandomValues with crypto module (#6788)
  • 32c7bcc feat: Add config for ignoring absolute URLs (#5902) (#6192)
  • 4a3e26c chore(config): adjust rollup config to preserve license header to minified Ja...
  • 30966a7 docs(type): fix typo in index.ts (#6030)
  • e7a9cbe test(transform): add test case for issue 5853 on response type to 'json' (#5901)
  • 51c1d7b chore(docs): typo in README (#6771)
  • b5b063e docs(readme): fix Request Config options code highlight (#6480)
  • Additional commits viewable in compare view

Updates jotai from 2.11.0 to 2.12.1

Release notes

Sourced from jotai's releases.

v2.12.1

This fixes an internal behavior necessary for some Jotai ecosystem libraries.

What's Changed

Full Changelog: pmndrs/jotai@v2.12.0...v2.12.1

v2.12.0

This introduces a significant change in the history of Jotai development. The Jotai core aims to remain minimal while supporting the growth of the ecosystem. It now exposes some internal functions for the ecosystem.

For library authors, please make sure to pin the jotai package version if you rely on these internal functions.

Huge thanks to @​dmaskasky for helping finalize the API.

What's Changed

Full Changelog: pmndrs/jotai@v2.11.3...v2.12.0

v2.11.3

Unfortunately, we encountered another regression with the v2.11 rearchitecture. We hope there are no more issues, but we can't be sure if it's stable unless no more are reported. Please give it a try and let us know if you find anything!

What's Changed

Full Changelog: pmndrs/jotai@v2.11.2...v2.11.3

v2.11.2

There was a regression in v2.11.1, which is fixed in this patch.

What's Changed

  • fix(core): derived atom is not re-evaluated if it read between multiple set by @​dai-shi in

New Contributors

Full Changelog: pmndrs/jotai@v2.11.1...v2.11.2

v2.11.1

Jotai v2.11.0 was a big change, and we faced some fundamental issues. It required time to reconsider the architecture from the ground up. We've added various tests, and this patch version should be more stable.

Having that said, we are still in the middle of the re-architecture. If you prefer to stay away from bleeding-edge features and encounter no bugs, feel free to keep using the previous versions.

Kudos to @​dmaskasky

What's Changed

... (truncated)

Commits
  • faea6a3 2.12.1
  • 10a2bbb chore: udpate dev dependencies (#2988)
  • f5d843c fix: remove extra onChange store hook in recomputeInvalidatedAtoms (#2982)
  • b04e073 chore: use default reporter in vitest and fix TS error (#2985)
  • b2bc128 chore(package.json): upgrade pnpm from v8 to v9 (#2987)
  • 6b15d22 2.12.0
  • e796fbe chore: update dev dependencies (#2981)
  • 253e9bd feat(core): expose internals instead of unstable_derive (#2911)
  • 72c1144 chore(package.json): reorder 'fix' scripts to run 'lint' before 'format' (#2976)
  • 2db9769 add pnpm run fix script and update pr template (#2975)
  • Additional commits viewable in compare view

Updates react-share from 5.1.1 to 5.2.2

Release notes

Sourced from react-share's releases.

v5.2.2

Patch Changes

  • d04d084: Fix warning of passing extraneous networkName for the share buttons.

v5.2.1

Patch Changes

  • 47c2906: Fix EmailShareButton: a bug slipped in that broke the sharing functionality.

v5.2.0

Minor Changes

  • 373add6: Added BlueskyShareButton and BlueskyIcon. This button will take a title and url parameter, and then use Bluesky Intent Links to share that content. There is also an overrideable seperator parameter (defaults as ' ') that seperates the title and url.
  • d45d811: Added ThreadsShareButton and ThreadsIcon.

Patch Changes

  • 8a5016a: Build tooling updates. May affect the distributed files.
  • 15e830f: The title prop is no longer passed to the button element, which may have caused e.g. warnings in the console before. Note that to set the native title attribute for the share buttons, you may use the htmlTitle prop.
  • d172111: Internal type fixes.

v5.1.2

Patch Changes

  • e5f3488: Support React 19 in peerDependencies
Changelog

Sourced from react-share's changelog.

5.2.2

Patch Changes

  • d04d084: Fix warning of passing extraneous networkName for the share buttons.

5.2.1

Patch Changes

  • 47c2906: Fix EmailShareButton: a bug slipped in that broke the sharing functionality.

5.2.0

Minor Changes

  • 373add6: Added BlueskyShareButton and BlueskyIcon. This button will take a title and url parameter, and then use Bluesky Intent Links to share that content. There is also an overrideable seperator parameter (defaults as ' ') that seperates the title and url.
  • d45d811: Added ThreadsShareButton and ThreadsIcon.

Patch Changes

  • 8a5016a: Build tooling updates. May affect the distributed files.
  • 15e830f: The title prop is no longer passed to the button element, which may have caused e.g. warnings in the console before. Note that to set the native title attribute for the share buttons, you may use the htmlTitle prop.
  • d172111: Internal type fixes.

5.1.2

Patch Changes

  • e5f3488: Support React 19 in peerDependencies
Commits
  • 9db8019 Merge pull request #569 from nygardk/changeset-release/master
  • dadcebb Version Packages
  • d04d084 fix extraneous networkName prop
  • f6ac8db Merge pull request #567 from nygardk/changeset-release/master
  • b198da3 Version Packages
  • 47c2906 fix EmailShareButton
  • 944d26f Merge pull request #560 from nygardk/changeset-release/master
  • 4fbed56 Version Packages
  • a6d7b6d Merge pull request #549 from cwlowder/master
  • 373add6 add Social Share Button and Icon for Bluesky
  • Additional commits viewable in compare view

Updates vega from 5.31.0 to 5.32.0

Release notes

Sourced from vega's releases.

v5.32.0

Changes since v5.31.0

vega-expression

  • Add base64 string encoder/decoder to vega-expression and vega-interpreter (via #4009). (Thanks @​hydrosquall!)

vega-typings

docs

Commits
  • c46889d chore: update vega-cli to v5.32.0 (#4015)
  • 2fe2e63 chore: v5.32.0 (#4014)
  • 81ed011 chore: remove extra space in test name
  • 6026887 fix: correct data year citation in dorling-cartogram example (#4006)
  • a3af49e feat: Add base64 string encoder/decoder to vega-expression and `vega-interp...
  • cd88cc8 fix(docs): Update typo in vega.timeFloor description (#4010)
  • 694560c Merge commit from fork
  • 560aeec docs: Add Security Advisory Policy for vega (#4008)
  • 0b6a114 feat(vega-typings): add Typescript Types for vega-loader (#4000)
  • b83b8e5 docs: Replace redirect url in expressions.md (#3996)
  • Additional commits viewable in compare view

Updates typescript from 5.7.2 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • 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

Bumps the minor-frontend group in /frontend with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [axios](https://github.com/axios/axios) | `1.7.8` | `1.8.1` |
| [jotai](https://github.com/pmndrs/jotai) | `2.11.0` | `2.12.1` |
| [react-share](https://github.com/nygardk/react-share) | `5.1.1` | `5.2.2` |
| [vega](https://github.com/vega/vega) | `5.31.0` | `5.32.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.8.2` |


Updates `axios` from 1.7.8 to 1.8.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.8...v1.8.1)

Updates `jotai` from 2.11.0 to 2.12.1
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.11.0...v2.12.1)

Updates `react-share` from 5.1.1 to 5.2.2
- [Release notes](https://github.com/nygardk/react-share/releases)
- [Changelog](https://github.com/nygardk/react-share/blob/master/CHANGELOG.md)
- [Commits](nygardk/react-share@v5.1.1...v5.2.2)

Updates `vega` from 5.31.0 to 5.32.0
- [Release notes](https://github.com/vega/vega/releases)
- [Commits](vega/vega@v5.31.0...v5.32.0)

Updates `typescript` from 5.7.2 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.8.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-frontend
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-frontend
- dependency-name: react-share
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-frontend
- dependency-name: vega
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-frontend
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-frontend
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 1, 2025
@netlify
Copy link

netlify bot commented Mar 1, 2025

Deploy Preview for health-equity-tracker ready!

Name Link
🔨 Latest commit 7485c83
🔍 Latest deploy log https://app.netlify.com/sites/health-equity-tracker/deploys/67c726e7db38cf000894004f
😎 Deploy Preview https://deploy-preview-3973--health-equity-tracker.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@benhammondmusic benhammondmusic merged commit 75e7ef8 into main Mar 4, 2025
12 checks passed
@benhammondmusic benhammondmusic deleted the dependabot/npm_and_yarn/frontend/minor-frontend-617b94d936 branch March 4, 2025 21:32
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.

2 participants