Update remote bindings to remove experimental#25064
Conversation
|
This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:
|
|
@penalosa @dario-piotrowicz should |
|
Preview URL: https://adb392eb.preview.developers.cloudflare.com Files with changes (up to 15)
|
I am in favor for removing the |
| remoteProxySessionDetails = await experimental_maybeStartOrUpdateRemoteProxySession({ | ||
| bindings: { | ||
| MY_KV: { | ||
| type: 'kv_namespace', | ||
| id: 'kv-id', | ||
| remote: true, | ||
| } | ||
| } | ||
| }, | ||
| remoteProxySessionDetails | ||
| ); |
There was a problem hiding this comment.
I bet the broken indentation is not intentional 🙂
There was a problem hiding this comment.
should be fixed now 👍
Co-authored-by: Arunesh <hello@arunesh.me>
updated :) |
|
|
||
| - When you run a remote development session using the `--remote` flag, a limit of 50 [routes](/workers/configuration/routing/routes/) per zone is enforced. Learn more in[ Workers platform limits](/workers/platform/limits/#number-of-routes-per-zone-when-using-wrangler-dev---remote). | ||
|
|
||
| ``` |
| remoteProxySessionDetails = await maybeStartOrUpdateRemoteProxySession({ | ||
| bindings: { | ||
| MY_KV: { | ||
| type: 'kv_namespace', | ||
| id: 'kv-id', | ||
| remote: true, | ||
| } | ||
| } | ||
| }, | ||
| remoteProxySessionDetails | ||
| ); |
Summary
With cloudflare/workers-sdk#10604, remote bindings are no longer experimental. This updates documentation of remote bindings to reflect that.