Update npm
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @types/chrome (source) | ^0.0.190 -> ^0.0.206 |
||||
| electron | 21.3.1 -> 21.3.3 |
||||
| https-proxy-agent | 5.0.0 -> 5.0.1 |
||||
| inquirer | 8.0.0 -> 8.2.5 |
||||
| jest-mock-extended | 2.0.6 -> 2.0.9 |
||||
| jquery (source) | 3.6.0 -> 3.6.3 |
||||
| prettier-plugin-tailwindcss | ^0.1.13 -> ^0.2.0 |
||||
| zone.js (changelog) | ^0.11.4 -> ^0.12.0 |
Release Notes
electron/electron
v21.3.3: electron v21.3.3
Release Notes for v21.3.3
Fixes
Other Changes
- Updated Chromium to 106.0.5249.199. #36448
SBoudrias/Inquirer.js
v8.2.5
v8.2.4
v8.2.3
- Fix line wrapping with using with terminal links
- Fix number prompt not working with negative numbers
v8.2.2
Fix bugs with the rawlist
v8.2.1
- Fix bug when using both arrow keys and number keys on the
rawListprompt. - Dependencies bump
v8.2.0
checkboxprompt: Update the help message to be more complete. And the help message is now shown until a selection is made.
v8.1.5
Fix older Node version compatibility issue.
v8.1.4
- Fix an error being thrown inside the
rawlistprompt
v8.1.3
Bug Fixes
- Fix password prompt appearing when doing async filtering/validation
- User being prompted a question even though it was answered when using nested answer object format.
- Fix extra space appearing when using custom prefix.
And bump of all dependencies.
v8.1.2
- Fix bug on
rawListprompt - Bump dependencies
v8.1.1
Fix: Number prompt default behavior.
v8.1.0
New features
- Now display a loading spinner while asynchronously filtering or validating data.
inquirer.prompt()now accept a shorthand object syntax instead of an array withnamed prompts:
const { foo, bar } = await inquirer.prompt({
foo: {
message: '...',
default: '...',
},
bar: {
default: '...',
}
}):
v8.0.1
Fixes
- Fix issue with duplicate keys in
expandprompt not being caught if casing didn't match - Fix
rawlistprompt ignoringshortoption - Rollback dependencies migrated to ESM causing issue for some users
And lastly general dependency upgrade (to non-ESM versions)
marchaos/jest-mock-extended
v2.0.9
v2.0.8
v2.0.7
Fixes
- Fix DeepMockProxy type error for objects which are functions and have fields at the same time - https://github.com/marchaos/jest-mock-extended/pull/95
jquery/jquery
v3.6.3: jQuery supports CSS.supports in jQuery 3.6.3
https://blog.jquery.com/2022/12/20/jquery-3-6-3-released-a-quick-selector-fix/
v3.6.2: jQuery 3.6.2 :has arrived!
https://blog.jquery.com/2022/12/13/jquery-3-6-2-released/
v3.6.1: jQuery 3.6.1 Maintenance Release
https://blog.jquery.com/2022/08/26/jquery-3-6-1-maintenance-release/
tailwindlabs/prettier-plugin-tailwindcss
v0.2.1
Fixed
- Fix support for latest Shopify Liquid plugin (#109)
v0.2.0
Changed
- Don't bundle
prettier-plugin-svelte(#101)
Added
angular/angular
v0.12.0
Bug Fixes
- zone.js: cancel tasks only when they are scheduled or running (#46435) (b618b5a), closes #45711
- zone.js: Fix ConsoleTask interface typo (#47090) (91954cf)
0.11.8 (2022-08-08)
Features
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
describeblock 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
- zone.js: check if
processis defined when patching theGlobalErrors.install(#45392) (c7bcc1b), closes #42260 - zone.js: in TaskTrackingZoneSpec track a periodic task until it is cancelled (#45391) (f19b36f)
- zone.js: read
Symbol.speciessafely (#45369) (e2eaac3) - zone.js: should ignore multiple resolve call (#45283) (aebf165), closes #44913
- zone.js: swallow the error when the element callback is not patchable (#45400) (4ea70e3), closes lwc/engine-core/src/framework/base-bridge-element.ts#L180-L186 #42546
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
- zone.js: async-test should only call done once (#45025) (dea7234)
- zone.js: defineProperties should also set symbol props (#45098) (b437d12), closes #44095
- zone.js: fix several test cases which trigger
done()multiple times (#45025) (d5565cc) - zone.js: only one listener should also re-throw an error correctly (#41868) (299f92c), closes #41867 /github.com/angular/angular/pull/41562#issuecomment-822696973
- zone.js: patch global instead of Mocha object (#45047) (8efbdb5), closes #42834
- zone.js: should continue to executue listeners when throw error (#41562) (008eaf3), closes #41522
- zone.js: update several flaky cases (#41526) (25a83eb), closes #41434
Features
- zone.js: add Promise.any() implementation (#45064) (4d494d2), closes #44393
- zone.js: update electron patch to support electron/remote 14 (#45073) (d65706a), closes #43346
0.11.4 (2021-02-10)
Bug Fixes
- zone.js: fesm2015 bundle should also be strict module. (#40456) (f35f7c6), closes #40215 #40215
- zone.js: fix typo in zone_externs (#40348) (8116edb)
- zone.js: patch child method that overrides an already patched method (#39850) (82e3f54)
- zone.js: setTimeout patch should clean tasksByHandleId cache. (#40586) (0652b29), closes #40387
- zone.js: update build tooling for latest changes in rules_nodejs (#40710) (2827845)
Features
0.11.3 (2020-10-27)
Bug Fixes
0.11.2 (2020-09-19)
Bug Fixes
- zone.js: jest getRealSystemTime should return native time (#39127) (ffc3332)
- zone.js: add missing types field in package.json (#38585) (27cc56b), closes #38584
- zone.js: defineProperty patch should not swallow error (#37582) (45a73dd), closes #37432
- zone.js: run tests in umd format (#37582) (40096be)
- zone.js: should have better backward compatibilities (#38797) (a33d630), closes #38561 #38669
- zone.js: should invoke xhr send task when no response error occurs (#38836) (d92a0dd), closes #38795
- zone.js: zone.js toString patch should check typeof Promise is function (#38350) (18e474f), closes #38361
Features
Refactor
- zone.js: refactor(zone.js): rename several internal apis in fake async zone spec (#39127) (8a68669)
Build
BREAKING CHANGES
- zone.js: ZoneJS no longer swallows errors produced by
Object.definePropertycalls.
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
- zone.js: zone.js package.json should not include files/directories field (#38528) (6b662d1), closes #38526 #38516 #38513
v0.11.8
Features
Configuration
📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.
@MGibson1 I had to update the badgeAction type since chrome.action != chrome.browserAction in the updated types.
Edited/Blocked Notification
Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.
⚠ Warning: custom changes will be lost.
Wrote PM-1821. We're not handling types properly for bw serve-sent commands.
We need to fix that before we can update koa-bodyparser types.