async-storage-plugin
async-storage-plugin copied to clipboard
chore(deps): update dependency zone.js to v0.11.5
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| zone.js (changelog) | 0.9.1 -> 0.11.5 |
Release Notes
angular/angular
v0.11.5
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
v0.11.4
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
v0.11.3
Bug Fixes
v0.11.2
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.
v0.11.1
Prior to v0.11.1, Zone.js provided two distribution bundle formats in the dist folder.
They were (1) ES5 bundle distributed as zone.js and (2) ES2015 bundle distributed as zone-evergreen.js.
These bundles are used for Angular's differential-loading mechanism.
Prior to v0.11.11 the following code
import 'zone.js';
would load the ES5 bundle from dist/zone.js.
Starting with v0.11.1, Zone.js follows the Angular Package Format, so the folder structure of the Zone.js bundles is updated to match Angular Package Format.
So the same code
import 'zone.js';
now loads the ES2015 bundle instead.
This is a breaking change for legacy browsers such as IE11.
For backwards compatibility zone.js continues to distribute the same bundles under dist.
To restore the old behavior change the polyfills.ts generated by Angular CLI to import like so:
import 'zone.js/dist/zone';
v0.11.0
Bug Fixes
- zone.js: add issue numbers of
[@types](https://togithub.com/types)/jasmineto the test cases (#34625) (41667de) - zone.js: clearTimeout/clearInterval should call on object global (#37858) (a71f114), closes #37333
- zone.js: fix 2 bluebird test cases for each/mapSeries (#36295) (b44f7b5)
- zone.js: patch nodejs EventEmtter.prototype.off (#37863) (1822cbc), closes #35473
- zone.js: remove unused Promise overwritten setter logic (#36851) (31796e8)
- zone.js: should not try to patch fetch if it is not writable (#36311) (416c786), closes #36142
- zone.js: UNPATCHED_EVENTS and PASSIVE_EVENTS should be string[] not boolean (#36258) (36e927a)
- zone.js: zone patch rxjs should return null _unsubscribe correctly. (#37091) (96aa14d), closes #31684
- zone.js: zone.js patch jest should handle done correctly (#36022) (4374931)
Features
- zone.js: move all zone optional bundles to plugins folders (#36540) (b199ef6)
- zone.js: move MutationObserver/FileReader to different module (#31657) (253337d)
- zone.js: patch jasmine.createSpyObj to make properties enumerable to be true (#34624) (c2b4d92), closes #33657
- zone.js: upgrade zone.js to angular package format(APF) (#36540) (583a9d3), closes #35157 /github.com/angular/angular-cli/blob/5376a8b1392ac7bd252782d8474161ce03a4d1cb/packages/schematics/angular/application/files/src/polyfills.ts.template#L55-L58
0.10.3 (2020-02-27)
Bug Fixes
- zone.js: a path traversal attack in test (#32392) (d498314)
- zone.js: work around TS3.7 issue (#33294) (0953642)
- fixes typo of zone.js patch vrdisplaydisconnected property (#33581) (71b8e27), closes #33579
- should also allow subclass Promise without Symbol.species (#34533) (58b29f1)
- zone.js: fix
zone-patch-rxjsbundle to refer torxjs(rather than include) it. (#35983) (99ea5d7), closes #35878 - zone.js: Make
EventTargetmethods optional inzone.jsextension API (#35954) (5463462) - zone.js: zone.js patches rxjs should check null for unsubscribe (#35990) (3fa8952), closes #31687 #31684
Features
- implement Symbol.specics of Promise (#34162) (539d8f0), closes #34105 #33989
- define all zone.js configurations to typescript interfaces (#35329) (03d88c7)
- add a temp solution to support passive event listeners. (#34503) (f9d483e)
- add an tickOptions parameter with property processNewMacroTasksSynchronously. (#33838) (17b862c), closes #33799
- add interface definitions which zone extends EventTarget (#35304) (4acb676), closes #35173
- make jasmine patch as zone module (#34676) (e1160f1)
- make mocha a zone module. (#34719) (332937e)
- add basic jest support (#35080) (daac33c)
- zone.js: add a zone config to allow user disable wrapping uncaught promise rejection (#35873) (8456c5e), closes #27840
- zone.js: Monkey patch MessagePort.prototype onproperties (#34610) (0f8e710)
Performance Improvements
0.10.2 (2019-08-13)
Features
0.10.1 (2019-08-02)
Bug Fixes
- zone.js: don't rely on global node typings outside of node/ directory (#31783) (5c9a896)
- zone.js: should expose some other internal intefaces (#31866) (f5c605b)
v0.10.3
Bug Fixes
- zone.js: a path traversal attack in test (#32392) (d498314)
- zone.js: work around TS3.7 issue (#33294) (0953642)
- fixes typo of zone.js patch vrdisplaydisconnected property (#33581) (71b8e27), closes #33579
- should also allow subclass Promise without Symbol.species (#34533) (58b29f1)
- zone.js: fix
zone-patch-rxjsbundle to refer torxjs(rather than include) it. (#35983) (99ea5d7), closes #35878 - zone.js: Make
EventTargetmethods optional inzone.jsextension API (#35954) (5463462) - zone.js: zone.js patches rxjs should check null for unsubscribe (#35990) (3fa8952), closes #31687 #31684
Features
- implement Symbol.specics of Promise (#34162) (539d8f0), closes #34105 #33989
- define all zone.js configurations to typescript interfaces (#35329) (03d88c7)
- add a temp solution to support passive event listeners. (#34503) (f9d483e)
- add an tickOptions parameter with property processNewMacroTasksSynchronously. (#33838) (17b862c), closes #33799
- add interface definitions which zone extends EventTarget (#35304) (4acb676), closes #35173
- make jasmine patch as zone module (#34676) (e1160f1)
- make mocha a zone module. (#34719) (332937e)
- add basic jest support (#35080) (daac33c)
- zone.js: add a zone config to allow user disable wrapping uncaught promise rejection (#35873) (8456c5e), closes #27840
- zone.js: Monkey patch MessagePort.prototype onproperties (#34610) (0f8e710)
Performance Improvements
v0.10.2
Features
v0.10.1
Bug Fixes
- zone.js: don't rely on global node typings outside of node/ directory (#31783) (5c9a896)
- zone.js: should expose some other internal intefaces (#31866) (f5c605b)
v0.10.0
Bug Fixes
- zone.js: **load_patch and **symbol__ should be in zone_extern for closure compiler (#31350) (6b51ed2)
- zone.js: don't fire unhandledrejection if Zone handled error (#31718) (c7542a1), closes #31701
- zone.js: don't wrap uncaught promise error. (#31443) (2bb9a65), closes #27840
- zone.js: fix zone for Jasmine 3.3. (#31497) (c4c340a)
- zone.js: handle MSPointer event correctly (#31722) (2c402d5), closes #31699
- zone.js: handle new api of electron 4 (#31669) (a445826), closes #31668
- zone.js: hook should set correct current zone (#31642) (17b32b5), closes #31641
- zone.js: move property patch to legacy (#31660) (716af10), closes #31659
- zone.js: patch shadydom (#31717) (35a025f), closes #31686
- zone.js: restore definition of global (#31453) (e6f1b04), closes /github.com/angular/zone.js/commit/71b93711806000d7788e79451478e20d6086aa8a#diff-dd469785fca8680a5b33b1e81c5cfd91R1420
- zone.js: should remove on symbol property after removeAllListeners (#31644) (a182714), closes #31643
- zone.js: update dart zone link (#31646) (7f7033b), closes #31645
- zone.js: zone-mix should import correct browser module (#31628) (87ce4e9), closes #31626
0.9.1 (2019-04-30)
Bug Fixes
- ensure that EventTarget is patched prior to legacy property descriptor patch (#1214) (aca4728)
- fakeAsyncTest requestAnimationFrame should pass timestamp as parameter (#1220) (62b8525), closes #1216
Features
Configuration
📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone UTC.
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by WhiteSource Renovate. View repository job log here.