workflow 4.7.0 → 4.8.0
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.
|
@@ -113,6 +113,10 @@ Vercel team ID for API requests. Automatically detected.
|
|
|
113
113
|
|
|
114
114
|
Custom base URL for the Vercel workflow API. Automatically detected.
|
|
115
115
|
|
|
116
|
+
### `WORKFLOW_H2_MULTIPLEX`
|
|
117
|
+
|
|
118
|
+
Enabled by default. Lets concurrent event-log requests share one HTTP/2 connection instead of opening one connection per in-flight request. Set to `0` to send one event request per connection.
|
|
119
|
+
|
|
116
120
|
### Programmatic configuration
|
|
117
121
|
|
|
118
122
|
{/*@skip-typecheck: incomplete code sample*/}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "workflow",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"description": "Workflow SDK - Build durable, resilient, and observable workflows",
|
|
5
5
|
"main": "dist/typescript-plugin.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"ms": "2.1.3",
|
|
60
|
-
"@workflow/astro": "4.0.
|
|
61
|
-
"@workflow/cli": "4.3.
|
|
62
|
-
"@workflow/core": "4.
|
|
63
|
-
"@workflow/errors": "4.2.
|
|
60
|
+
"@workflow/astro": "4.0.15",
|
|
61
|
+
"@workflow/cli": "4.3.4",
|
|
62
|
+
"@workflow/core": "4.8.0",
|
|
63
|
+
"@workflow/errors": "4.2.1",
|
|
64
64
|
"@workflow/typescript-plugin": "4.0.3",
|
|
65
65
|
"@workflow/utils": "4.1.4",
|
|
66
|
-
"@workflow/next": "4.1.
|
|
67
|
-
"@workflow/nest": "4.0.
|
|
68
|
-
"@workflow/nitro": "4.1.
|
|
69
|
-
"@workflow/nuxt": "4.0.
|
|
70
|
-
"@workflow/sveltekit": "4.0.
|
|
71
|
-
"@workflow/rollup": "4.0.
|
|
66
|
+
"@workflow/next": "4.1.4",
|
|
67
|
+
"@workflow/nest": "4.0.16",
|
|
68
|
+
"@workflow/nitro": "4.1.6",
|
|
69
|
+
"@workflow/nuxt": "4.0.16",
|
|
70
|
+
"@workflow/sveltekit": "4.0.15",
|
|
71
|
+
"@workflow/rollup": "4.0.15"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@types/ms": "2.1.0",
|