Skip to content

build: update all non-major dependencies#24198

Merged
alan-agius4 merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/all-minor-patch
Nov 10, 2022
Merged

build: update all non-major dependencies#24198
alan-agius4 merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/all-minor-patch

Conversation

@angular-robot
Copy link
Copy Markdown
Contributor

@angular-robot angular-robot commented Nov 8, 2022

This PR contains the following updates:

Package Type Update Change
@babel/generator (source) dependencies patch 7.20.3 -> 7.20.4
@babel/generator (source) devDependencies patch 7.20.3 -> 7.20.4
@types/babel__core (source) devDependencies patch 7.1.19 -> 7.1.20
aspect_bazel_lib http_archive patch v1.16.0 -> v1.16.1
husky (source) devDependencies patch 8.0.1 -> 8.0.2
sass dependencies patch 1.56.0 -> 1.56.1
sass devDependencies patch 1.56.0 -> 1.56.1
sass-loader dependencies minor 13.1.0 -> 13.2.0
sass-loader devDependencies minor 13.1.0 -> 13.2.0
verdaccio (source) devDependencies minor 5.15.4 -> 5.16.3
webpack devDependencies minor 5.74.0 -> 5.75.0
webpack dependencies minor 5.74.0 -> 5.75.0
zone.js (changelog) dependencies minor ~0.11.4 -> ~0.12.0
zone.js (changelog) devDependencies minor ^0.11.3 -> ^0.12.0

Release Notes

babel/babel

v7.20.4

Compare Source

🐛 Bug Fix
aspect-build/bazel-lib

v1.16.1

Compare Source

Using Bzlmod:

  1. Enable with --experimental_enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_bazel_lib", version = "1.16.1")

Read more about bzlmod: https://blog.aspect.dev/bzlmod

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "3534a27621725fbbf1d3e53daa0c1dda055a2732d9031b8c579f917d7347b6c4",
    strip_prefix = "bazel-lib-1.16.1",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v1.16.1.tar.gz",
)

load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

aspect_bazel_lib_dependencies()

Optional toolchains:

### Register the following toolchain to use jq

load("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")

register_jq_toolchains()

### Register the following toolchain to use yq

load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")

register_yq_toolchains()

What's Changed

Full Changelog: bazel-contrib/bazel-lib@v1.16.0...v1.16.1

typicode/husky

v8.0.2

Compare Source

  • docs: remove deprecated npm set-script
sass/dart-sass

v1.56.1

Compare Source

Embedded Sass
  • Importer results now validate that contents is actually a string and whether
    sourceMapUrl is an absolute URL.
webpack-contrib/sass-loader

v13.2.0

Compare Source

Features
verdaccio/verdaccio

v5.16.3

Compare Source

Same as v5.16.0 https://github.com/verdaccio/verdaccio/releases/tag/v5.16.0

⚠️ I broke the release ^_^ so I had to release 5.16.1, 5.16.2 and 5.16.3. The 5.16.1, 5.16.2 are broken, don't use please. Consequences I moved E2E to https://github.com/verdaccio/e2e-5.x for 5.x release to simplify the maintenance (but it came with a cost).

v5.16.1

Compare Source

v5.16.0

Compare Source

😊 due some package manager migration I broke the release, so the latest verdaccio@5.16.3 is literally same version as v5.16.0, sorry

Features
Docker refactoring
  • Big changes on the docker image, while until version v5.15.4 has been using yarn as a runner, since this minor should not use yarn at all, it is just used at the builder phase and then it is just run verdaccio natively as a Node.js module installed globally at the image.
  • Improved documentation for using plugins here with the image 5.x

If the new docker image causes any troubles, please report it ! or just use verdaccio/verdaccio:5.15.4 as a workaround to stick the old one. The new Docker 6.x image will follow same approach very soon.

Docker base moves from TLS v14 -> v18
Bug Fixes
webpack/webpack

v5.75.0

Compare Source

Bugfixes
  • experiments.* normalize to false when opt-out
  • avoid NaN%
  • show the correct error when using a conflicting chunk name in code
  • HMR code tests existance of window before trying to access it
  • fix eval-nosources-* actually exclude sources
  • fix race condition where no module is returned from processing module
  • fix position of standalong semicolon in runtime code
Features
  • add support for @import to extenal CSS when using experimental CSS in node
  • add i64 support to the deprecated WASM implementation
Developer Experience
  • expose EnableWasmLoadingPlugin
  • add more typings
  • generate getters instead of readonly properties in typings to allow overriding them
angular/angular

v0.12.0

Compare Source

Bug Fixes

0.11.8 (2022-08-08)

Features
  • zone.js: Update to the simpler Async Stack Tagging v2 API (#​46958) (f23232f)

0.11.7 (2022-07-20)

Bug Fixes
  • zone.js: do not invoke jasmine done callback multiple times with waitForAsync (4e77c7fbf38)
Features
  • zone.js: add AsyncStackTaggingZoneSpec implementation (#​46693) (848a009)
  • zone.js: include jasmine describe block name when raising unexpected task error (de86285)
  • zone.js: include zone name when sync-test zone reports tasks (72c2567)

0.11.6 (2022-06-02)

Bug Fixes
BREAKING CHANGES
  • zone.js: in TaskTrackingZoneSpec track a periodic task until it is cancelled

The breaking change is scoped only to the plugin
zone.js/plugins/task-tracking. If you used TaskTrackingZoneSpec and
checked the pending macroTasks e.g. using (this.ngZone as any)._inner ._parent._properties.TaskTrackingZone.getTasksFor('macroTask'), then
its behavior slightly changed for periodic macrotasks. For example,
previously the setInterval macrotask was no longer tracked after its
callback was executed for the first time. Now it's tracked until
the task is explicitly cancelled, e.g with clearInterval(id).

0.11.5 (2022-03-03)

Bug Fixes
Features

0.11.4 (2021-02-10)

Bug Fixes
Features

0.11.3 (2020-10-27)

Bug Fixes

0.11.2 (2020-09-19)

Bug Fixes
Features
Refactor
  • zone.js: refactor(zone.js): rename several internal apis in fake async zone spec (#​39127) (8a68669)
Build
  • zone.js: build(zone.js): zone.js should output esm format for fesm2015 bundles (#​39203) (822b838)
BREAKING CHANGES
  • zone.js: ZoneJS no longer swallows errors produced by Object.defineProperty calls.

Prior to this change, ZoneJS monkey patched Object.defineProperty and if there is an error
(such as the property is not configurable or not writable) the patched logic swallowed it
and only console.log was produced. This behavior used to hide real errors,
so the logic is now updated to trigger original errors (if any). One exception
where the patch remains in place is document.registerElement
(to allow smooth transition for code/polyfills that rely on old behavior in legacy browsers).
If your code relies on the old behavior (where errors were not thrown before),
you may need to update the logic to handle the errors that are no longer masked by ZoneJS patch.

0.11.1 (2020-08-19)

Bug Fixes

Configuration

📅 Schedule: Branch creation - "after 10:00pm every weekday,before 4:00am every weekday,every weekend" in timezone America/Tijuana, 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, click this checkbox.

This PR has been generated by Renovate Bot.

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Nov 8, 2022
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 3 times, most recently from d229910 to 747a558 Compare November 9, 2022 02:23
@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 Nov 9, 2022
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch 2 times, most recently from 303b100 to 11ac615 Compare November 9, 2022 23:05
@angular-robot angular-robot force-pushed the ng-renovate/all-minor-patch branch from 11ac615 to 4152f80 Compare November 10, 2022 08:45
@alan-agius4 alan-agius4 merged commit 363721b into angular:main Nov 10, 2022
@angular-robot angular-robot deleted the ng-renovate/all-minor-patch branch November 10, 2022 09:38
@angular-automatic-lock-bot
Copy link
Copy Markdown

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 Dec 11, 2022
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.

2 participants