<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in SUMMARY.md</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>63f094df - docs: Add an example application that embeds Wasmtime in order to use plugins (#11848)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#63f094df</link>
        <description>docs: Add an example application that embeds Wasmtime in order to use plugins (#11848)* docs: Add an example application that embeds Wasmtime in order to use plugins* Add exact version to clap dependency* Re-generate Cargo.lock* Address review feedback* Refactor args structs* Address further review comments* Exclude calculator example from `cargo doc` in CI

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Wed, 15 Oct 2025 15:29:50 +0000</pubDate>
        <dc:creator>Tim Chevalier &lt;tjc@igalia.com&gt;</dc:creator>
    </item>
<item>
        <title>97e0b7db - Reorganize example documentation (#11757)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#97e0b7db</link>
        <description>Reorganize example documentation (#11757)* Reorganize example documentationThis commit reorganizes example documentation in our onlinedocumentation. The main changes here are:* Chapter-per-language is now removed in favor of tabs-in-a-page for  avoiding having the book be so large. Tabs are made with [mdbook-langtabs].* Language-specific pages are all consolidated into a single page.* Language-specific documentation now only mentions where to find docs  instead of trying to document an intro for each language here.* &quot;Further examples&quot; was folded into the main API section, meaning we  just have one chapter of a lot of examples.The main goal is to make the book less overwhelming from an exampleperspective and ideally make it a bit easier to discover things. Thelangtabs plugin is nice but not perfect, e.g. it doesn&apos;t support`#`-anchors nor remembers which language you were looking at. Overallthough I feel this is still better than before.[mdbook-langtabs]: https://github.com/nx10/mdbook-langtabs* Fix typos* Remove testing of mdbook from CI

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Mon, 29 Sep 2025 19:34:35 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>eaa01d7b - [docs] Add C++ chapter and missing examples (#11569)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#eaa01d7b</link>
        <description>[docs] Add C++ chapter and missing examples (#11569)* [docs] Add C++ chapter and missing examplesThis adds a chapter for C++ embedding. The chapter intro is rudimentary, but there are a bunch more examples now: I added C++ ports for everything that already had both a Rust and a C version available, matching the Rust version&apos;s behavior where applicable.* [example] Fix paths in `examples/wasip1/main.c`* [docs] Add entries for additional Rust and C embedding examplesThese examples already existed, but didn&apos;t have entries in the docs.It&apos;ll probably make sense to restructure all of this at some point and move the examples into language-specific folders.* [docs] Remove references to Conan packages from README.mdThese packages haven&apos;t been updated since Wasmtime 18, so we shouldn&apos;t link to them for now.* Format cpp files* Format even more cpp files* Fix some warnings in C++ headers* Simplify threads.cc example* Update docs/examples-c-serialize.mdCo-authored-by: Nick Fitzgerald &lt;fitzgen@gmail.com&gt;* [example] Don&apos;t try, do.* [docs] Restore CMake link in README* [docs] Improve examples/README.md* [docs] Address review feedback---------Co-authored-by: Alex Crichton &lt;alex@alexcrichton.com&gt;Co-authored-by: Nick Fitzgerald &lt;fitzgen@gmail.com&gt;

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 02 Sep 2025 16:34:49 +0000</pubDate>
        <dc:creator>Till Schneidereit &lt;till@tillschneidereit.net&gt;</dc:creator>
    </item>
<item>
        <title>69fecf4e - Add contributor docs about our RFC process (#11349)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#69fecf4e</link>
        <description>Add contributor docs about our RFC process (#11349)We have some off-hand links to particular RFCs in our docs, but did not have anygeneral information about our usage of the RFC process. I&apos;ve added thatinformation in this commit.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Wed, 30 Jul 2025 18:25:38 +0000</pubDate>
        <dc:creator>Nick Fitzgerald &lt;fitzgen@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>54988feb - Add a bunch of cookbook-style &quot;how do I do X?&quot; examples to the book (#10630)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#54988feb</link>
        <description>Add a bunch of cookbook-style &quot;how do I do X?&quot; examples to the book (#10630)This tries to cover things that we repeatedly get questions about on Zulip.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 22 Apr 2025 00:43:30 +0000</pubDate>
        <dc:creator>Nick Fitzgerald &lt;fitzgen@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7ebb78a8 - Add a style guideline for conditional compilation (#10144)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#7ebb78a8</link>
        <description>Add a style guideline for conditional compilation (#10144)* Add a style guideline for conditional compilationI&apos;ve been doing a fair amount of work recently that&apos;s touched on`#[cfg]` in many ways throughout Wasmtime. I&apos;ve personally got opinionsabout how to structure everything as well, and these opinions are notalways obvious to others or discerned from just reading snippets. Toassist with this I figured it would be nice to have a style guidelinefor Wasmtime&apos;s conditionally compiled code explaining at least at a highlevel what&apos;s going on and some rough basic principles.I&apos;ve attempted to give this a stab and have added a page to thecontributing documentation about the style guidelines for conditionalcompilation. I&apos;m sure I&apos;ve forgotten something here but my hope is thatwe can evolve this over time.* Fix typo* Fix code examples

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Wed, 29 Jan 2025 15:54:56 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>8a969897 - Add book-level documentation for Pulley (#10095)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#8a969897</link>
        <description>Add book-level documentation for Pulley (#10095)* Add book-level documentation for PulleyThis commit adds some longer form documentation about Pulley inWasmtime&apos;s online documentation book. This covers topics such as:* What is Pulley?* How to enable Pulley?* What happens when using Pulley.* Advantages/disadvantages of Pulley.* High-level design of Pulley.* Decompiling `*.cwasm` Pulley opcodes.* Profiling Pulley.* Update docs/examples-pulley.mdCo-authored-by: Joel Dice &lt;joel.dice@fermyon.com&gt;* Don&apos;t test examples---------Co-authored-by: Joel Dice &lt;joel.dice@fermyon.com&gt;

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 23 Jan 2025 23:08:42 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>a8998e7c - Update docs/stabilization of wasm proposals (#9434)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#a8998e7c</link>
        <description>Update docs/stabilization of wasm proposals (#9434)* Update docs/stabilization of wasm proposalsThis commit updates our documentation and documented status of variousWebAssembly proposals. The goal of this commit it to explicitly list allrequirements for each WebAssembly proposal in a way such that enabling afeature requires actively checking this table and performing effort tofill in. This is intended to mitigate GHSA-q8hx-mm92-4wvg where it wasfound that we were accidentally not fuzzing tail calls but had enabledit by default.This shuffles around some documentation, modernizes a bit, and notablytries to list out a green checkbox or red X for the status of variousproposals. Notes for &quot;holes&quot; in the &quot;on by default matrix&quot; are alsoadded.* Add a link to the GC tracking issue* Tweak the list of supported targetsAndroid is listed in Tier 3 now

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 10 Oct 2024 20:19:53 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>866ede95 - Document a Wasmtime-specific vulnerability runbook (#9433)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#866ede95</link>
        <description>Document a Wasmtime-specific vulnerability runbook (#9433)This commit codifies the process [documentedhere](https://github.com/bytecodealliance/rfcs/blob/main/accepted/vulnerability-response-runbook.md)in the Wasmtime repository as it relates to Wasmtime itself. There&apos;salso a few minor changes from recent advisories such as:* We&apos;ll no longer use the publish-the-changes-from-the-advisory feature  from GitHub. That basically just doesn&apos;t work any more.* PRs will instead be manually created to have CI run on them to weed  out any issues.* Details about preparing the `main` branch ahead of the release are  interleaved with the rest of the runbook.The intention is to supplement the official runbook withWasmtime-specific information and flesh out a few minor steps we&apos;refollowing that are &quot;extra&quot; here too.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 10 Oct 2024 16:48:43 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>310e6677 - Reorder book-based documentation (#8130)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#310e6677</link>
        <description>Reorder book-based documentation (#8130)On a high level, this is what this PR changed:1. Move the CLI chapter before the API chapter.    I think this makes sense because the CLI is more high-level.    The same change was proposed in    https://github.com/bytecodealliance/wasmtime/pull/7987.1. Move some Rust and C examples from the &quot;Examples&quot; chapter into the API chapter.1. Remove the original main C and Rust chapter introduction files.    They contained mostly outdated or duplicate information.1. Rename the &quot;Examples&quot; chapter to &quot;Further Examples&quot;.    (For lack of a better name.)1. Rename &quot;Embedding&quot; to &quot;API&quot; at some places since API is a more generally known term.    The term &quot;embedding&quot; is also slightly more confusing, I think,    because the term nowadays also used a lot in LLM-related communication.1. Read through the entire document and fix some outdated links and information.1. Fix a missing subheading for Elixir (it was mentioned on the lang page, but not in the menu).

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 14 Mar 2024 17:41:27 +0000</pubDate>
        <dc:creator>Rik Huijzer &lt;github@huijzer.xyz&gt;</dc:creator>
    </item>
<item>
        <title>b762a912 - Add &quot;what is a security vulnerability?&quot; page to docs (#7963)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#b762a912</link>
        <description>Add &quot;what is a security vulnerability?&quot; page to docs (#7963)Taken from the recently merged RFC:https://github.com/bytecodealliance/rfcs/blob/main/accepted/what-is-considered-a-security-bug.md

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 20 Feb 2024 15:57:30 +0000</pubDate>
        <dc:creator>Nick Fitzgerald &lt;fitzgen@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>aafe0a6f - docs: Add a page about test case reduction (#7780)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#aafe0a6f</link>
        <description>docs: Add a page about test case reduction (#7780)

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 16 Jan 2024 19:35:05 +0000</pubDate>
        <dc:creator>Nick Fitzgerald &lt;fitzgen@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d86afc02 - Gate many CLI/Wasmtime features behind Cargo features (#7282)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#d86afc02</link>
        <description>Gate many CLI/Wasmtime features behind Cargo features (#7282)* Move `wasmtime explore` behind a Cargo featureEnable this Cargo feature by default, but enable building the CLIwithout the `explore` subcommand.* Move the `wast` subcommand behind a Cargo feature* Move support for `wat` behind a CLI featureThis was already conditional in crates such as `wasmtime` and this makesit an optional dependency of the CLI as well.* Move CLI cache support behind a Cargo featureAdditionally refactor `wasmtime-cli-flags` to not unconditionally pullin caching support by removing its `default` feature and appropriatelyenabling it from the CLI.* Move `rayon` behind an optional feature* Move `http-body-util` dependency behind `serve` feature* Add a Cargo feature for compiling out log statementsThis sets the static features of `log` and `tracing` to staticallyremove all log statements from the binary to cut down on binary size.* Move logging support behind a Cargo featureEnables statically removing logging support in addition to the previouscompiling out log statements themselves.* Move demangling support behind a Cargo feature* Enable building the CLI without craneliftCompile out the `compile` subcommand for example.* Gate all profiling support behind one feature flagThis commit moves vtune/jitdump support behind a single `profiling`feature flag that additionally includes the guest profiler dependenciesnow too.* Move support for core dumps behind a feature flag* Move addr2line behind a feature* Fix rebase* Document cargo features and a minimal build* Tidy up the source a bit* Rename compile-out-logging* Document disabling logging* Note the host architecture as well* Fix tests* Fix tests* Mention debuginfo stripping* Fix CI configuration for checking features* Fix book tests* Update lock file after rebase* Enable coredump feature by default

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 19 Oct 2023 18:01:35 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>5c1557d2 - Add docs and example for debugging with core dumps (#7087)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#5c1557d2</link>
        <description>Add docs and example for debugging with core dumps (#7087)* Add docs for debugging with core dumps* Fix reference to old style CLI flag* Add `no_run` to example that is only there to trap

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 26 Sep 2023 17:55:45 +0000</pubDate>
        <dc:creator>Nick Fitzgerald &lt;fitzgen@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0ee66411 - Bring some of Wasmtime&apos;s documentation more up-to-date (#6994)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#0ee66411</link>
        <description>Bring some of Wasmtime&apos;s documentation more up-to-date (#6994)* Remove tutorial/wasm-writing documentationThis commit removes the tutorial and &quot;Writing WebAssembly&quot; documentationsections from Wasmtime&apos;s documentation. These sections are quite datedat this point (they still recommend `cargo wasi`!) and haven&apos;t beenupdated much since their inception, especially in the arena ofcomponents. Today it seems best to leave this sort of documentation to[other resources] which are more tailored towards documentation ofwriting wasm.[other resources]: https://component-model.bytecodealliance.org/* Remove markdown example from docsLike the previous commit this is quite dated and recommendseffectively-deprecated tooling and doesn&apos;t take into account components.* Update our intro docs a bit* Link security blog post from docs* Fold docs of wasm proposals into tier docsThis was already a bit duplicated so consolidate into one location.Additionally add some proposals that weren&apos;t previously documented andmove some around based on their implementation status.* Document unsupported featuresIn an effort to head off questions about platform support I figure itmight be a good idea to start documenting what&apos;s not supported at thistime. This is intended to mirror the current state, not future, ofWasmtime. In other words this should answer the question of &quot;DoesWasmtime support X?&quot; as opposed to &quot;Does Wasmtime want to support X?&quot;since we want to eventually support all of these features in the limit.* Fold WASI docs into tier docsSimilar to the previous commit but for WASI proposals.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Mon, 11 Sep 2023 16:56:12 +0000</pubDate>
        <dc:creator>Alex Crichton &lt;alex@alexcrichton.com&gt;</dc:creator>
    </item>
<item>
        <title>4799ea11 - wmemcheck: update docs. (#6856)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#4799ea11</link>
        <description>wmemcheck: update docs. (#6856)* wmemcheck: update docs.This PR expands the documentation for the Wasm memchecker (`wmemcheck`)feature significantly, and also links it from the top-leveldocumentation hierarchy.* Add syntax/language annotations to quotation sections to keep mdbook happy.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Thu, 17 Aug 2023 17:39:03 +0000</pubDate>
        <dc:creator>Chris Fallin &lt;chris@cfallin.org&gt;</dc:creator>
    </item>
<item>
        <title>a90f625f - Add docs on how to profile with samply and perfmaps (#6720)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#a90f625f</link>
        <description>Add docs on how to profile with samply and perfmaps (#6720)* Add docs on how to profile with samply and perfmaps* add summary entry for samply and specify building from source

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Tue, 18 Jul 2023 21:10:37 +0000</pubDate>
        <dc:creator>Marco Concetto Rudilosso &lt;marco.rudilosso@shopify.com&gt;</dc:creator>
    </item>
<item>
        <title>05a02ef3 - Add `cli-logging.md` to summary (#6688)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#05a02ef3</link>
        <description>Add `cli-logging.md` to summary (#6688)This should fix the broken link reported in #6679; closes #6679.

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Wed, 05 Jul 2023 15:36:34 +0000</pubDate>
        <dc:creator>Andrew Brown &lt;andrew.brown@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1b99b1fa - Basic guest-profiler documentation for the book (#6393)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#1b99b1fa</link>
        <description>Basic guest-profiler documentation for the book (#6393)* Basic guest-profiler documentation for the book* Review comments

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Wed, 17 May 2023 22:25:02 +0000</pubDate>
        <dc:creator>Jamey Sharp &lt;jsharp@fastly.com&gt;</dc:creator>
    </item>
<item>
        <title>6af4303a - Document our PR reviewer auto-assignment expectations (#6346)</title>
        <link>http://172.16.0.5:8080/history/wasmtime-44.0.1/docs/SUMMARY.md#6af4303a</link>
        <description>Document our PR reviewer auto-assignment expectations (#6346)

            List of files:
            /wasmtime-44.0.1/docs/SUMMARY.md</description>
        <pubDate>Fri, 05 May 2023 14:41:54 +0000</pubDate>
        <dc:creator>Jamey Sharp &lt;jsharp@fastly.com&gt;</dc:creator>
    </item>
</channel>
</rss>
