@restatedev/restatectl 1.7.8 → 1.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ The basic primitives Restate offers to simplify application development are the
|
|
|
100
100
|
* **Durable Promises and Timers**: Register Promises/Futures and timers in Restate to make them resilient to failures (e.g. sleep, webhooks, timers). Restate can recover them across failures, processes, and time.
|
|
101
101
|
* **Consistent State**: Implement [stateful entities](https://docs.restate.dev/concepts/services) with isolated K/V state per entity. Restate persists the K/V state updates together with the execution progress to ensure consistent state. Restate attaches the K/V state to the request on invocation, and writes it back upon completion. This is particularly efficient for FaaS deployments (stateful serverless, yay!).
|
|
102
102
|
* **Suspending User Code**: long-running code suspends when awaiting on a Promise/Future and resumes when that promise is resolved. This is particularly useful in combination with serverless deployments.
|
|
103
|
-
* **Observability & Introspection**: Restate includes a UI and CLI to inspect the [state of your application](https://docs.restate.dev/
|
|
103
|
+
* **Observability & Introspection**: Restate includes a UI and CLI to inspect the [state of your application](https://docs.restate.dev/services/introspection) across services and invocations. Restate automatically generates Open Telemetry traces for the interactions between handlers.
|
|
104
104
|
|
|
105
105
|
## Contributing
|
|
106
106
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restatedev/restatectl",
|
|
3
3
|
"description": "Restate administration tools",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.9",
|
|
5
5
|
"bin": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"typescript": "^5.9.2"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@restatedev/restatectl-linux-x64": "1.7.
|
|
39
|
-
"@restatedev/restatectl-linux-arm64": "1.7.
|
|
40
|
-
"@restatedev/restatectl-darwin-x64": "1.7.
|
|
41
|
-
"@restatedev/restatectl-darwin-arm64": "1.7.
|
|
38
|
+
"@restatedev/restatectl-linux-x64": "1.7.9",
|
|
39
|
+
"@restatedev/restatectl-linux-arm64": "1.7.9",
|
|
40
|
+
"@restatedev/restatectl-darwin-x64": "1.7.9",
|
|
41
|
+
"@restatedev/restatectl-darwin-arm64": "1.7.9"
|
|
42
42
|
}
|
|
43
43
|
}
|