Skip to content

Commit

Permalink
chore(deps): bump Extism.runtime.all from 1.9.0 to 1.9.1 (#117)
Browse files Browse the repository at this point in the history
Bumps [Extism.runtime.all](https://github.com/extism/extism) from 1.9.0
to 1.9.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/extism/extism/releases">Extism.runtime.all's
releases</a>.</em></p>
<blockquote>
<h2>v1.9.1</h2>
<h2>What's Changed</h2>
<ul>
<li>feat: add overview on generating bindings by <a
href="https://github.com/nilslice"><code>@​nilslice</code></a> in <a
href="https://redirect.github.com/extism/extism/pull/789">extism/extism#789</a></li>
<li>chore(deps): Bump dawidd6/action-download-artifact from 2 to 6 in
/.github/workflows by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/extism/extism/pull/792">extism/extism#792</a></li>
<li>cleanup: return better errors for wasi command modules by <a
href="https://github.com/zshipko"><code>@​zshipko</code></a> in <a
href="https://redirect.github.com/extism/extism/pull/793">extism/extism#793</a></li>
<li>fix: remove unwrap() from extism_compiled_plugin_new by <a
href="https://github.com/chrisdickinson"><code>@​chrisdickinson</code></a>
in <a
href="https://redirect.github.com/extism/extism/pull/794">extism/extism#794</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/extism/extism/compare/v1.9.0...v1.9.1">https://github.com/extism/extism/compare/v1.9.0...v1.9.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/extism/extism/commit/4db57de98e705ea3759ad07d56dc6af054610b48"><code>4db57de</code></a>
fix: remove unwrap() from extism_compiled_plugin_new</li>
<li><a
href="https://github.com/extism/extism/commit/9134635b372753cd94f0ed57f354ba9ffc2348e2"><code>9134635</code></a>
cleanup: return better errors for wasi command modules (<a
href="https://redirect.github.com/extism/extism/issues/793">#793</a>)</li>
<li><a
href="https://github.com/extism/extism/commit/75428f26e22756877dc221d071c0fe316aacd201"><code>75428f2</code></a>
chore(deps): Bump dawidd6/action-download-artifact from 2 to 6 in
/.github/wo...</li>
<li><a
href="https://github.com/extism/extism/commit/7beeee35f1be229c25b154ecf816a5bb09157778"><code>7beeee3</code></a>
feat: add overview on generating bindings (<a
href="https://redirect.github.com/extism/extism/issues/789">#789</a>)</li>
<li>See full diff in <a
href="https://github.com/extism/extism/compare/v1.9.0...v1.9.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Extism.runtime.all&package-manager=nuget&previous-version=1.9.0&new-version=1.9.1)](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 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>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Muhammad Azeez <[email protected]>
dependabot[bot] and mhmd-azeez authored Dec 11, 2024
1 parent 03a6c6e commit 10d415b
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samples/Extism.Sdk.Sample/Extism.Sdk.Sample.csproj
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Extism.runtime.win-x64" Version="1.9.1" />
<PackageReference Include="Extism.runtime.all" Version="1.9.1" />
</ItemGroup>

<ItemGroup>
2 changes: 1 addition & 1 deletion test/Extism.Sdk/BasicTests.cs
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ public void Exit(string code, int expected)
var exception = Should.Throw<ExtismException>(() => plugin.Call("_start", Array.Empty<byte>()));

exception.Message.ShouldContain(expected.ToString());
exception.Message.ShouldContain("WASI exit code");
exception.Message.ShouldContain("error while executing at wasm backtrace");
}

[Fact]
2 changes: 1 addition & 1 deletion test/Extism.Sdk/Extism.Sdk.Tests.csproj
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Extism.runtime.all" Version="1.9.0" />
<PackageReference Include="Extism.runtime.all" Version="1.9.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.9.2" />

0 comments on commit 10d415b

Please sign in to comment.