Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Proxy SDK support table #340

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions website/docs/advanced/proxy/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,31 @@ var configCatClient = configcat.getClient(
);
```

### Supported SDK Versions

The following SDK versions are supported by the Proxy's CDN endpoint:

| SDK | Version |
| ------ | ----------------------------------------------------- |
| .NET | [`<=v8.2.0`](https://github.com/configcat/.net-sdk/releases/tag/v8.2.0) ([`>=v9.0.0`](https://github.com/configcat/.net-sdk/releases/tag/v9.0.0) is not supported yet.) |
| JS | [`<=v8.1.1`](https://github.com/configcat/js-sdk/releases/tag/v8.1.1) ([`>=v9.0.0`](https://github.com/configcat/js-sdk/releases/tag/v9.0.0) is not supported yet.) |
| JS SSR | [`<=v7.1.1`](https://github.com/configcat/js-ssr-sdk/releases/tag/v7.1.1) ([`>=v8.0.0`](https://github.com/configcat/js-ssr-sdk/releases/tag/v8.0.0) is not supported yet.) |
| React | [`<=v3.1.1`](https://github.com/configcat/react-sdk/releases/tag/v3.1.1) ([`>=v4.0.0`](https://github.com/configcat/react-sdk/releases/tag/v4.0.0) is not supported yet.) |
| Node | [`<=v10.1.1`](https://github.com/configcat/node-sdk/releases/tag/v10.1.1) ([`>=v11.0.0`](https://github.com/configcat/node-sdk/releases/tag/v11.0.0) is not supported yet.) |
| Python | [`<=v9.0.0`](https://github.com/configcat/python-sdk/releases/tag/v9.0.0) ([`>=v10.0.0`](https://github.com/configcat/python-sdk/releases/tag/v10.0.0) is not supported yet.) |
| C++ | [`<=v3.1.1`](https://github.com/configcat/cpp-sdk/releases/tag/v3.1.1) |
| Dart | [`<=v3.0.0`](https://github.com/configcat/dart-sdk/releases/tag/3.0.0) |
| Elixir | [`<=v3.0.0`](https://github.com/configcat/elixir-sdk/releases/tag/v3.0.0) |
| Go | [`<=v8.0.1`](https://github.com/configcat/go-sdk/releases/tag/v8.0.1) |
| Java | [`<=v8.4.0`](https://github.com/configcat/java-sdk/releases/tag/v8.4.0) |
| Android | [`<=v9.1.1`](https://github.com/configcat/android-sdk/releases/tag/v9.1.1) |
| Kotlin | [`<=2.0.0`](https://github.com/configcat/kotlin-sdk/releases/tag/2.0.0) |
| PHP | [`<=v8.1.0`](https://github.com/configcat/php-sdk/releases/tag/v8.1.0) |
| Ruby | [`<=v7.0.0`](https://github.com/configcat/ruby-sdk/releases/tag/v7.0.0) |
| Swift | [`<=v10.0.0`](https://github.com/configcat/swift-sdk/releases/tag/v10.0.0) |

We are continously working on the support of all new SDK versions.

### Available Options

The following CDN Proxy related options are available:
Expand Down