You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pr@jena.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/11/01 00:21:32 UTC

[PR] Bump ver.graalvm from 22.3.4 to 23.0.2 [jena]

dependabot[bot] opened a new pull request, #2070:
URL: https://github.com/apache/jena/pull/2070

   Bumps `ver.graalvm` from 22.3.4 to 23.0.2.
   Updates `org.graalvm.js:js` from 22.3.4 to 23.0.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/graalvm/graaljs/releases">org.graalvm.js:js's releases</a>.</em></p>
   <blockquote>
   <h2>GraalJS 23.0.2</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   <h2>GraalJS - GraalVM Community 23.0.1</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   <h2>GraalJS - GraalVm Community 23.0.0</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/oracle/graaljs/blob/master/CHANGELOG.md">org.graalvm.js:js's changelog</a>.</em></p>
   <blockquote>
   <h1>GraalVM JavaScript (Graal.js) Changelog</h1>
   <p>This changelog summarizes major changes between GraalVM versions of the GraalVM JavaScript (ECMAScript) language runtime.
   The main focus is on user-observable behavior of the engine.
   Changelog may include unreleased versions.
   See <a href="https://www.graalvm.org/release-calendar/">release calendar</a> for release dates.</p>
   <h2>Version 24.0.0</h2>
   <ul>
   <li>Implemented the <a href="https://github.com/WebAssembly/threads">WebAssembly threads</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-promise-with-resolvers">Promise.withResolvers</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Implementation of <a href="https://github.com/tc39/proposal-async-iterator-helpers">Async Iterator Helpers</a> proposal (that was split out from Iterator Helpers proposal) was moved behind the experimental option <code>--js.async-iterator-helpers</code>.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-is-usv-string">Well-Formed Unicode Strings</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   </ul>
   <h2>Version 23.1.0</h2>
   <ul>
   <li>NOTE: GraalVM no longer ships with a &quot;js&quot; ScriptEngine. Please either use the Maven dependency or explicitly put <code>js-scriptengine.jar</code> on the module path. See <a href="https://github.com/oracle/graaljs/blob/master/docs/user/ScriptEngine.md">ScriptEngine documentation</a> for details.</li>
   <li>ECMAScript 2023 mode/features enabled by default.</li>
   <li>Updated Node.js to version 18.17.1.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-async-context">Async Context</a> proposal. It is available behind the experimental option <code>--js.async-context</code>.</li>
   <li><code>FinalizationRegistry.prototype.cleanupSome</code> is not enabled by default any more; it has been moved to ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Added an experimental option <code>--js.allow-narrow-spaces-in-date-format</code> (enabled by default). When this option is set to <code>false</code> then narrow spaces in date/time formats are replaced by a space (<code>0x20</code>).</li>
   <li>Made option <code>js.console</code> stable and allowed in <code>SandboxPolicy.UNTRUSTED</code>.</li>
   <li>Made option <code>js.unhandled-rejections</code> stable and allowed in <code>SandboxPolicy.CONSTRAINED</code>.</li>
   <li>Added option <code>js.allow-eval</code> that is stable and allowed in <code>SandboxPolicy.UNTRUSTED</code>.</li>
   <li>Deprecated option <code>js.disable-eval</code>, superseded by <code>js.allow-eval</code>.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-string-dedent">String.dedent</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Duplicate named capture groups are now supported in regular expressions, as per the <a href="https://github.com/tc39/proposal-duplicate-named-capturing-groups">duplicate named capturing groups</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-regexp-v-flag">RegExp v flag</a> proposal. It is available behind the experimental option <code>--js.regexp-unicode-sets</code>.</li>
   <li>The Maven coordinates for embedding the GraalVM JavaScript have been updated.
   For consuming the enterprise GraalVM JavaScript, use:
   <pre lang="xml"><code>&lt;dependency&gt;
     &lt;groupId&gt;org.graalvm.polyglot&lt;/groupId&gt;
     &lt;artifactId&gt;js&lt;/artifactId&gt;
     &lt;version&gt;${graalvm.version}&lt;/version&gt;
     &lt;type&gt;pom&lt;/type&gt;
   &lt;/dependency&gt;
   </code></pre>
   For consuming the community GraalVM JavaScript, use:
   <pre lang="xml"><code>&lt;dependency&gt;
     &lt;groupId&gt;org.graalvm.polyglot&lt;/groupId&gt;
     &lt;artifactId&gt;js-community&lt;/artifactId&gt;
     &lt;version&gt;${graalvm.version}&lt;/version&gt;
     &lt;type&gt;pom&lt;/type&gt;
   &lt;/dependency&gt;
   </code></pre>
   </li>
   </ul>
   <h2>Version 23.0.0</h2>
   <ul>
   <li>Implemented the <a href="https://github.com/WebAssembly/reference-types">WebAssembly reference types</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-iterator-helpers">Iterator Helpers</a> proposal. It is available behind the experimental option <code>--js.iterator-helpers</code>.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a href="https://github.com/graalvm/graaljs/commits/vm-23.0.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `org.graalvm.js:js-scriptengine` from 22.3.4 to 23.0.2
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/graalvm/graaljs/releases">org.graalvm.js:js-scriptengine's releases</a>.</em></p>
   <blockquote>
   <h2>GraalJS 23.0.2</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   <h2>GraalJS - GraalVM Community 23.0.1</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   <h2>GraalJS - GraalVm Community 23.0.0</h2>
   <p>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.</p>
   <p>More information is available on the GraalVM website:
   <a href="http://www.graalvm.org/reference-manual/js/">http://www.graalvm.org/reference-manual/js/</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/oracle/graaljs/blob/master/CHANGELOG.md">org.graalvm.js:js-scriptengine's changelog</a>.</em></p>
   <blockquote>
   <h1>GraalVM JavaScript (Graal.js) Changelog</h1>
   <p>This changelog summarizes major changes between GraalVM versions of the GraalVM JavaScript (ECMAScript) language runtime.
   The main focus is on user-observable behavior of the engine.
   Changelog may include unreleased versions.
   See <a href="https://www.graalvm.org/release-calendar/">release calendar</a> for release dates.</p>
   <h2>Version 24.0.0</h2>
   <ul>
   <li>Implemented the <a href="https://github.com/WebAssembly/threads">WebAssembly threads</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-promise-with-resolvers">Promise.withResolvers</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Implementation of <a href="https://github.com/tc39/proposal-async-iterator-helpers">Async Iterator Helpers</a> proposal (that was split out from Iterator Helpers proposal) was moved behind the experimental option <code>--js.async-iterator-helpers</code>.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-is-usv-string">Well-Formed Unicode Strings</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   </ul>
   <h2>Version 23.1.0</h2>
   <ul>
   <li>NOTE: GraalVM no longer ships with a &quot;js&quot; ScriptEngine. Please either use the Maven dependency or explicitly put <code>js-scriptengine.jar</code> on the module path. See <a href="https://github.com/oracle/graaljs/blob/master/docs/user/ScriptEngine.md">ScriptEngine documentation</a> for details.</li>
   <li>ECMAScript 2023 mode/features enabled by default.</li>
   <li>Updated Node.js to version 18.17.1.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-async-context">Async Context</a> proposal. It is available behind the experimental option <code>--js.async-context</code>.</li>
   <li><code>FinalizationRegistry.prototype.cleanupSome</code> is not enabled by default any more; it has been moved to ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Added an experimental option <code>--js.allow-narrow-spaces-in-date-format</code> (enabled by default). When this option is set to <code>false</code> then narrow spaces in date/time formats are replaced by a space (<code>0x20</code>).</li>
   <li>Made option <code>js.console</code> stable and allowed in <code>SandboxPolicy.UNTRUSTED</code>.</li>
   <li>Made option <code>js.unhandled-rejections</code> stable and allowed in <code>SandboxPolicy.CONSTRAINED</code>.</li>
   <li>Added option <code>js.allow-eval</code> that is stable and allowed in <code>SandboxPolicy.UNTRUSTED</code>.</li>
   <li>Deprecated option <code>js.disable-eval</code>, superseded by <code>js.allow-eval</code>.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-string-dedent">String.dedent</a> proposal. It is available in ECMAScript staging mode (<code>--js.ecmascript-version=staging</code>).</li>
   <li>Duplicate named capture groups are now supported in regular expressions, as per the <a href="https://github.com/tc39/proposal-duplicate-named-capturing-groups">duplicate named capturing groups</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-regexp-v-flag">RegExp v flag</a> proposal. It is available behind the experimental option <code>--js.regexp-unicode-sets</code>.</li>
   <li>The Maven coordinates for embedding the GraalVM JavaScript have been updated.
   For consuming the enterprise GraalVM JavaScript, use:
   <pre lang="xml"><code>&lt;dependency&gt;
     &lt;groupId&gt;org.graalvm.polyglot&lt;/groupId&gt;
     &lt;artifactId&gt;js&lt;/artifactId&gt;
     &lt;version&gt;${graalvm.version}&lt;/version&gt;
     &lt;type&gt;pom&lt;/type&gt;
   &lt;/dependency&gt;
   </code></pre>
   For consuming the community GraalVM JavaScript, use:
   <pre lang="xml"><code>&lt;dependency&gt;
     &lt;groupId&gt;org.graalvm.polyglot&lt;/groupId&gt;
     &lt;artifactId&gt;js-community&lt;/artifactId&gt;
     &lt;version&gt;${graalvm.version}&lt;/version&gt;
     &lt;type&gt;pom&lt;/type&gt;
   &lt;/dependency&gt;
   </code></pre>
   </li>
   </ul>
   <h2>Version 23.0.0</h2>
   <ul>
   <li>Implemented the <a href="https://github.com/WebAssembly/reference-types">WebAssembly reference types</a> proposal.</li>
   <li>Implemented the <a href="https://github.com/tc39/proposal-iterator-helpers">Iterator Helpers</a> proposal. It is available behind the experimental option <code>--js.iterator-helpers</code>.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a href="https://github.com/graalvm/graaljs/commits/vm-23.0.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org


Re: [PR] Bump ver.graalvm from 22.3.4 to 23.0.2 [jena]

Posted by "afs (via GitHub)" <gi...@apache.org>.
afs closed pull request #2070: Bump ver.graalvm from 22.3.4 to 23.0.2
URL: https://github.com/apache/jena/pull/2070


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org


Re: [PR] Bump ver.graalvm from 22.3.4 to 23.0.2 [jena]

Posted by "afs (via GitHub)" <gi...@apache.org>.
afs commented on PR #2070:
URL: https://github.com/apache/jena/pull/2070#issuecomment-1788695856

   Done on the jena5 branch by #2073.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org


Re: [PR] Bump ver.graalvm from 22.3.4 to 23.0.2 [jena]

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #2070:
URL: https://github.com/apache/jena/pull/2070#issuecomment-1788695922

   OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org