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

fix(deps): update all non-major dependencies #225

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react (source) ^11.13.0 -> ^11.13.3 age adoption passing confidence
@playwright/test (source) ^1.45.2 -> ^1.47.1 age adoption passing confidence
@swc/core (source) ^1.7.0 -> ^1.7.26 age adoption passing confidence
@swc/plugin-emotion ^3.0.10 -> ^3.0.13 age adoption passing confidence
@swc/plugin-styled-components ^2.0.10 -> ^2.0.12 age adoption passing confidence
@types/node (source) 20.14.11 -> 20.16.5 age adoption passing confidence
@types/react (source) ^18.3.3 -> ^18.3.8 age adoption passing confidence
@vitejs/release-scripts ^1.3.1 -> ^1.3.2 age adoption passing confidence
esbuild ^0.23.0 -> ^0.23.1 age adoption passing confidence
picocolors ^1.0.1 -> ^1.1.0 age adoption passing confidence
pnpm (source) 9.5.0 -> 9.10.0 age adoption passing confidence
react-router-dom (source) ^6.25.1 -> ^6.26.2 age adoption passing confidence
styled-components (source) ^6.1.12 -> ^6.1.13 age adoption passing confidence
typescript (source) ^5.5.3 -> ^5.6.2 age adoption passing confidence
vite (source) ^5.3.4 -> ^5.4.6 age adoption passing confidence

Release Notes

emotion-js/emotion (@​emotion/react)

v11.13.3

Compare Source

microsoft/playwright (@​playwright/test)

v1.47.1

Compare Source

v1.47.0

Compare Source

v1.46.1

Compare Source

v1.46.0

Compare Source

v1.45.3

Compare Source

swc-project/swc (@​swc/core)

v1.7.26

Compare Source

v1.7.25

Compare Source

Bug Fixes
Features
  • (es/common) Introduce pure Span and BytePos to handle #__PURE__ (#​9539) (f63a481)
Miscellaneous Tasks
  • (bindings/node) Fix type definition (64ec111)

v1.7.24

Compare Source

Bug Fixes
  • (es/compat) Handle label block in constructor (#​9528) (c43dbad)

  • (es/decorator) Add support for private access expressions in legacy decorators (#​9535) (62ed065)

  • (es/minifier) typeof class should be function (#​9522) (c7fdd6b)

  • (es/minifier) Prevent removing side effects from accessing getter (#​9530) (8513816)

  • (es/typescript) Handle enum in single statement (#​9532) (84b0043)

v1.7.23

Compare Source

Bug Fixes
Performance

v1.7.22

Compare Source

Bug Fixes
  • (es/minifier) Iterate object properties in reverse direction while inlining property access (#​9507) (f584ef7)

v1.7.21

Compare Source

Bug Fixes

v1.7.19

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
  • (es/codegen) Bump minimum required swc_allocator version to 0.1.8 (#​9492) (5258763)
Refactor

v1.7.18

Compare Source

v1.7.14

Compare Source

Bug Fixes
Features
Refactor

v1.7.12

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.11

Compare Source

Bug Fixes
Features
  • (es/typescript) Add native_class_properties to skip reordering of class properties inits (#​9421) (d2929d1)

  • (estree/compat) Remove dependency on rayon (#​9393) (34d1b27)

  • (html/minifier) Support using custom css minifier (#​9425) (970cc81)

Miscellaneous Tasks

v1.7.10

Compare Source

Bug Fixes
  • (es/typescript) Strip optional mark and definite mark (#​9411) (8c161a0)

  • (es/typescript) Strip exported default overload function declaration (#​9412) (b395f48)

  • (es/typescript) Strip this param in getter/setter (#​9414) (442fb7b)

  • (es/typescript) Update ts-strip type definition (#​9415) (165c8fa)

v1.7.9

Compare Source

Bug Fixes

v1.7.6

Compare Source

Bug Fixes
  • (es/codegen) Print the missing abstract in class expression (#​9372) (c2e3021)

  • (es/decorators) Use correct class name reference (#​9375) (badd6a9)

  • (es/typescript) Strip declare export in strip-only mode (#​9374) (c53cce4)

v1.7.5

Compare Source

Bug Fixes
Miscellaneous Tasks

v1.7.4

Compare Source

Bug Fixes
Documentation
Miscellaneous Tasks

v1.7.3

Compare Source

Bug Fixes

v1.7.2

Compare Source

Bug Fixes
Documentation
  • (bindings/wasm) Document supported TypeScript version (#​9334) (66f31c0)

v1.7.1

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
Refactor
Build
vitejs/release-scripts (@​vitejs/release-scripts)

v1.3.2

Compare Source

evanw/esbuild (esbuild)

v0.23.1

Compare Source

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

alexeyraspopov/picocolors (picocolors)

v1.1.0

Compare Source

  • Added bright color variants (#​55)
pnpm/pnpm (pnpm)

v9.10.0: pnpm 9.10

Compare Source

Minor Changes

  • Support for a new CLI flag, --exclude-peers, added to the list and why commands. When --exclude-peers is used, peer dependencies are not printed in the results, but dependencies of peer dependencies are still scanned #​8506.

  • Added a new setting to package.json at pnpm.auditConfig.ignoreGhsas for ignoring vulnerabilities by their GHSA code #​6838.

    For instance:

    {
      "pnpm": {
        "auditConfig": {
          "ignoreGhsas": [
            "GHSA-42xw-2xvc-qx8m",
            "GHSA-4w2v-q235-vp99",
            "GHSA-cph5-m8f7-6c5x",
            "GHSA-vh95-rmgr-6w4m"
          ]
        }
      }
    }

Patch Changes

  • Throw an exception if pnpm switches to the same version of itself.
  • Reduce memory usage during peer dependencies resolution.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v9.9.0

Compare Source

v9.8.0

Compare Source

v9.7.1

Compare Source

v9.7.0: pnpm 9.7

Compare Source

Minor Changes

  • Added pnpm version management. If the manage-package-manager-versions setting is set to true, pnpm will switch to the version specified in the packageManager field of package.json #​8363. This is the same field used by Corepack. Example:

    {
      "packageManager": "[email protected]"
    }
  • Added the ability to apply patch to all versions #​8337.

    If the key of pnpm.patchedDependencies is a package name without a version (e.g. pkg), pnpm will attempt to apply the patch to all versions of the package. Failures will be skipped. If there's only one version of pkg installed, pnpm patch pkg and subsequent pnpm patch-commit $edit_dir will create an entry named pkg in pnpm.patchedDependencies. And pnpm will attempt to apply this patch to other versions of pkg in the future.

  • Change the default edit dir location when running pnpm patch from a temporary directory to node_modules/.pnpm_patches/pkg[@​version] to allow the code editor to open the edit dir in the same file tree as the main project #​8379.

  • Substitute environment variables in config keys #​6679.

Patch Changes

  • pnpm install should run node-gyp rebuild if the project has a binding.gyp file even if the project doesn't have an install script #​8293.
  • Print warnings to stderr #​8342.
  • Peer dependencies of optional peer dependencies should be automatically installed #​8323.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 22, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 45da8d1 to 53d272d Compare July 23, 2024 00:28
@renovate renovate bot changed the title chore(deps): update pnpm to v9.6.0 chore(deps): update all non-major dependencies Jul 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from d7af20c to 9e5afec Compare July 30, 2024 09:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from b929757 to c535523 Compare August 7, 2024 17:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 719f7a4 to eb9dd5e Compare August 15, 2024 20:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ccd79b5 to ea25f6b Compare August 19, 2024 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 84af82a to aad57ae Compare August 21, 2024 11:20
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 21, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d92bb05 to 21066c4 Compare August 28, 2024 14:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 345e248 to 0b86dea Compare September 5, 2024 21:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 7134604 to df0d3c6 Compare September 13, 2024 20:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ee8c3bf to 7ce6433 Compare September 17, 2024 10:27
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants