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

chore(deps): update all non-major dependencies #3719

Merged
merged 1 commit into from
Jul 4, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) ^7.22.5 -> ^7.22.6 age adoption passing confidence
@types/node (source) ^18.16.18 -> ^18.16.19 age adoption passing confidence
esbuild ^0.18.10 -> ^0.18.11 age adoption passing confidence
eslint (source) ^8.43.0 -> ^8.44.0 age adoption passing confidence
fast-glob ^3.2.12 -> ^3.3.0 age adoption passing confidence
magic-string ^0.30.0 -> ^0.30.1 age adoption passing confidence
pnpm (source) 8.6.5 -> 8.6.6 age adoption passing confidence
rollup (source) 3.25.3 -> 3.26.0 age adoption passing confidence
tinypool ^0.5.0 -> ^0.6.0 age adoption passing confidence
ts-jest (source) ^29.1.0 -> ^29.1.1 age adoption passing confidence
typescript (source) ^5.1.5 -> ^5.1.6 age adoption passing confidence
vitepress (source) 1.0.0-beta.3 -> 1.0.0-beta.5 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-env)

v7.22.6

Compare Source

🐛 Bug Fix
  • babel-compat-data, babel-helper-compilation-targets, babel-preset-env
  • babel-plugin-transform-optional-chaining
  • babel-helper-split-export-declaration, babel-plugin-transform-modules-commonjs
  • babel-compat-data, babel-preset-env
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-runtime-corejs3, babel-runtime
  • babel-standalone
  • babel-core
🏠 Internal
  • babel-helper-create-class-features-plugin, babel-plugin-transform-classes
🔬 Output optimization
  • babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining, babel-plugin-transform-class-properties, babel-plugin-transform-optional-chaining, babel-plugin-transform-typescript
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-pipeline-operator, babel-plugin-transform-class-properties, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-traverse
evanw/esbuild (esbuild)

v0.18.11

Compare Source

  • Fix a TypeScript code generation edge case (#​3199)

    This release fixes a regression in version 0.18.4 where using a TypeScript namespace that exports a class declaration combined with --keep-names and a --target of es2021 or earlier could cause esbuild to export the class from the namespace using an incorrect name (notice the assignment to X2._Y vs. X2.Y):

    // Original code
    
    // Old output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
      const _Y = class _Y {
      };
      __name(_Y, "Y");
      let Y = _Y;
      X2._Y = _Y;
    })(X || (X = {}));
    
    // New output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
      const _Y = class _Y {
      };
      __name(_Y, "Y");
      let Y = _Y;
      X2.Y = _Y;
    })(X || (X = {}));
eslint/eslint (eslint)

v8.44.0

Compare Source

Features

  • 1766771 feat: add es2023 and es2024 environments (#​17328) (Milos Djermanovic)
  • 4c50400 feat: add ecmaVersion: 2024, regexp v flag parsing (#​17324) (Milos Djermanovic)
  • 4d411e4 feat: add ternaryOperandBinaryExpressions option to no-extra-parens rule (#​17270) (Percy Ma)
  • c8b1f4d feat: Move parserServices to SourceCode (#​17311) (Milos Djermanovic)
  • ef6e24e feat: treat unknown nodes as having the lowest precedence (#​17302) (Brad Zacher)
  • 1866e1d feat: allow flat config files to export a Promise (#​17301) (Milos Djermanovic)

Bug Fixes

  • a36bcb6 fix: no-unused-vars false positive with logical assignment operators (#​17320) (Gweesin Chan)
  • 7620b89 fix: Remove no-unused-labels autofix before potential directives (#​17314) (Francesco Trotta)
  • 391ed38 fix: Remove no-extra-semi autofix before potential directives (#​17297) (Francesco Trotta)

Documentation

Chores

mrmlnc/fast-glob (fast-glob)

v3.3.0

Compare Source

Full Changelog: mrmlnc/fast-glob@3.2.12...3.3.0

🚀 Improvements

Method aliases

New methods (glob, globSync, globStream) have been added in addition to the current methods (default import, sync, stream), which eliminate the need to rename the method when importing. In addition, an async alias has been added for the default import, which makes it possible to use this packet with ESM.

Method to convert paths to globs

A new method (convertPathToPattern) has been added in this release to convert a path to a pattern. The primary goal is to enable users to avoid processing Windows paths in each location where this package is used by utilities from third-party packages.

See more details in the pull request.

🐛 Bug fixes

  • In the past, we mishandled patterns that contained slashes when the baseNameMatch option was enabled, which went against the documented behavior. (#​312)
  • Several problems with matching patterns that contain brace expansion have been resolved. The primary issue solved is when the pattern has duplicate slashes after it is expanded (#​394), or the micromatch package does not correctly generate a regular expression (#​365).
  • All negative patterns will now have the dot option enabled when matching paths. Previously, the !**/* patterns did not exclude hidden files (start with a dot). (#​343)
  • The issue that led to duplicates in the results when overlapping or duplicate patterns were present among the patterns has been fixed. At the moment, we are only talking about leading dot. Other cases are not included. For example, running with the patterns ['./file.md', 'file.md', '*'] will now only include file.md once in the results. (#​190)

📖 Documentation

A clarifying note has been added for the concurrency option, which provides more detailed information about the Thread Pool utilization.

⚙️ Infrastructure

  • The benchmark in CI is now running on Node.js 20.
  • The benchmark now uses the public package bencho instead of an in-house implementation. You may want to try this solution for your packages and provide feedback.

🥇 New Contributors

rich-harris/magic-string (magic-string)

v0.30.1

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

v8.6.6

Compare Source

Patch Changes
  • Installation of a git-hosted dependency without package.json should not fail, when the dependency is read from cache #​6721.
  • Local workspace bin files that should be compiled first are linked to dependent projects after compilation #​1801.
  • Prefer versions found in parent package dependencies only #​6737.
  • Multiple performance optimizations implemented by @​zxbodya:
    • avoid copying preferredVersions object #​6735
    • avoid object copy in resolvePeersOfNode #​6736
    • preferredVersions in resolveDependenciesOfImporters #​6748
    • remove ramda isEmpty usages #​6753
    • use Maps and Sets instead of objects #​6749
    • optimize splitNodeId, fix invalid nodeId #​6755
Our Gold Sponsors
Our Silver Sponsors
rollup/rollup (rollup)

v3.26.0

Compare Source

2023-06-30

Features
  • Add --filterLogs CLI flag and ROLLUP_FILTER_LOGS environment variable for log filtering (#​5035)
Pull Requests
aslemammad/tinypool (tinypool)

v0.6.0

Compare Source

kulshekhar/ts-jest (ts-jest)

v29.1.1

Compare Source

Security Fixes
  • bump semver to 7.5.3
vuejs/vitepress (vitepress)

v1.0.0-beta.5

Compare Source

Bug Fixes
  • types: Sidebar was exported multiple times breaking the config (#​2573) (a99dcf9)

v1.0.0-beta.4

Compare Source

Bug Fixes
  • build: add @vue/devtools-api to optimizeDeps.include (#​2543) (b2a129f)
  • client: bypass client router for links explicitly specifying target (#​2563) (e95015f)
  • client: don't throw on using special chars in element ids (#​2560) (6b98113)
  • client: scroll not working on clicking an anchor in search box (#​2527) (c30e758)
  • theme: unresponsive back button with empty input in search box (#​2566) (fa3780f)
Features
BREAKING CHANGES
  • client: specifying target="_self" for internal links will now perform full reload.

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Jul 3, 2023
@stackblitz
Copy link

stackblitz bot commented Jul 3, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@netlify
Copy link

netlify bot commented Jul 3, 2023

Deploy Preview for fastidious-cascaron-4ded94 ready!

Name Link
🔨 Latest commit 5c95031
🔍 Latest deploy log https://app.netlify.com/sites/fastidious-cascaron-4ded94/deploys/64a3d918bfc59a0007a1353e
😎 Deploy Preview https://deploy-preview-3719--fastidious-cascaron-4ded94.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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 571316a to 681dd0f Compare July 3, 2023 13:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 681dd0f to 5c95031 Compare July 4, 2023 08:32
@sheremet-va sheremet-va merged commit d3b06f8 into main Jul 4, 2023
@sheremet-va sheremet-va deleted the renovate/all-minor-patch branch July 4, 2023 09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant