You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/03/16 05:13:36 UTC

[GitHub] [beam] dependabot[bot] opened a new pull request, #25858: Bump github.com/tetratelabs/wazero from 1.0.0-rc.1 to 1.0.0-rc.2 in /sdks

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

   Bumps [github.com/tetratelabs/wazero](https://github.com/tetratelabs/wazero) from 1.0.0-rc.1 to 1.0.0-rc.2.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/tetratelabs/wazero/releases">github.com/tetratelabs/wazero's releases</a>.</em></p>
   <blockquote>
   <h2>v1.0.0-rc.2</h2>
   <p>wazero v1.0.0-rc.2 is a stabilizing release, and the last version before 1.0 next week.</p>
   <p>wazero 1.0.0 will happen at our <a href="https://www.eventbrite.com/e/wazero-10-launch-party-tickets-585204150367">release party</a> attended by many contributors present at <a href="https://github.com/tetratelabs/wazero/blob/HEAD/wasmio.tech">wasmio</a> in Barcelona. While this is our first community meetup, it won't be our last. Please join <a href="https://wazero.io/community/">us</a> to suggest or help organize subsequent events.</p>
   <p>Below are a list of changes, notably new is operating system packaging. Read on to get the full story!</p>
   <h2>Packaging</h2>
   <p><a href="https://github.com/mathetake"><code>@​mathetake</code></a> and <a href="https://github.com/evacchi"><code>@​evacchi</code></a> worked together to publish OS artifacts, you can see attached to this release. Most work was needed around windows as MSI installers need to be signed to avoid warnings. We'll begin distributing wazero via <a href="https://brew.sh/">homebrew</a> and <a href="https://learn.microsoft.com/en-us/windows/package-manager/winget/">winget</a> soon, as well.</p>
   <h2>Tests</h2>
   <p>Thanks particularly to <a href="https://github.com/codefromthecrypt"><code>@​codefromthecrypt</code></a> and <a href="https://github.com/evacchi"><code>@​evacchi</code></a>, wazero is more tested than we were before, and more than any other runtime we are aware of. We've notably closed gaps not just in WASI, but edge cases around windows and GOOS=js. <a href="https://github.com/mathetake"><code>@​mathetake</code></a> stepped in not just in support of tests, but also adding a test flow so we can code in confidence:</p>
   <p><img src="https://user-images.githubusercontent.com/64215/225520604-65e073e4-b4a0-4464-a7c0-2d5d3f2baff0.png" alt="image" /></p>
   <h2>Website</h2>
   <p>wazero already has extensive <a href="https://pkg.go.dev/github.com/tetratelabs/wazero">code documentation</a>, <a href="https://github.com/tetratelabs/wazero/tree/main/examples">examples</a>, <a href="https://github.com/tetratelabs/wazero/blob/main/RATIONALE.md">low-level RATIONALE</a> and <a href="https://wazero.io/languages/">language guides</a>.</p>
   <p>We have work, yet, on high-level and conceptual documentation. To start, <a href="https://github.com/mathetake"><code>@​mathetake</code></a> added a <a href="https://wazero.io/docs/">documentation page</a>, covering architecture and some low-level questions. <a href="https://github.com/evacchi"><code>@​evacchi</code></a> also polished the <a href="https://wazero.io">home page</a>, now that we're focusing a lot more on our CLI based user base.</p>
   <h2>Performance</h2>
   <p><a href="https://github.com/mathetake"><code>@​mathetake</code></a> has worked relentlessly to improve performance, especially around initialization of modules. This is analogous to startup time. You can see some of the dramatic improvements below:</p>
   <pre lang="bash"><code>$ benchstat v1.0.0-rc.1.txt v1.0.0-rc.2.txt
   name                                    old time/op    new time/op    delta
   Initialization/interpreter-32             52.9µs ± 2%    36.1µs ± 2%  -31.74%  (p=0.000 n=28+25)
   Initialization/interpreter-multiple-32    39.9µs ± 2%    39.7µs ±13%     ~     (p=0.140 n=29+30)
   Initialization/compiler-32                32.2µs ± 7%    28.3µs ± 9%  -12.09%  (p=0.000 n=30+30)
   Initialization/compiler-multiple-32       25.3µs ± 5%    24.5µs ± 8%   -3.29%  (p=0.000 n=30+26)
   Compilation/with_extern_cache-32           206µs ± 2%     200µs ± 2%   -2.78%  (p=0.000 n=29+30)
   Compilation/without_extern_cache-32       6.00ms ± 1%    5.94ms ± 1%   -0.95%  (p=0.000 n=29+30)
   <p>name                                    old alloc/op   new alloc/op   delta
   Initialization/interpreter-32              137kB ± 0%     136kB ± 0%   -0.35%  (p=0.000 n=30+30)
   Initialization/interpreter-multiple-32     137kB ± 0%     137kB ± 0%   -0.04%  (p=0.000 n=27+27)
   Initialization/compiler-32                 141kB ± 0%     137kB ± 0%   -3.09%  (p=0.000 n=30+23)
   Initialization/compiler-multiple-32        142kB ± 0%     142kB ± 0%   -0.03%  (p=0.000 n=27+25)
   Compilation/with_extern_cache-32          55.6kB ± 0%    54.6kB ± 0%   -1.79%  (p=0.000 n=29+30)
   Compilation/without_extern_cache-32       1.99MB ± 0%    1.99MB ± 0%   -0.12%  (p=0.000 n=30+30)</p>
   <p>name                                    old allocs/op  new allocs/op  delta
   Initialization/interpreter-32               52.0 ± 0%      38.0 ± 0%  -26.92%  (p=0.000 n=30+30)
   Initialization/interpreter-multiple-32      58.0 ± 0%      57.0 ± 0%   -1.72%  (p=0.000 n=30+30)
   &lt;/tr&gt;&lt;/table&gt;
   </code></pre></p>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/tetratelabs/wazero/commit/576ef24fc370a3b49f8c73e25ffe5433a9950ebe"><code>576ef24</code></a> ci: adds integration test on Go(Js) (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1246">#1246</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/8ab1615b5380144274b59a310bb99d1150d9a5d7"><code>8ab1615</code></a> Forbids empty name module imports (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1244">#1244</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/8464474e2183b6484fd1419dee3e23ed3746f68c"><code>8464474</code></a> gojs: adds support for uid and gid (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1245">#1245</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/e17a85146a78043e8f2562bc5026306e5f80ea12"><code>e17a851</code></a> Holds wasm.Code as values on wasm.Module (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1243">#1243</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/12e80b4bc5c0b6fe362d189f781bcf7f25e13fd5"><code>12e80b4</code></a> cli: removes experimental-workdir-inherit flag (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1242">#1242</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/350e81e632f9e70f4f21eb3fa2da9bf8c5e5c26e"><code>350e81e</code></a> Holds function types as values, not ptrs in wasm.Module (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1227">#1227</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/aba4ede088f07b1b3361b88c53478610555e5a2a"><code>aba4ede</code></a> Removes usage of host functions with Wasm optocdes (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1241">#1241</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/f24a3f49a405c237d9b0d3cc4a02de76978e121c"><code>f24a3f4</code></a> gojs: refactors out gojs.Config type (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1240">#1240</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/00c53d19a2bca995a53648fdb7301943f90d009b"><code>00c53d1</code></a> fix: poll_oneoff expected layout EventTypeFdRead, EventTypeFdWrite (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1239">#1239</a>)</li>
   <li><a href="https://github.com/tetratelabs/wazero/commit/ced301183757b50682fc11bc6a5b6801407b293e"><code>ced3011</code></a> cli: exposes all hostlogging scope (<a href="https://redirect.github.com/tetratelabs/wazero/issues/1238">#1238</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/tetratelabs/wazero/compare/v1.0.0-rc.1...v1.0.0-rc.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/tetratelabs/wazero&package-manager=go_modules&previous-version=1.0.0-rc.1&new-version=1.0.0-rc.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 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: github-unsubscribe@beam.apache.org

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


[GitHub] [beam] dependabot[bot] commented on pull request #25858: Bump github.com/tetratelabs/wazero from 1.0.0-rc.1 to 1.0.0-rc.2 in /sdks

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

   Superseded by #25987.


-- 
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: github-unsubscribe@beam.apache.org

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


[GitHub] [beam] github-actions[bot] commented on pull request #25858: Bump github.com/tetratelabs/wazero from 1.0.0-rc.1 to 1.0.0-rc.2 in /sdks

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #25858:
URL: https://github.com/apache/beam/pull/25858#issuecomment-1471347058

   Checks are failing. Will not request review until checks are succeeding. If you'd like to override that behavior, comment `assign set of reviewers`


-- 
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: github-unsubscribe@beam.apache.org

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


[GitHub] [beam] dependabot[bot] closed pull request #25858: Bump github.com/tetratelabs/wazero from 1.0.0-rc.1 to 1.0.0-rc.2 in /sdks

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #25858: Bump github.com/tetratelabs/wazero from 1.0.0-rc.1 to 1.0.0-rc.2 in /sdks
URL: https://github.com/apache/beam/pull/25858


-- 
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: github-unsubscribe@beam.apache.org

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