mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* feat(plugin): add `proxywasm` plugin The `proxywasm` plugin is a WASM Filter following the ProxyWasm ABI Specification using the proxywasm go sdk This allows extensibility with any reverse proxy who implements the ProxyWasm ABI Specification. The current WASM Filter was successfully tested with APISIX, Envoy, Nginx with ngx_wasm_module from Kong and Istio. Fixes #145
25 lines
886 B
JavaScript
25 lines
886 B
JavaScript
module.exports = {
|
|
"branches": [
|
|
{ "name": "main" },
|
|
{ "name": "beta", "channel": "beta", "prerelease": "beta" },
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
["@semantic-release/exec", {
|
|
"publishCmd": "make VERSION=${nextRelease.version} release -j 3 && make VERSION=${nextRelease.version} proxywasm"
|
|
}],
|
|
["@semantic-release/github", {
|
|
"assets": [
|
|
"sablier*"
|
|
]
|
|
}],
|
|
["@semantic-release/exec", {
|
|
"prepareCmd": "make LAST=${lastRelease.version} NEXT=${nextRelease.version} update-doc-version update-doc-version-middleware"
|
|
}],
|
|
["@semantic-release/git", {
|
|
"assets": [["**/*.{md,yml}", "!node_modules/**/*.{md,yml}"]],
|
|
"message": "docs(release): update doc version from ${lastRelease.version} to ${nextRelease.version} [skip ci]"
|
|
}]
|
|
]
|
|
} |