Skip to content

build: update all non-major dependencies #21993

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

Merged
merged 1 commit into from
Oct 27, 2021
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@bazel/buildifier 4.2.2 -> 4.2.3 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.1.0 -> 5.2.0 age adoption passing confidence
@typescript-eslint/parser 5.1.0 -> 5.2.0 age adoption passing confidence
babel-loader 8.2.2 -> 8.2.3 age adoption passing confidence
core-js 3.18.3 -> 3.19.0 age adoption passing confidence
critters 0.0.12 -> 0.0.14 age adoption passing confidence
css-loader 6.4.0 -> 6.5.0 age adoption passing confidence
esbuild 0.13.8 -> 0.13.9 age adoption passing confidence
esbuild-wasm 0.13.8 -> 0.13.9 age adoption passing confidence
eslint (source) 8.0.1 -> 8.1.0 age adoption passing confidence
husky (source) 7.0.2 -> 7.0.4 age adoption passing confidence
mini-css-extract-plugin 2.4.2 -> 2.4.3 age adoption passing confidence
ng-packagr 13.0.0-rc.1 -> 13.0.0-rc.3 age adoption passing confidence
open 8.3.0 -> 8.4.0 age adoption passing confidence
postcss (source) 8.3.9 -> 8.3.11 age adoption passing confidence
sass 1.43.2 -> 1.43.4 age adoption passing confidence
verdaccio (source) 5.1.6 -> 5.2.0 age adoption passing confidence
webpack 5.59.0 -> 5.60.0 age adoption passing confidence

Release Notes

bazelbuild/buildtools

v4.2.3

Compare Source

  • Added darwin_arm64 to supported archs in the npm package
  • Fixed the bzl-visibility warning for javatests
typescript-eslint/typescript-eslint

v5.2.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

babel/babel-loader

v8.2.3

Compare Source

This release fixes compatibility with Node.js 17

Thanks @​Reptarsrage!

zloirock/core-js

v3.19.0

Compare Source

  • Most built-ins are encapsulated in core-js for preventing possible cases of breaking / observing the internal state by patching / deleting of them
    • Avoid .call / .apply prototype methods that could be patched
    • Avoid instanceof operator - implicit .prototype / @@​hasInstance access that could be patched
    • Avoid RegExp#test, String#match and some over methods - implicit .exec and RegExp well-known symbols access that could be patched
  • Clearing of Error stack from extra entries experimentally added to AggregateError, #​996, in case lack of problems it will be extended to other cases
  • In engines with native Symbol support, new well-known symbols created with usage Symbol.for for ensuring the same keys in different realms, #​998
  • Added a workaround of a BrowserFS NodeJS process polyfill bug that incorrectly reports V8 version that's used in some cases of core-js feature detection
  • Fixed normalization of message AggregateError argument
  • Fixed order of arguments conversion in Math.scale, a spec draft bug
  • Fixed core-js-builder work in NodeJS 17, added a workaround of webpack + NodeJS 17 issue
  • Added NodeJS 17.0 compat data mapping
  • Added Opera Android 65 compat data mapping
  • Updated Electron 16.0 compat data mapping
  • Many other minor fixes and improvements
GoogleChromeLabs/critters

v0.0.14

Compare Source

v0.0.13

Compare Source

This fixes a bug in critters@0.0.12 where HTTP (as opposed to HTTPS) remote stylesheets were not skipped (thanks @​alan-agius4 - #​83)

Full Changelog: GoogleChromeLabs/critters@critters-0.0.12...critters-0.0.13

webpack-contrib/css-loader

v6.5.0

Compare Source

Features
  • support absolute URL in url() when experiments.buildHttp enabled (#​1389) (8946be4)
Bug Fixes
  • respect nosources in the devtool option (c60eff2)
evanw/esbuild

v0.13.9

Compare Source

  • Add support for imports in package.json (#​1691)

    This release adds basic support for the imports field in package.json. It behaves similarly to the exports field but only applies to import paths that start with #. The imports field provides a way for a package to remap its own internal imports for itself, while the exports field provides a way for a package to remap its external exports for other packages. This is useful because the imports field respects the currently-configured conditions which means that the import mapping can change at run-time. For example:

    $ cat entry.mjs
    import '#example'
    
    $ cat package.json
    {
      "imports": {
        "#example": {
          "foo": "./example.foo.mjs",
          "default": "./example.mjs"
        }
      }
    }
    
    $ cat example.foo.mjs
    console.log('foo is enabled')
    
    $ cat example.mjs
    console.log('foo is disabled')
    
    $ node entry.mjs
    foo is disabled
    
    $ node --conditions=foo entry.mjs
    foo is enabled
    

    Now that esbuild supports this feature too, import paths starting with # and any provided conditions will be respected when bundling:

    $ esbuild --bundle entry.mjs | node
    foo is disabled
    
    $ esbuild --conditions=foo --bundle entry.mjs | node
    foo is enabled
    
  • Fix using npm rebuild with the esbuild package (#​1703)

    Version 0.13.4 accidentally introduced a regression in the install script where running npm rebuild multiple times could fail after the second time. The install script creates a copy of the binary executable using link followed by rename. Using link creates a hard link which saves space on the file system, and rename is used for safety since it atomically replaces the destination.

    However, the rename syscall has an edge case where it silently fails if the source and destination are both the same link. This meant that the install script would fail after being run twice in a row. With this release, the install script now deletes the source after calling rename in case it has silently failed, so this issue should now be fixed. It should now be safe to use npm rebuild with the esbuild package.

  • Fix invalid CSS minification of border-radius (#​1702)

    CSS minification does collapsing of border-radius related properties. For example:

    /* Original CSS */
    div {
      border-radius: 1px;
      border-top-left-radius: 5px;
    }
    
    /* Minified CSS */
    div{border-radius:5px 1px 1px}

    However, this only works for numeric tokens, not identifiers. For example:

    /* Original CSS */
    div {
      border-radius: 1px;
      border-top-left-radius: inherit;
    }
    
    /* Minified CSS */
    div{border-radius:1px;border-top-left-radius:inherit}

    Transforming this to div{border-radius:inherit 1px 1px}, as was done in previous releases of esbuild, is an invalid transformation and results in incorrect CSS. This release of esbuild fixes this CSS transformation bug.

eslint/eslint

v8.1.0

Compare Source

typicode/husky

v7.0.4

Compare Source

No changes. Husky v7.0.3 was reverted, this version is the same as v7.0.2.

v7.0.3

Compare Source

webpack-contrib/mini-css-extract-plugin

v2.4.3

Compare Source

ng-packagr/ng-packagr

v13.0.0-rc.3

Compare Source

Bug Fixes
  • report typescript configuration errors (31b508d)

v13.0.0-rc.2

Compare Source

Bug Fixes
  • don't process tslib with ngcc (925b427)
  • replace node-sass-tilde-importer with custom sass importer (5cf363b), closes #​2125
sindresorhus/open

v8.4.0

Compare Source

postcss/postcss

v8.3.11

Compare Source

  • Remove debugging code.

v8.3.10

Compare Source

  • Fixed Maximum call stack issue of some source maps (by Yeting Li).
sass/dart-sass

v1.43.4

Compare Source

JS API
  • Fix a bug where the logger option was ignored for the render() function.

v1.43.3

Compare Source

  • Improve performance.
verdaccio/verdaccio

v5.2.0

Compare Source

Features
Bug Fixes
webpack/webpack

v5.60.0

Compare Source

Features

  • Allow to pass more options to experiments.lazyCompilation. e. g. port, https stuff

Bugfixes

  • fix output.hashFunction used to persistent caching too
  • Initialize buildDependencies Set correctly when loaders are added in beforeLoaders hook

v5.59.1

Compare Source

Bugfixes
  • fix regexp in managedPaths
  • fix hanging when trying to write lockfile for experiments.buildHttp

Configuration

📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone America/Tijuana.

🚦 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, click this checkbox.

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

@renovate renovate bot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Oct 21, 2021
@google-cla google-cla bot added the cla: yes label Oct 21, 2021
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e7c6be9 to e44a8a4 Compare October 21, 2021 09:50
@alan-agius4 alan-agius4 added target: rc This PR is targeted for the next release-candidate and removed target: minor This PR is targeted for the next minor release labels Oct 21, 2021
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e44a8a4 to 443289f Compare October 21, 2021 10:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 3b09574 to 3cfe245 Compare October 21, 2021 21:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b54fd1b to f14ecb8 Compare October 21, 2021 21:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 9f6e650 to bf6f1bf Compare October 26, 2021 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bf6f1bf to 32e4794 Compare October 26, 2021 22:36
@filipesilva filipesilva merged commit 6bf3797 into master Oct 27, 2021
@renovate renovate bot deleted the renovate/all-minor-patch branch October 27, 2021 09:46
@renovate renovate bot restored the renovate/all-minor-patch branch October 27, 2021 16:18
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Nov 27, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
action: merge The PR is ready for merge by the caretaker target: rc This PR is targeted for the next release-candidate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants