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: update all non-major dependencies #48372

Conversation

angular-robot
Copy link
Collaborator

This PR contains the following updates:

Package Type Update Change
aspect_bazel_lib http_archive minor v1.17.0 -> v1.18.0
karma-coverage devDependencies minor ~2.0.3 -> ~2.2.0
magic-string dependencies minor ^0.26.0 -> ^0.27.0
rxjs (source) dependencies minor ~7.5.0 -> ~7.6.0
rxjs (source) dependencies minor ~7.5.0 -> ~7.6.0
zone.js (changelog) dependencies minor ^0.11.4 -> ^0.12.0

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

aspect-build/bazel-lib

v1.18.0

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.18.0")

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 = "be236556c7b9c7b91cb370e837fdcec62b6e8893408cd4465ae883c9d7c67024",
    strip_prefix = "bazel-lib-1.18.0",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v1.18.0.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: aspect-build/bazel-lib@v1.17.0...v1.18.0

karma-runner/karma-coverage

v2.2.0

Compare Source

Features
  • update Istanbul packages (24aac11)

2.1.1 (2022-02-05)

Bug Fixes

v2.1.1

Compare Source

Bug Fixes

v2.1.0

Compare Source

Bug Fixes
  • deps: update main and dev dependencies (c20d982)
Features
  • reporter: log coverage threshold as a warning fixed #​432 (a6c95d8)

2.0.3 (2020-07-24)

Bug Fixes
  • report: waiting promise resolve in onExist method fix #​418 (c93f061)

2.0.2 (2020-04-13)

Bug Fixes

2.0.1 (2019-08-20)

rich-harris/magic-string

v0.27.0

Compare Source

Performance Improvements

0.26.7 (2022-10-09)

Bug Fixes

0.26.6 (2022-10-05)

Features
  • add update method as safer alternative to overwrite (#​212) (9a312e3)

0.26.5 (2022-09-30)

Bug Fixes
  • update typescript definition file to contain replaceAll() (#​224) (45a4921)

0.26.4 (2022-09-22)

Features
  • fix .replace() when searching string, add .replaceAll() (#​222) (04a05bd)
Performance Improvements
  • avoiding use of Object.defineProperty in Chunk constructor (#​219) (130794b)

0.26.3 (2022-08-30)

Performance Improvements

0.26.2 (2022-05-11)

Bug Fixes

0.26.1 (2022-03-03)

Bug Fixes
  • replace: match replacer function signature with spec (902541f)
reactivex/rxjs

v7.6.0

Compare Source

Bug Fixes
  • schedulers: no longer cause TypeScript build failures when Node types aren't included (c1a07b7)
  • types: Improved subscribe and tap type overloads (#​6718) (af1a9f4), closes #​6717
Features
  • onErrorResumeNextWith: renamed onErrorResumeNext and exported from the top level. (onErrorResumeNext operator is stil available, but deprecated) (#​6755) (51e3b2c)

7.5.7 (2022-09-25)

Bug Fixes
Performance Improvements

7.5.6 (2022-07-11)

Bug Fixes
  • share: No longer results in a bad-state observable in an edge case where a synchronous source was shared and refCounted, and the result is subscribed to twice in a row synchronously. (#​7005) (5d4c1d9)
  • share & connect: share and connect no longer bundle scheduling code by default (#​6873) (9948dc2), closes #​6872
  • exhaustAll: Result will now complete properly when flattening all synchronous observables. (#​6911) (3c1c6b8), closes #​6910
  • TypeScript: Now compatible with TypeScript 4.6 type checks (#​6895) (fce9aa1)

7.5.5 (2022-03-08)

Bug Fixes
Performance Improvements

7.5.4 (2022-02-09)

Performance Improvements

7.5.3 (2022-02-08)

Bug Fixes
  • subscribe: allow interop with Monio and other libraries that patch function bind (0ab91eb), closes #​6783

7.5.2 (2022-01-11)

Bug Fixes
  • operators that ignore input values now use unknown rather than any, which should resolve issues with eslint no-unsafe-argument (#​6738) (67cb317), closes #​6536
  • ajax: crossDomain flag deprecated and properly reported to consumers (#​6710) (7fd0575), closes #​6663

7.5.1 (2021-12-28)

Bug Fixes
  • export supporting interfaces from top-level rxjs site. (#​6733) (299a1e1)

v7.5.7

Compare Source

Bug Fixes
Performance Improvements
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 on monday,before 04:00am on tuesday" 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: review The PR is still awaiting reviews from at least one requested reviewer area: build & ci Related the build and CI infrastructure of the project target: patch This PR is targeted for the next patch release labels Dec 6, 2022
@ngbot ngbot bot modified the milestone: Backlog Dec 6, 2022
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/all-non-major-dependencies branch from f9aab7a to 9a615b8 Compare December 6, 2022 17:33
@alan-agius4 alan-agius4 added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release and removed action: review The PR is still awaiting reviews from at least one requested reviewer target: patch This PR is targeted for the next patch release labels Dec 6, 2022
@alan-agius4
Copy link
Contributor

Does not apply cleanly on patch. Will send a PR separately.

@alan-agius4 alan-agius4 added PullApprove: disable merge: caretaker note Alert the caretaker performing the merge to check the PR for an out of normal action needed or note and removed PullApprove: disable merge: caretaker note Alert the caretaker performing the merge to check the PR for an out of normal action needed or note labels Dec 6, 2022
@AndrewKushnir
Copy link
Contributor

This PR was merged into the repository by commit 126573d.

@AndrewKushnir
Copy link
Contributor

Does not apply cleanly on patch. Will send a PR separately.

@alan-agius4 thanks Alan!

@angular-robot angular-robot deleted the ng-renovate/all-non-major-dependencies branch December 6, 2022 19:36
alan-agius4 pushed a commit to alan-agius4/angular that referenced this pull request Dec 7, 2022
See associated pull request for more information.

PR Close angular#48372

(cherry picked from commit 126573d)
AndrewKushnir pushed a commit that referenced this pull request Dec 7, 2022
See associated pull request for more information.

PR Close #48372

(cherry picked from commit 126573d)

PR Close #48384
@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 Jan 6, 2023
trekladyone pushed a commit to trekladyone/angular that referenced this pull request Feb 1, 2023
See associated pull request for more information.

PR Close angular#48372
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 area: build & ci Related the build and CI infrastructure of the project target: minor This PR is targeted for the next minor release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants