Skip to content

Commit 7289c4a

Browse files
authored
update wasm samples to match GA release (#158)
## Purpose Samples updated to match GA release ## Does this introduce a breaking change? <!-- Mark one with an "x". --> ``` [ ] Yes [x ] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? <!-- Please check the one that applies to this PR using "x". --> ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code <!-- Add steps to run the tests suite and/or manually test --> ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information <!-- Add any other helpful information that may be needed here. -->
1 parent cf7127c commit 7289c4a

File tree

14 files changed

+37
-259
lines changed

14 files changed

+37
-259
lines changed

samples/wasm/ConfigGraph.json

Lines changed: 0 additions & 243 deletions
This file was deleted.

samples/wasm/rust/examples/README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,16 @@ for param in required_params {
150150
These examples can be referenced in graph YAML configurations:
151151

152152
```yaml
153+
metadata:
154+
name: "Simple graph"
155+
description: "A graph that transforms temperature from Fahrenheit to Celsius"
156+
version: "1.0.0"
157+
$schema: "https://www.schemastore.org/aio-wasm-graph-config-1.0.0.json"
158+
vendor: "Microsoft"
159+
153160
moduleRequirements:
154-
apiVersion: "0.2.0"
155-
hostlibVersion: "0.2.0"
161+
apiVersion: "1.1.0"
162+
runtimeVersion: "1.1.0"
156163

157164
operations:
158165
- operationType: "map"

samples/wasm/rust/examples/collection/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "collection"
33
version = "0.0.2"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/enrichment/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "enrichment"
33
version = "0.0.2"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "format"
33
version = "0.0.2"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/humidity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "humidity"
33
version = "0.0.2"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/otel-enrich/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "otel-enrich"
33
version = "0.1.0"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/otel-transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "otel-transform"
33
version = "0.1.0"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/snapshot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snapshot"
33
version = "0.0.1"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

samples/wasm/rust/examples/temperature/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "temperature"
33
version = "0.0.1"
4-
authors = ["TinyKube Devs"]
4+
authors = ["Wasm Graph Devs"]
55
license = "MIT"
66
edition = "2021"
77

0 commit comments

Comments
 (0)