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

[Snyk] Upgrade: , , , , , , , , #798

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AnthonyPorthouse
Copy link
Owner

snyk-top-banner

Snyk has created this PR to upgrade multiple dependencies.

👯‍♂ The following dependencies are linked and will therefore be updated together.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.

Name Versions Released on

@esbuild/darwin-arm64
from 0.23.0 to 0.23.1 | 1 version ahead of your current version | 24 days ago
on 2024-08-16
@esbuild/linux-x64
from 0.23.0 to 0.23.1 | 1 version ahead of your current version | 24 days ago
on 2024-08-16
@rollup/rollup-darwin-arm64
from 4.20.0 to 4.21.0 | 1 version ahead of your current version | 23 days ago
on 2024-08-18
@rollup/rollup-linux-x64-gnu
from 4.20.0 to 4.21.0 | 1 version ahead of your current version | 23 days ago
on 2024-08-18
@tanstack/react-query
from 5.51.23 to 5.51.24 | 1 version ahead of your current version | 22 days ago
on 2024-08-19
@tanstack/react-query-devtools
from 5.51.23 to 5.51.24 | 1 version ahead of your current version | 22 days ago
on 2024-08-19
@tanstack/react-router
from 1.48.1 to 1.48.4 | 1 version ahead of your current version | 22 days ago
on 2024-08-19
@tanstack/react-virtual
from 3.9.0 to 3.10.1 | 2 versions ahead of your current version | 21 days ago
on 2024-08-20
@tanstack/router-devtools
from 1.48.1 to 1.48.4 | 1 version ahead of your current version | 22 days ago
on 2024-08-19

Release notes
Package name: @esbuild/darwin-arm64
  • 0.23.1 - 2024-08-16
    • Allow using the node: import prefix with es* targets (#3821)

      The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

      // Original code
      import fs from 'node:fs'
      fs.open

      // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "fs";
      fs.open;

      // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "node:fs";
      fs.open;

    • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

      Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

    • Fix incorrect location of certain error messages (#3845)

      This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

    • Print comments before case clauses in switch statements (#3838)

      With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

    • Fix a memory leak with pluginData (#3825)

      With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

  • 0.23.0 - 2024-07-02

    This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.22.0 or ~0.22.0. See npm's documentation about semver for more information.

    • Revert the recent change to avoid bundling dependencies for node (#3819)

      This release reverts the recent change in version 0.22.0 that made --packages=external the default behavior with --platform=node. The default is now back to --packages=bundle.

      I've just been made aware that Amazon doesn't pin their dependencies in their "AWS CDK" product, which means that whenever esbuild publishes a new release, many people (potentially everyone?) using their SDK around the world instantly starts using it without Amazon checking that it works first. This change in version 0.22.0 happened to break their SDK. I'm amazed that things haven't broken before this point. This revert attempts to avoid these problems for Amazon's customers. Hopefully Amazon will pin their dependencies in the future.

      In addition, this is probably a sign that esbuild is used widely enough that it now needs to switch to a more complicated release model. I may have esbuild use a beta channel model for further development.

    • Fix preserving collapsed JSX whitespace (#3818)

      When transformed, certain whitespace inside JSX elements is ignored completely if it collapses to an empty string. However, the whitespace should only be ignored if the JSX is being transformed, not if it's being preserved. This release fixes a bug where esbuild was previously incorrectly ignoring collapsed whitespace with --jsx=preserve. Here is an example:

      // Original code
      <Foo>
      <Bar />
      </Foo>

      // Old output (with --jsx=preserve)
      <Foo><Bar /></Foo>;

      // New output (with --jsx=preserve)
      <Foo>
      <Bar />
      </Foo>;

from @esbuild/darwin-arm64 GitHub release notes
Package name: @esbuild/linux-x64
  • 0.23.1 - 2024-08-16
    • Allow using the node: import prefix with es* targets (#3821)

      The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

      // Original code
      import fs from 'node:fs'
      fs.open

      // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "fs";
      fs.open;

      // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "node:fs";
      fs.open;

    • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

      Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

    • Fix incorrect location of certain error messages (#3845)

      This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

    • Print comments before case clauses in switch statements (#3838)

      With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

    • Fix a memory leak with pluginData (#3825)

      With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

  • 0.23.0 - 2024-07-02

    This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.22.0 or ~0.22.0. See npm's documentation about semver for more information.

    • Revert the recent change to avoid bundling dependencies for node (#3819)

      This release reverts the recent change in version 0.22.0 that made --packages=external the default behavior with --platform=node. The default is now back to --packages=bundle.

      I've just been made aware that Amazon doesn't pin their dependencies in their "AWS CDK" product, which means that whenever esbuild publishes a new release, many people (potentially everyone?) using their SDK around the world instantly starts using it without Amazon checking that it works first. This change in version 0.22.0 happened to break their SDK. I'm amazed that things haven't broken before this point. This revert attempts to avoid these problems for Amazon's customers. Hopefully Amazon will pin their dependencies in the future.

      In addition, this is probably a sign that esbuild is used widely enough that it now needs to switch to a more complicated release model. I may have esbuild use a beta channel model for further development.

    • Fix preserving collapsed JSX whitespace (#3818)

      When transformed, certain whitespace inside JSX elements is ignored completely if it collapses to an empty string. However, the whitespace should only be ignored if the JSX is being transformed, not if it's being preserved. This release fixes a bug where esbuild was previously incorrectly ignoring collapsed whitespace with --jsx=preserve. Here is an example:

      // Original code
      <Foo>
      <Bar />
      </Foo>

      // Old output (with --jsx=preserve)
      <Foo><Bar /></Foo>;

      // New output (with --jsx=preserve)
      <Foo>
      <Bar />
      </Foo>;

from @esbuild/linux-x64 GitHub release notes
Package name: @rollup/rollup-darwin-arm64 from @rollup/rollup-darwin-arm64 GitHub release notes
Package name: @rollup/rollup-linux-x64-gnu from @rollup/rollup-linux-x64-gnu GitHub release notes
Package name: @tanstack/react-query
  • 5.51.24 - 2024-08-19

    Version 5.51.24 - 8/19/24, 11:03 AM

    Changes

    Refactor

    • query-core: shorten listeners code (#7913) (6500c98) by Jonghyeon Ko

    Ci

    • *: official @ vitest/eslint-plugin (#7896) (ab1a353) by Jonghyeon Ko
    • apply automated fixes (04c977b) by autofix-ci[bot]
    • rename integration projects for consistency (#7875) (73fbf00) by Lachlan Collins

    Docs

    Doc

    • Issue template: Point to latest examples (#7878) (59a6d3d) by Ian VanSchooten

    Packages

    • @ tanstack/query-core@5.51.24
    • @ tanstack/query-sync-storage-persister@5.51.24
    • @ tanstack/react-query@5.51.24
    • @ tanstack/solid-query@5.51.24
    • @ tanstack/vue-query@5.51.24
    • @ tanstack/angular-query-experimental@5.51.24
    • @ tanstack/query-broadcast-client-experimental@5.51.24
    • @ tanstack/query-persist-client-core@5.51.24
    • @ tanstack/react-query-devtools@5.51.24
    • @ tanstack/react-query-persist-client@5.51.24
    • @ tanstack/react-query-next-experimental@5.51.24
    • @ tanstack/solid-query-devtools@5.51.24
    • @ tanstack/solid-query-persist-client@5.51.24
    • @ tanstack/svelte-query@5.51.24
    • @ tanstack/svelte-query-devtools@5.51.24
    • @ tanstack/svelte-query-persist-client@5.51.24
    • @ tanstack/vue-query-devtools@5.51.24
    • @ tanstack/angular-query-devtools-experimental@5.51.24
    • @ tanstack/query-async-storage-persister@5.51.24
  • 5.51.23 - 2024-08-08

    Version 5.51.23 - 8/8/24, 8:02 AM

    Changes

    Fix

    • react-query: ensure we have a gcTime of at least 1 second when using suspense (#7860) (c744f99) by Dominik Dorfmeister

    Docs

    Packages

    • @ tanstack/react-query@5.51.23
    • @ tanstack/react-query-devtools@5.51.23
    • @ tanstack/react-query-persist-client@5.51.23
    • @ tanstack/react-query-next-experimental@5.51.23
from @tanstack/react-query GitHub release notes
Package name: @tanstack/react-query-devtools
  • 5.51.24 - 2024-08-19

    Version 5.51.24 - 8/19/24, 11:03 AM

    Changes

    Refactor

    • query-core: shorten listeners code (#7913) (6500c98) by Jonghyeon Ko

    Ci

    • *: official @ vitest/eslint-plugin (#7896) (ab1a353) by Jonghyeon Ko
    • apply automated fixes (04c977b) by autofix-ci[bot]
    • rename integration projects for consistency (#7875) (73fbf00) by Lachlan Collins

    Docs

    Doc

    • Issue template: Point to latest examples (#7878) (59a6d3d) by Ian VanSchooten

    Packages

    • @ tanstack/query-core@5.51.24
    • @ tanstack/query-sync-storage-persister@5.51.24
    • @ tanstack/react-query@5.51.24
    • @ tanstack/solid-query@5.51.24
    • @ tanstack/vue-query@5.51.24
    • @ tanstack/angular-query-experimental@5.51.24
    • @ tanstack/query-broadcast-client-experimental@5.51.24
    • @ tanstack/query-persist-client-core@5.51.24
    • @ tanstack/react-query-devtools@5.51.24
    • @ tanstack/react-query-persist-client@5.51.24
    • @ tanstack/react-query-next-experimental@5.51.24
    • @ tanstack/solid-query-devtools@5.51.24
    • @ tanstack/solid-query-persist-client@5.51.24
    • @ tanstack/svelte-query@5.51.24
    • @ tanstack/svelte-query-devtools@5.51.24
    • @ tanstack/svelte-query-persist-client@5.51.24
    • @ tanstack/vue-query-devtools@5.51.24
    • @ tanstack/angular-query-devtools-experimental@5.51.24
    • @ tanstack/query-async-storage-persister@5.51.24
  • 5.51.23 - 2024-08-08

    Version 5.51.23 - 8/8/24, 8:02 AM

    Changes

    Fix

    • react-query: ensure we have a gcTime of at least 1 second when using suspense (#7860) (c744f99) by Dominik Dorfmeister

    Docs

    Packages

    • @ tanstack/react-query@5.51.23
    • @ tanstack/react-query-devtools@5.51.23
    • @ tanstack/react-query-persist-client@5.51.23
    • @ tanstack/react-query-next-experimental@5.51.23
from @tanstack/react-query-devtools GitHub release notes
Package name: @tanstack/react-router
  • 1.48.4 - 2024-08-19

    Version 1.48.4 - 8/19/24, 8:45 AM

    Changes

    Fix

    • react-router,start: ensure document is only used when available (#2120) (0fb2785) by Mathias Schreck

    Packages

    • @ tanstack/react-router@1.48.4
    • @ tanstack/start@1.48.4
    • @ tanstack/react-router-with-query@1.48.4
    • @ tanstack/router-zod-adapter@1.48.4
    • @ tanstack/router-valibot-adapter@1.48.4
    • @ tanstack/router-arktype-adapter@1.48.4
    • @ tanstack/router-devtools@1.48.4
  • 1.48.1 - 2024-08-15

    Version 1.48.1 - 8/15/24, 12:31 AM

    Changes

    Fix

    • react-router: explicitly set the default notFoundMode and update the RouterOptions JSDoc comments (#2133) (c66e1b5) by Sean Cassiere

    Packages

    • @ tanstack/react-router@1.48.1
    • @ tanstack/react-router-with-query@1.48.1
    • @ tanstack/router-zod-adapter@1.48.1
    • @ tanstack/router-valibot-adapter@1.48.1
    • @ tanstack/router-arktype-adapter@1.48.1
    • @ tanstack/router-devtools@1.48.1
    • @ tanstack/start@1.48.1
from @tanstack/react-router GitHub release notes
Package name: @tanstack/react-virtual
  • 3.10.1 - 2024-08-20

    Version 3.10.1 - 8/20/24, 3:57 AM

    Changes

    Fix

    • force release all (e48594d) by Tanner Linsley
    • force publish (064981f) by Tanner Linsley

    Packages

    • @ tanstack/lit-virtual@3.10.1
    • @ tanstack/react-virtual@3.10.1
    • @ tanstack/solid-virtual@3.10.1
    • @ tanstack/svelte-virtual@3.10.1
    • @ tanstack/virtual-core@3.10.1
    • @ tanstack/vue-virtual@3.10.1
    • @ tanstack/angular-virtual@3.10.1
  • 3.10.0 - 2024-08-19

    fix: sync versions with published already (#803)

  • 3.9.0 - 2024-08-14

    Version 3.9.0 - 8/14/24, 12:20 PM

    Changes

    Feat

    • support inverted horizontal scrolling for right-to-left locales (#787) (2f5821a) by Christian Achgill

    Chore

    • deps: update all non-major dependencies (#792) (0691037) by renovate[bot]
    • examples: Resolve duplicate first page and incorrect rendering start (#785) (06d631e) by JaeYoung

    Packages

    • @ tanstack/lit-virtual@3.9.0
    • @ tanstack/solid-virtual@3.9.0
    • @ tanstack/svelte-virtual@3.9.0
    • @ tanstack/virtual-core@3.9.0
    • @ tanstack/vue-virtual@3.9.0
    • @ tanstack/react-virtual@3.9.0
from @tanstack/react-virtual GitHub release notes
Package name: @tanstack/router-devtools
  • 1.48.4 - 2024-08-19

    Version 1.48.4 - 8/19/24, 8:45 AM

    Changes

    Fix

    • react-router,start: ensure document is only used when available (#2120) (0fb2785) by Mathias Schreck

    Packages

    • @ tanstack/react-router@1.48.4
    • @ tanstack/start@1.48.4
    • @ tanstack/react-router-with-query@1.48.4
    • @ tanstack/router-zod-adapter@1.48.4
    • @ tanstack/router-valibot-adapter@1.48.4
    • @ tanstack/router-arktype-adapter@1.48.4
    • @ tanstack/router-devtools@1.48.4
  • 1.48.1 - 2024-08-15

    Version 1.48.1 - 8/15/24, 12:31 AM

    Changes

    Fix

    • react-router: explicitly set the default notFoundMode and update the RouterOptions JSDoc comments (#2133) (c66e1b5) by Sean Cassiere

    Packages

    • @ tanstack/react-router@1.48.1
    • @ tanstack/react-router-with-query@1.48.1
    • @ tanstack/router-zod-adapter@1.48.1
    • @ tanstack/router-valibot-adapter@1.48.1
    • @ tanstack/router-arktype-adapter@1.48.1
    • @ tanstack/router-devtools@1.48.1
    • @ tanstack/start@1.48.1
from @tanstack/router-devtools GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

Snyk has created this PR to upgrade:
  - @esbuild/darwin-arm64 from 0.23.0 to 0.23.1.
    See this package in npm: https://www.npmjs.com/package/@esbuild/darwin-arm64
  - @esbuild/linux-x64 from 0.23.0 to 0.23.1.
    See this package in npm: https://www.npmjs.com/package/@esbuild/linux-x64
  - @rollup/rollup-darwin-arm64 from 4.20.0 to 4.21.0.
    See this package in npm: https://www.npmjs.com/package/@rollup/rollup-darwin-arm64
  - @rollup/rollup-linux-x64-gnu from 4.20.0 to 4.21.0.
    See this package in npm: https://www.npmjs.com/package/@rollup/rollup-linux-x64-gnu
  - @tanstack/react-query from 5.51.23 to 5.51.24.
    See this package in npm: https://www.npmjs.com/package/@tanstack/react-query
  - @tanstack/react-query-devtools from 5.51.23 to 5.51.24.
    See this package in npm: https://www.npmjs.com/package/@tanstack/react-query-devtools
  - @tanstack/react-router from 1.48.1 to 1.48.4.
    See this package in npm: https://www.npmjs.com/package/@tanstack/react-router
  - @tanstack/react-virtual from 3.9.0 to 3.10.1.
    See this package in npm: https://www.npmjs.com/package/@tanstack/react-virtual
  - @tanstack/router-devtools from 1.48.1 to 1.48.4.
    See this package in npm: https://www.npmjs.com/package/@tanstack/router-devtools

See this project in Snyk:
https://app.snyk.io/org/anthonyporthouse/project/fd8d22a8-210e-4e4c-a6e2-d97020f64650?utm_source=github&utm_medium=referral&page=upgrade-pr
Copy link

cloudflare-workers-and-pages bot commented Sep 10, 2024

Deploying react-airsonic with  Cloudflare Pages  Cloudflare Pages

Latest commit: 6d273e1
Status: ✅  Deploy successful!
Preview URL: https://3c116f67.react-airsonic.pages.dev
Branch Preview URL: https://snyk-upgrade-bafec1f1cea2545.react-airsonic.pages.dev

View logs

Copy link

sonarcloud bot commented Sep 10, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants