incubator-baremaps
incubator-baremaps copied to clipboard
Bump version.lib.graalvm from 22.0.0.2 to 22.2.0
Bumps version.lib.graalvm from 22.0.0.2 to 22.2.0.
Updates js from 22.0.0.2 to 22.2.0
Release notes
Sourced from js's releases.
GraalJS - GraalVM Community Edition 22.2.0
GraalVM provides an ECMAScript-compliant runtime to execute JavaScript and Node.js applications. It is fully standard compliant, execute applications with high performance, and provide all benefits from the GraalVM stack, including language interoperability and common tooling.
More information is available on the GraalVM website: http://www.graalvm.org/reference-manual/js/
GraalJS - GraalVM Community Edition 22.1.0
GraalVM provides an ECMAScript-compliant runtime to execute JavaScript and Node.js applications. It is fully standard compliant, execute applications with high performance, and provide all benefits from the GraalVM stack, including language interoperability and common tooling.
More information is available on the GraalVM website: http://www.graalvm.org/reference-manual/js/
Changelog
Sourced from js's changelog.
Version 22.2.0
- GraalVM JavaScript is now an installable component of GraalVM. It can be installed with
gu install js.- Enabled option
js.foreign-object-prototypeby default. Polyglot Interop objects now get a fitting JavaScript prototype assigned unless explicitly turned off using this flag.- Added intermediate prototype for foreign objects to simplify adapting functionality.
- Removed deprecated experimental option
experimental-foreign-object-prototype.- Removed experimental option
commonjs-global-properties. The same functionality can be achieved in user code with a direct call torequire()after context creation.- Added an experimental option
--js.zone-rules-based-time-zonesthat allows to use timezone-related data fromZoneRulesProvider(instead of ICU4J data files).- Temporal objects can be converted to compatible Java objects when possible, using the
ValueAPI's methods likeasDate().Version 22.1.0
- Updated Node.js to version 16.14.2.
- Graal.js now requires Java 11+ and no longer supports Java 8.
- Implemented the Intl.NumberFormat v3 proposal.
- Implemented the Array Grouping v3 proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Temporal proposal. It is available behind the experimental option
--js.temporal.- Implemented the Array Find from Last proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Optimized closures to only keep references on variables in the lexical environment that are needed by (one or more) closures. This optimization can be disabled with the experimental option
--js.scope-optimization=false.- Moved the internal string representation to the new TruffleString type.
- Added option
--js.string-lazy-substrings(default: true) to allow toggling the copying behavior of string slices. When enabled, string slices internally create string views instead of copying the given string region, which increases performance but may also increase memory utilization.Version 22.0.0
- ECMAScript 2022 mode/features enabled by default.
- Implemented the Intl.DisplayNames v2 proposal.
- Implemented the Intl Locale Info proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Intl.DateTimeFormat.prototype.formatRange proposal.
- Implemented the Extend TimeZoneName Option proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Intl Enumeration API proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Updated Node.js to version 14.18.1.
- Added option
js.esm-bare-specifier-relative-lookup(default: false) to customize how bare specifiers for ES Modules are resolved. When disabled, bare specifiers are resolved with an absolute path lookup. When enabled, bare specifiers are resolved relative to the importing module's path.- ICU4J library moved to
truffle.Version 21.3.0
- Implemented the Private Fields in
inproposal. It is available behind the experimental option--js.private-fields-in.- Implemented the JavaScript BigInt to WebAssembly i64 integration proposal. It can be disabled using the
--js.wasm-bigint=falseoption.- Updated Node.js to version 14.17.6.
- Implemented the Error Cause proposal. It is available behind the experimental option
--js.error-cause.- Implemented the Import Assertions proposal. It is available behind the experimental option
--js.import-assertions.- Added support for
collationoption ofIntl.Collator.- Added support for
dayPeriodandfractionalSecondDigitsoptions ofIntl.DateTimeFormat.- Changed foreign hash map access using
map[key]syntax to convert the key to a string or symbol.- Implemented
Object.hasOwn(Accessible Object.hasOwnProperty proposal). It is available in ECMAScript 2022 (--js.ecmascript-version=2022).- Implemented class static initialization blocks proposal. It is available in ECMAScript 2022 (
--js.ecmascript-version=2022).- Added experimental Polyglot
Contextoption--js.esm-eval-returns-exports. When enabled,eval()of an ES module will return a PolyglotValuecontaining the ES module exported namespace object. The option is disabled by default.Version 21.2.0
- Graal.js now prints a warning when runtime compilation is not supported. This warning can be disabled using the '--engine.WarnInterpreterOnly=false' option or the '-Dpolyglot.engine.WarnInterpreterOnly=false' system property.
- Added the
js.unhandled-rejectionsoption to track unhandled promise rejections in a polyglotContext. By default, the option is set tonone, and unhandled promise rejections are not tracked.- Implemented the New Set Methods proposal. It is available behind an experimental flag (
--js.new-set-methods).- Implemented experimental operator overloading support. Use the experimental option
--js.operator-overloadingto enable it and consult the documentation.- Updated RegExp Match Indices proposal with opt-in using the
dflag. Available in ECMAScript 2022 (--js.ecmascript-version=2022). Deprecated--js.regexp-match-indicesoption.
... (truncated)
Commits
023ce05GraalVM 22.2.042006c2[GR-39067] Backport fixes around foreign prototype.cf1a945address remarks from review, add tests77034bcfix foreign instanceof to check prototype hierarchy and extend testing99f9488fix copy-paste error in testbe6860b[GR-39238] Prepare 22.2.8660a12update ci overlayfccd50fupdate graal importd1e738d[GR-23997] Backport of missing changes into 22.2.0.891ef75[GR-39226] Add license files to the Graal.js installable.- Additional commits viewable in compare view
Updates js-scriptengine from 22.0.0.2 to 22.2.0
Release notes
Sourced from js-scriptengine's releases.
GraalJS - GraalVM Community Edition 22.2.0
GraalVM provides an ECMAScript-compliant runtime to execute JavaScript and Node.js applications. It is fully standard compliant, execute applications with high performance, and provide all benefits from the GraalVM stack, including language interoperability and common tooling.
More information is available on the GraalVM website: http://www.graalvm.org/reference-manual/js/
GraalJS - GraalVM Community Edition 22.1.0
GraalVM provides an ECMAScript-compliant runtime to execute JavaScript and Node.js applications. It is fully standard compliant, execute applications with high performance, and provide all benefits from the GraalVM stack, including language interoperability and common tooling.
More information is available on the GraalVM website: http://www.graalvm.org/reference-manual/js/
Changelog
Sourced from js-scriptengine's changelog.
Version 22.2.0
- GraalVM JavaScript is now an installable component of GraalVM. It can be installed with
gu install js.- Enabled option
js.foreign-object-prototypeby default. Polyglot Interop objects now get a fitting JavaScript prototype assigned unless explicitly turned off using this flag.- Added intermediate prototype for foreign objects to simplify adapting functionality.
- Removed deprecated experimental option
experimental-foreign-object-prototype.- Removed experimental option
commonjs-global-properties. The same functionality can be achieved in user code with a direct call torequire()after context creation.- Added an experimental option
--js.zone-rules-based-time-zonesthat allows to use timezone-related data fromZoneRulesProvider(instead of ICU4J data files).- Temporal objects can be converted to compatible Java objects when possible, using the
ValueAPI's methods likeasDate().Version 22.1.0
- Updated Node.js to version 16.14.2.
- Graal.js now requires Java 11+ and no longer supports Java 8.
- Implemented the Intl.NumberFormat v3 proposal.
- Implemented the Array Grouping v3 proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Temporal proposal. It is available behind the experimental option
--js.temporal.- Implemented the Array Find from Last proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Optimized closures to only keep references on variables in the lexical environment that are needed by (one or more) closures. This optimization can be disabled with the experimental option
--js.scope-optimization=false.- Moved the internal string representation to the new TruffleString type.
- Added option
--js.string-lazy-substrings(default: true) to allow toggling the copying behavior of string slices. When enabled, string slices internally create string views instead of copying the given string region, which increases performance but may also increase memory utilization.Version 22.0.0
- ECMAScript 2022 mode/features enabled by default.
- Implemented the Intl.DisplayNames v2 proposal.
- Implemented the Intl Locale Info proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Intl.DateTimeFormat.prototype.formatRange proposal.
- Implemented the Extend TimeZoneName Option proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Implemented the Intl Enumeration API proposal. It is available in ECMAScript staging mode (
--js.ecmascript-version=staging).- Updated Node.js to version 14.18.1.
- Added option
js.esm-bare-specifier-relative-lookup(default: false) to customize how bare specifiers for ES Modules are resolved. When disabled, bare specifiers are resolved with an absolute path lookup. When enabled, bare specifiers are resolved relative to the importing module's path.- ICU4J library moved to
truffle.Version 21.3.0
- Implemented the Private Fields in
inproposal. It is available behind the experimental option--js.private-fields-in.- Implemented the JavaScript BigInt to WebAssembly i64 integration proposal. It can be disabled using the
--js.wasm-bigint=falseoption.- Updated Node.js to version 14.17.6.
- Implemented the Error Cause proposal. It is available behind the experimental option
--js.error-cause.- Implemented the Import Assertions proposal. It is available behind the experimental option
--js.import-assertions.- Added support for
collationoption ofIntl.Collator.- Added support for
dayPeriodandfractionalSecondDigitsoptions ofIntl.DateTimeFormat.- Changed foreign hash map access using
map[key]syntax to convert the key to a string or symbol.- Implemented
Object.hasOwn(Accessible Object.hasOwnProperty proposal). It is available in ECMAScript 2022 (--js.ecmascript-version=2022).- Implemented class static initialization blocks proposal. It is available in ECMAScript 2022 (
--js.ecmascript-version=2022).- Added experimental Polyglot
Contextoption--js.esm-eval-returns-exports. When enabled,eval()of an ES module will return a PolyglotValuecontaining the ES module exported namespace object. The option is disabled by default.Version 21.2.0
- Graal.js now prints a warning when runtime compilation is not supported. This warning can be disabled using the '--engine.WarnInterpreterOnly=false' option or the '-Dpolyglot.engine.WarnInterpreterOnly=false' system property.
- Added the
js.unhandled-rejectionsoption to track unhandled promise rejections in a polyglotContext. By default, the option is set tonone, and unhandled promise rejections are not tracked.- Implemented the New Set Methods proposal. It is available behind an experimental flag (
--js.new-set-methods).- Implemented experimental operator overloading support. Use the experimental option
--js.operator-overloadingto enable it and consult the documentation.- Updated RegExp Match Indices proposal with opt-in using the
dflag. Available in ECMAScript 2022 (--js.ecmascript-version=2022). Deprecated--js.regexp-match-indicesoption.
... (truncated)
Commits
023ce05GraalVM 22.2.042006c2[GR-39067] Backport fixes around foreign prototype.cf1a945address remarks from review, add tests77034bcfix foreign instanceof to check prototype hierarchy and extend testing99f9488fix copy-paste error in testbe6860b[GR-39238] Prepare 22.2.8660a12update ci overlayfccd50fupdate graal importd1e738d[GR-23997] Backport of missing changes into 22.2.0.891ef75[GR-39226] Add license files to the Graal.js installable.- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)