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

build(deps): update patch & minor updates #578

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.25.8 -> 7.26.0 age adoption passing confidence
@babel/preset-env (source) 7.25.8 -> 7.26.0 age adoption passing confidence
esbuild ^0.23.0 -> ^0.24.0 age adoption passing confidence
mini-css-extract-plugin 2.9.1 -> 2.9.2 age adoption passing confidence
npm-run-all2 6.2.3 -> 6.2.6 age adoption passing confidence
sass 1.79.5 -> 1.80.6 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.26.0

Compare Source

v7.25.9

Compare Source

🐛 Bug Fix
🏠 Internal
🏃‍♀️ Performance
babel/babel (@​babel/preset-env)

v7.26.0

Compare Source

🚀 New Feature
  • babel-core, babel-generator, babel-parser, babel-plugin-syntax-import-assertions, babel-plugin-syntax-import-attributes, babel-preset-env, babel-standalone, babel-types
  • babel-core
  • babel-compat-data, babel-plugin-proposal-regexp-modifiers, babel-plugin-transform-regexp-modifiers, babel-preset-env, babel-standalone
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-syntax-flow
  • babel-helpers, babel-preset-typescript, babel-runtime-corejs3
  • babel-generator, babel-parser
🐛 Bug Fix
💅 Polish
  • babel-plugin-proposal-json-modules, babel-plugin-transform-json-modules, babel-standalone
🏠 Internal
🏃‍♀️ Performance
  • babel-helper-module-transforms, babel-plugin-transform-modules-commonjs

v7.25.9

Compare Source

🐛 Bug Fix
🏠 Internal
🏃‍♀️ Performance
evanw/esbuild (esbuild)

v0.24.0

Compare Source

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.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#​3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#​3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#​3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#​3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#​3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

webpack-contrib/mini-css-extract-plugin (mini-css-extract-plugin)

v2.9.2

Compare Source

bcomnes/npm-run-all2 (npm-run-all2)

v6.2.6

Compare Source

Commits
  • Prevent a throw when looking up undefined results d928f9a

v6.2.5

Compare Source

v6.2.4

Compare Source

Merged
  • Switch to JS-based which command #154
Fixed
  • Switch to JS-based which command #153
sass/dart-sass (sass)

v1.80.6

Compare Source

Command-Line Interface
  • Make @parcel/watcher an optional dependency so this can still be installed
    on operating systems where it's unavailable.

v1.80.5

Compare Source

Embedded Host
  • Don't produce phantom @import deprecations when using an importer with the
    legacy API.

v1.80.4

Compare Source

  • No user-visible changes.

v1.80.3

Compare Source

  • Fix a bug where @import url("...") would crash in plain CSS files.

  • Improve consistency of how warnings are emitted by different parts of the
    compiler. This should result in minimal user-visible changes, but different
    types of warnings should now respond more reliably to flags like --quiet,
    --verbose, and --silence-deprecation.

v1.80.2

Compare Source

  • Fix a bug where deprecation warnings were incorrectly emitted for the
    plain-CSS invert() function.

v1.80.1

Compare Source

  • Fix a bug where repeated deprecation warnings were not automatically limited.

v1.80.0

Compare Source

  • @import is now officially deprecated, as are global built-in functions that
    are available within built-in modules. See the Sass blog post for more
    details on the deprecation process.
Embedded Host
  • Fix an error that would sometimes occur when deprecation warnings were
    emitted when using a custom importer with the legacy API.

v1.79.6

Compare Source

  • Fix a bug where Sass would add an extra */ after loud comments with
    whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the
    indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host
  • Properly export the SassBoolean type.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner February 23, 2024 16:38
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 23, 2024
@renovate renovate bot changed the title build(deps): update dependency js-beautify to v1.15.1 build(deps): update patch & minor updates Feb 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 6 times, most recently from 8787db9 to 1336e10 Compare April 26, 2024 11:44
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 4 times, most recently from f446dd2 to e172c6e Compare May 8, 2024 04:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 2 times, most recently from f232613 to 3b9d498 Compare May 14, 2024 03:08
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 5 times, most recently from 8f1a0a1 to 87b50c6 Compare May 24, 2024 12:04
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 2 times, most recently from 0b65082 to f6b084b Compare May 31, 2024 12:47
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 3 times, most recently from b981603 to f7b2cf3 Compare June 7, 2024 00:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 4 times, most recently from f9ad7c6 to ddaa9c4 Compare June 19, 2024 19:39
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch from ddaa9c4 to 7b565e0 Compare June 24, 2024 22:39
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 2 times, most recently from 4ec1a89 to 0a5667f Compare September 18, 2024 10:57
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 4 times, most recently from e73890d to f20fe5a Compare September 24, 2024 13:30
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 4 times, most recently from f132fb9 to c318bdb Compare October 5, 2024 04:48
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 2 times, most recently from 8dece40 to cf60bd7 Compare October 9, 2024 17:34
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 6 times, most recently from c2a4beb to 1472961 Compare October 24, 2024 03:28
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 7 times, most recently from f8a4d6a to b353621 Compare October 30, 2024 23:30
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch 3 times, most recently from 198d510 to bfac46b Compare November 8, 2024 01:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-updates branch from bfac46b to 05caff4 Compare November 9, 2024 00:53
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