Skip to content

build: update all non-major dependencies#45967

Closed
renovate[bot] wants to merge 4 commits intomainfrom
renovate/all-minor-patch
Closed

build: update all non-major dependencies#45967
renovate[bot] wants to merge 4 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented May 12, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/cli (source) 7.17.6 -> 7.17.10 age adoption passing confidence dependencies patch
@babel/core (source) 7.17.9 -> 7.18.0 age adoption passing confidence dependencies minor
@babel/generator (source) 7.17.9 -> 7.18.0 age adoption passing confidence dependencies minor
@babel/parser (source) 7.17.9 -> 7.18.0 age adoption passing confidence dependencies minor
@babel/preset-env (source) 7.16.11 -> 7.18.0 age adoption passing confidence dependencies minor
@babel/traverse (source) 7.17.9 -> 7.18.0 age adoption passing confidence dependencies minor
@babel/types (source) 7.17.0 -> 7.18.0 age adoption passing confidence dependencies minor
@bazel/concatjs 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/esbuild 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/jasmine 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/protractor 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/rollup 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/runfiles 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/terser 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@bazel/worker 5.4.1 -> 5.5.0 age adoption passing confidence dependencies minor
@microsoft/api-extractor (source) 7.22.2 -> 7.24.1 age adoption passing confidence dependencies minor
@types/babel__traverse 7.17.0 -> 7.17.1 age adoption passing confidence dependencies patch
@typescript-eslint/eslint-plugin 5.19.0 -> 5.25.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.19.0 -> 5.25.0 age adoption passing confidence devDependencies minor
browser-sync (source) 2.27.9 -> 2.27.10 age adoption passing confidence devDependencies patch
build_bazel_rules_nodejs 5.4.0 -> 5.5.0 age adoption passing confidence http_archive minor
cldr 7.1.1 -> 7.2.0 age adoption passing confidence devDependencies minor
glob 8.0.1 -> 8.0.3 age adoption passing confidence dependencies patch
glob 8.0.1 -> 8.0.3 age adoption passing confidence devDependencies patch
io_bazel_rules_sass 1.51.0 -> 1.52.0 age adoption passing confidence http_archive minor
rollup (source) ~2.70.0 -> ~2.74.0 age adoption passing confidence dependencies minor
saucelabs 7.1.3 -> 7.2.0 age adoption passing confidence resolutions minor

Configuration

📅 Schedule: "after 1am on Thursday" in timezone America/Tijuana.

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

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 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. ⚠ Warning: custom changes will be lost.

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

@renovate renovate bot 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 May 12, 2022
@ngbot ngbot bot modified the milestone: Backlog May 12, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ec75c6d to 8673ff4 Compare May 16, 2022 22:16
@devversion devversion force-pushed the renovate/all-minor-patch branch 2 times, most recently from e702399 to 5959b5f Compare May 17, 2022 08:26
@devversion devversion added target: rc This PR is targeted for the next release-candidate and removed target: patch This PR is targeted for the next patch release labels May 17, 2022
renovate-bot and others added 3 commits May 20, 2022 13:46
…el types

We recently updated Babel and the Bazel types but this actually
resulted in duplicates, causing differences between what people
seen in their IDE vs. what Bazel builds.

This commit removes the lock file and generates it fully fresh,
deduping dependencies and also fixing the differences between
local IDE and Bazel.

As part of this we also need to update/fixup one assertion on the
Babel node path types, because the node start/end can now also
be `undefined`.
@devversion devversion force-pushed the renovate/all-minor-patch branch from 5959b5f to c360a59 Compare May 20, 2022 14:32
@devversion devversion requested a review from gkalpak May 20, 2022 14:32
This commit accounts for the Babel types changes. Some properties
can now also be `undefined` so existing checks/assertions had to
be adjusted to also capture `undefined` (along with `null`).

Additionally, in preparation for a new ECMA proposal, Babel types
seem to have been updated to include private names in object property
keys. This is not necessarily the case for object expressions, but
could be for object patterns (in the future -- when implemented).

More details: babel/babel#14304 and
https://github.com/tc39/proposal-destructuring-private.
@devversion devversion force-pushed the renovate/all-minor-patch branch from c360a59 to 99601f7 Compare May 20, 2022 17:24
@devversion devversion added action: merge The PR is ready for merge by the caretaker and removed action: review The PR is still awaiting reviews from at least one requested reviewer labels May 20, 2022
@devversion devversion removed the request for review from alxhub May 20, 2022 17:36
@pullapprove pullapprove bot requested a review from alxhub May 20, 2022 17:36
@devversion
Copy link
Copy Markdown
Member

LGTM (missing group is renovate-changes)

Reviewed-for: global-dev-infra-approvers

@devversion devversion removed the request for review from alxhub May 20, 2022 17:38
@alxhub
Copy link
Copy Markdown
Member

alxhub commented May 20, 2022

This PR was merged into the repository by commit a0be043.

alxhub pushed a commit that referenced this pull request May 20, 2022
alxhub pushed a commit that referenced this pull request May 20, 2022
…el types (#45967)

We recently updated Babel and the Bazel types but this actually
resulted in duplicates, causing differences between what people
seen in their IDE vs. what Bazel builds.

This commit removes the lock file and generates it fully fresh,
deduping dependencies and also fixing the differences between
local IDE and Bazel.

As part of this we also need to update/fixup one assertion on the
Babel node path types, because the node start/end can now also
be `undefined`.

PR Close #45967
alxhub pushed a commit that referenced this pull request May 20, 2022
alxhub pushed a commit that referenced this pull request May 20, 2022
This commit accounts for the Babel types changes. Some properties
can now also be `undefined` so existing checks/assertions had to
be adjusted to also capture `undefined` (along with `null`).

Additionally, in preparation for a new ECMA proposal, Babel types
seem to have been updated to include private names in object property
keys. This is not necessarily the case for object expressions, but
could be for object patterns (in the future -- when implemented).

More details: babel/babel#14304 and
https://github.com/tc39/proposal-destructuring-private.

PR Close #45967
@alxhub alxhub closed this in d869ede May 20, 2022
alxhub pushed a commit that referenced this pull request May 20, 2022
…el types (#45967)

We recently updated Babel and the Bazel types but this actually
resulted in duplicates, causing differences between what people
seen in their IDE vs. what Bazel builds.

This commit removes the lock file and generates it fully fresh,
deduping dependencies and also fixing the differences between
local IDE and Bazel.

As part of this we also need to update/fixup one assertion on the
Babel node path types, because the node start/end can now also
be `undefined`.

PR Close #45967
alxhub pushed a commit that referenced this pull request May 20, 2022
alxhub pushed a commit that referenced this pull request May 20, 2022
This commit accounts for the Babel types changes. Some properties
can now also be `undefined` so existing checks/assertions had to
be adjusted to also capture `undefined` (along with `null`).

Additionally, in preparation for a new ECMA proposal, Babel types
seem to have been updated to include private names in object property
keys. This is not necessarily the case for object expressions, but
could be for object patterns (in the future -- when implemented).

More details: babel/babel#14304 and
https://github.com/tc39/proposal-destructuring-private.

PR Close #45967
@alan-agius4 alan-agius4 deleted the renovate/all-minor-patch branch May 24, 2022 07:24
@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 Jun 24, 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 area: build & ci Related the build and CI infrastructure of the project PullApprove: disable target: rc This PR is targeted for the next release-candidate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants