eye-gu opened a new pull request, #6356: URL: https://github.com/apache/shenyu/pull/6356
<!-- Describe your PR here; e.g. Fixes #issueNo --> fix #6353 [wasmtime-java](https://github.com/kawamuray/wasmtime-java) is no longer actively maintained — no recent releases or commits. As a native-library-dependent runtime, it also introduces platform coupling and deployment friction. This PR replaces it with [Chicory](https://github.com/dylibso/chicory), an **actively maintained** pure-Java WASM runtime (Apache 2.0), eliminating both the maintenance risk and native dependencies. - **Runtime compilation**: Chicory's `compiler` module uses `MachineFactoryCompiler` to translate WASM bytecode into JVM bytecode at module load time, significantly improving execution performance over interpreter-only mode. Falls back gracefully to the interpreter if compilation is unavailable. - **TinyGo support**: new `shenyu/wasmabi` Go package provides `GetArgs()` / `PutResult()` ABI helpers, enabling Go-based WASM plugin development alongside existing Rust support. All test suites now verify both Go and Rust `.wasm` outputs. <!-- Thank you for proposing a pull request. This template will guide you through the essential steps necessary for a pull request. --> Make sure that: - [x] You have read the [contribution guidelines](https://shenyu.apache.org/community/contributor-guide). - [x] You submit test cases (unit or integration tests) that back your changes. - [x] Your local test passed `./mvnw clean install -Dmaven.javadoc.skip=true`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
