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

fix(deps): update dependency core-js to v3.20.0 #1715

Merged
merged 3 commits into from
Dec 22, 2021
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 30, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
core-js 3.17.3 -> 3.20.0 age adoption passing confidence

Release Notes

zloirock/core-js

v3.20.0

Compare Source

  • Added structuredClone method from the HTML spec, see MDN
    • Includes all cases of cloning and transferring of required ECMAScript and platform types that can be polyfilled, for the details see the caveats
    • Uses native structured cloning algorithm implementations where it's possible
    • Includes the new semantic of errors cloning from html/5749
  • Added DOMException polyfill, the Web IDL spec, see MDN
    • Includes DOMException and its attributes polyfills with fixes of many different engines bugs
    • Includes DOMException#stack property polyfill in engines that should have it
    • Reuses native DOMException implementations where it's possible (for example, in old NodeJS where it's not exposed as global)
  • Added support of cause on all Error types
  • Added Error.prototype.toString method polyfill with fixes of many different bugs of JS engines
  • Added Number.prototype.toExponential method polyfill with fixes of many different bugs of JS engines
  • Array grouping proposal:
    • Moved to the stage 3
    • Added Array.prototype.groupByToMap method
    • Removed @@​species support
  • Added change Array by copy stage 2 proposal:
    • Array.prototype.toReversed
    • Array.prototype.toSorted
    • Array.prototype.toSpliced
    • Array.prototype.with
    • %TypedArray%.prototype.toReversed
    • %TypedArray%.prototype.toSorted
    • %TypedArray%.prototype.toSpliced
    • %TypedArray%.prototype.with
  • Added Iterator.prototype.toAsync method from the iterator helpers stage 2 proposal
  • Array.fromAsync proposal moved to stage 2
  • Added String.cooked stage 1 proposal:
  • Added Function.prototype.unThis stage 0 proposal
  • Added Function.{ isCallable, isConstructor } stage 0 proposal:
    • Function.isCallable
    • Function.isConstructor
  • Added a workaround of most cases breakage modern String#at after loading obsolete String#at proposal module, #​1019
  • Fixed Array.prototype.{ values, @​@​iterator }.name in V8 ~ Chrome 45-
  • Fixed validation of typed arrays in typed arrays iteration methods in V8 ~ Chrome 50-
  • Extension of the API, #​1012
    • Added a new core-js/actual/** namespace
    • Added entry points for each finished post-ES6 proposal

v3.19.3

Compare Source

  • Fixed internal slots check in methods of some built-in types, #​1017
  • Fixed URLSearchParams iterator .next that should be enumerable by the spec
  • Refactored Subscription
  • Added NodeJS 17.2 compat data mapping

v3.19.2

Compare Source

  • Added a workaround for a UC Browser specific version bug with unobservable RegExp#sticky flag, #​1008, #​1015
  • Added handling of comments and specific spaces to Function#name polyfill, #​1010, thanks @​ildar-shaimordanov
  • Prevented some theoretical cases of breaking / observing the internal state by patching Array.prototype[@​@​species]
  • Refactored URL and URLSearchParams
  • Added iOS Safari 15.2 compat data mapping
  • Added Electron 17.0 compat data mapping
  • Updated Deno compat data mapping

v3.19.1

Compare Source

  • Added a workaround for FF26- bug where ArrayBuffers are non-extensible, but Object.isExtensible does not report it:
    • Fixed in Object.{ isExtensible, isSealed, isFrozen } and Reflect.isExtensible
    • Fixed handling of ArrayBuffers as collections keys
  • Fixed Object#toString on AggregateError in IE10-
  • Fixed possible lack of dependencies of WeakMap in IE8-
  • .findLast methods family marked as supported from Chrome 97
  • Fixed inheritance of Electron compat data web. modules
  • Fixed Safari 15.1 compat data (some features were not added)
  • Added iOS Safari 15.1 compat data mapping

v3.19.0

Compare Source

  • Most built-ins are encapsulated in core-js for preventing possible cases of breaking / observing the internal state by patching / deleting of them
    • Avoid .call / .apply prototype methods that could be patched
    • Avoid instanceof operator - implicit .prototype / @@​hasInstance access that could be patched
    • Avoid RegExp#test, String#match and some over methods - implicit .exec and RegExp well-known symbols access that could be patched
  • Clearing of Error stack from extra entries experimentally added to AggregateError, #​996, in case lack of problems it will be extended to other cases
  • In engines with native Symbol support, new well-known symbols created with usage Symbol.for for ensuring the same keys in different realms, #​998
  • Added a workaround of a BrowserFS NodeJS process polyfill bug that incorrectly reports V8 version that's used in some cases of core-js feature detection
  • Fixed normalization of message AggregateError argument
  • Fixed order of arguments conversion in Math.scale, a spec draft bug
  • Fixed core-js-builder work in NodeJS 17, added a workaround of webpack + NodeJS 17 issue
  • Added NodeJS 17.0 compat data mapping
  • Added Opera Android 65 compat data mapping
  • Updated Electron 16.0 compat data mapping
  • Many other minor fixes and improvements

v3.18.3

Compare Source

  • Fixed the prototype chain of AggregateError constructor that should contain Error constructor
  • Fixed incorrect AggregateError.prototype properties descriptors
  • Fixed InstallErrorCause internal operation
  • Added NodeJS 16.11 compat data mapping
  • Added Deno 1.16 compat data mapping
  • Object.hasOwn marked as supported from Safari 15.1

v3.18.2

Compare Source

  • Early { Array, %TypedArray% }.fromAsync errors moved to the promise, per the latest changes of the spec draft
  • Internal ToInteger(OrInfinity) operation returns +0 for -0 argument, ES2020+ update
  • Fixed theoretical problems with handling bigint in Number constructor wrapper
  • Fixed String.raw with extra arguments
  • Fixed some missed dependencies in entry points
  • Some other minor fixes and improvements
  • Refactoring

v3.18.1

Compare Source

  • Fixed String.prototype.substr feature detection and compat data
  • Removed mistakenly added .forEach from prototypes of some DOM collections where it shouldn't be, #​988, #​987, thanks @​moorejs
  • Added cause to AggregateError constructor implementation (still without adding to the feature detection)
  • Families of .at and .findLast methods marked as supported in Safari TP
  • Added Electron 16.0 compat data mapping

v3.18.0

Compare Source

  • Added Array.fromAsync stage 1 proposal:
    • Array.fromAsync
    • %TypedArray%.fromAsync
  • .name and .toString() on polyfilled functions improved in many different cases
  • Improved internal IsConstructor and IsCallable checks
  • Fixed some internal cases of GetMethod operation
  • Fixed a bug of MS Edge 18- parseInt / parseFloat with boxed symbols
  • Fixed es.array.{ index-of, last-index-of } compat data
  • Added Deno 1.15 compat data mapping
  • Some other minor fixes and optimizations

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 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.

🔕 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.

@codecov-commenter
Copy link

codecov-commenter commented Apr 30, 2021

Codecov Report

Merging #1715 (0c79ae9) into master (936a1bf) will increase coverage by 6.71%.
The diff coverage is n/a.

❗ Current head 0c79ae9 differs from pull request most recent head 5f01aa4. Consider uploading reports for the commit 5f01aa4 to get more accurate results
Impacted file tree graph

@@             Coverage Diff              @@
##             master    #1715      +/-   ##
============================================
+ Coverage     83.61%   90.32%   +6.71%     
+ Complexity     1245      147    -1098     
============================================
  Files           156       17     -139     
  Lines          3643      341    -3302     
  Branches        258       34     -224     
============================================
- Hits           3046      308    -2738     
+ Misses          464       18     -446     
+ Partials        133       15     -118     
Impacted Files Coverage Δ
...ic/boot/admin/server/domain/entities/Instance.java
...java/de/codecentric/boot/admin/NotifierConfig.java
...ic/boot/admin/server/domain/values/InstanceId.java
...ric/boot/admin/server/web/InstancesController.java
...rver/notify/filter/ExpiringNotificationFilter.java
...dmin/server/services/EndpointDetectionTrigger.java
...web/client/exception/ResolveInstanceException.java
.../boot/admin/server/notify/NotificationTrigger.java
...ic/boot/admin/server/notify/PagerdutyNotifier.java
...t/admin/server/eventstore/HazelcastEventStore.java
... and 129 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 936a1bf...5f01aa4. Read the comment docs.

@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.11.1 fix(deps): update dependency core-js to v3.11.2 May 3, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.11.2 fix(deps): update dependency core-js to v3.11.3 May 5, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.11.3 fix(deps): update dependency core-js to v3.12.0 May 6, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.12.0 fix(deps): update dependency core-js to ^3.12.0 May 7, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to ^3.12.0 fix(deps): update dependency core-js to ^3.12.1 May 8, 2021
@renovate renovate bot force-pushed the renovate/core-js-3.x branch 2 times, most recently from 11e3fd5 to fd910e6 Compare May 14, 2021 10:20
@renovate renovate bot changed the title fix(deps): update dependency core-js to ^3.12.1 fix(deps): update dependency core-js to v3.12.1 May 14, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.12.1 fix(deps): update dependency core-js to v3.13.0 May 25, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.13.0 fix(deps): update dependency core-js to v3.13.1 May 29, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.13.1 fix(deps): update dependency core-js to v3.14.0 Jun 5, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.14.0 fix(deps): update dependency core-js to v3.15.0 Jun 20, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.15.0 fix(deps): update dependency core-js to v3.15.1 Jun 22, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.15.1 fix(deps): update dependency core-js to v3.15.2 Jun 29, 2021
@renovate renovate bot force-pushed the renovate/core-js-3.x branch 3 times, most recently from 5b0ef84 to 741fa08 Compare July 2, 2021 13:18
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.15.2 fix(deps): update dependency core-js to v3.16.0 Jul 30, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.17.3 - autoclosed fix(deps): update dependency core-js to v3.17.3 Sep 19, 2021
@renovate renovate bot reopened this Sep 19, 2021
@renovate renovate bot restored the renovate/core-js-3.x branch September 19, 2021 20:48
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.17.3 fix(deps): update dependency core-js to v3.18.0 Sep 19, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.18.0 fix(deps): update dependency core-js to v3.18.1 Sep 27, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.18.1 fix(deps): update dependency core-js to v3.18.2 Oct 5, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.18.2 fix(deps): update dependency core-js to v3.18.3 Oct 12, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.18.3 fix(deps): update dependency core-js to v3.19.0 Oct 25, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.19.0 fix(deps): update dependency core-js to v3.19.1 Nov 2, 2021
@renovate
Copy link
Contributor Author

renovate bot commented Nov 2, 2021

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: spring-boot-admin-server-ui/package-lock.json
npm WARN using --force Recommended protections disabled.
npm ERR! code EBADENGINE
npm ERR! engine Unsupported engine
npm ERR! engine Not compatible with your version of node/npm: undefined
npm ERR! notsup Not compatible with your version of node/npm: undefined
npm ERR! notsup Required: {"node":"~15","npm":"~7"}
npm ERR! notsup Actual:   {"npm":"7.24.2","node":"v14.18.1"}

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2021-12-15T20_20_05_254Z-debug.log

@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.19.1 fix(deps): update dependency core-js to v3.19.2 Nov 29, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.19.2 fix(deps): update dependency core-js to v3.19.3 Dec 6, 2021
@renovate renovate bot changed the title fix(deps): update dependency core-js to v3.19.3 fix(deps): update dependency core-js to v3.20.0 Dec 15, 2021
@SteKoe SteKoe merged commit cbab0ef into master Dec 22, 2021
@SteKoe SteKoe deleted the renovate/core-js-3.x branch December 22, 2021 09:59
SteKoe added a commit that referenced this pull request Dec 22, 2021
…centric/spring-boot-admin into renovate/codecov-codecov-action-2.x

* 'renovate/codecov-codecov-action-2.x' of github.com:codecentric/spring-boot-admin: (45 commits)
  chore(deps): update codecov/codecov-action action to v2
  chore(deps): update dependency com.hazelcast:hazelcast to v4.2.4 (#1894)
  chore(deps): update dependency ch.qos.logback:logback-classic to v1.2.9 (#1892)
  chore(deps): update dependency ch.qos.logback:logback-core to v1.2.9 (#1893)
  chore(deps): update actions/cache action to v2.1.7 (#1891)
  fix(#1868): JavaScript error in startup view when using Spring Boot 2.6
  fix(deps): update dependency core-js to v3.20.0 (#1715)
  fix(deps): update dependency vue-i18n to v8.26.7 (#1811)
  chore(deps): update dependency webpack-bundle-analyzer to v4 (#1825)
  chore(deps): update jest monorepo (major) (#1827)
  chore(deps): update dependency rxjs to v7 (#1836)
  chore(deps): update d3
  chore(npm): update supported engines to node >= 15 and npm >= 7
  chore(deps): remove unused dependency css-loader (#1818)
  fix: value maybe null (#1873)
  fix: bean.aliases maybe null (#1874)
  fix(CVE-2021-43466): bump thymeleaf to 3.0.14.RELEASE (#1884)
  chore(deps): update java docker tag to v9 (#1826)
  chore(deps): update dependency org.awaitility:awaitility to v4.1.1 (#1856)
  Fix toggle button for loggers when there are more than 1 instances. (#1880)
  ...
SteKoe added a commit that referenced this pull request Dec 22, 2021
…er-3.x

* origin/master: (36 commits)
  chore(deps): update jamesives/github-pages-deploy-action action to v4.1.8 (#1896)
  chore(deps): update dependency org.springframework.cloud:spring-cloud-dependencies to v2020.0.5 (#1895)
  chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3 (#1822)
  chore(deps): update codecov/codecov-action action to v2 (#1814)
  chore(deps): update dependency com.hazelcast:hazelcast to v4.2.4 (#1894)
  chore(deps): update dependency ch.qos.logback:logback-classic to v1.2.9 (#1892)
  chore(deps): update dependency ch.qos.logback:logback-core to v1.2.9 (#1893)
  chore(deps): update actions/cache action to v2.1.7 (#1891)
  fix(#1868): JavaScript error in startup view when using Spring Boot 2.6
  fix(deps): update dependency core-js to v3.20.0 (#1715)
  fix(deps): update dependency vue-i18n to v8.26.7 (#1811)
  chore(deps): update dependency webpack-bundle-analyzer to v4 (#1825)
  chore(deps): update jest monorepo (major) (#1827)
  chore(deps): update dependency rxjs to v7 (#1836)
  chore(deps): update d3
  chore(npm): update supported engines to node >= 15 and npm >= 7
  chore(deps): remove unused dependency css-loader (#1818)
  fix: value maybe null (#1873)
  fix: bean.aliases maybe null (#1874)
  fix(CVE-2021-43466): bump thymeleaf to 3.0.14.RELEASE (#1884)
  ...
SteKoe added a commit that referenced this pull request Dec 22, 2021
…r-12.x

* origin/master: (28 commits)
  chore(deps): update jamesives/github-pages-deploy-action action to v4.1.8 (#1896)
  chore(deps): update dependency org.springframework.cloud:spring-cloud-dependencies to v2020.0.5 (#1895)
  chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3 (#1822)
  chore(deps): update codecov/codecov-action action to v2 (#1814)
  chore(deps): update dependency com.hazelcast:hazelcast to v4.2.4 (#1894)
  chore(deps): update dependency ch.qos.logback:logback-classic to v1.2.9 (#1892)
  chore(deps): update dependency ch.qos.logback:logback-core to v1.2.9 (#1893)
  chore(deps): update actions/cache action to v2.1.7 (#1891)
  fix(#1868): JavaScript error in startup view when using Spring Boot 2.6
  fix(deps): update dependency core-js to v3.20.0 (#1715)
  fix(deps): update dependency vue-i18n to v8.26.7 (#1811)
  chore(deps): update dependency webpack-bundle-analyzer to v4 (#1825)
  chore(deps): update jest monorepo (major) (#1827)
  chore(deps): update dependency rxjs to v7 (#1836)
  chore(deps): update d3
  chore(npm): update supported engines to node >= 15 and npm >= 7
  chore(deps): remove unused dependency css-loader (#1818)
  fix: value maybe null (#1873)
  fix: bean.aliases maybe null (#1874)
  fix(CVE-2021-43466): bump thymeleaf to 3.0.14.RELEASE (#1884)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants