Skip to content

Commit af638a9

Browse files
authored
Merge pull request #3623 from replicatedhq/laverya/sdk-1100
SDK 1.10.0 release notes and docs
2 parents 9ac171c + 4e27255 commit af638a9

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

docs/partials/replicated-sdk/_dependency-yaml.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
dependencies:
44
- name: replicated
55
repository: oci://registry.replicated.com/library
6-
version: 1.9.0
6+
version: 1.10.0
77
```
88
99
For the latest version information for the Replicated SDK, see the [replicated-sdk repository](https://github.com/replicatedhq/replicated-sdk/releases) in GitHub.

docs/release-notes/rn-replicated-sdk.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ pagination_prev: null
88

99
This topic contains release notes for the [Replicated SDK](/vendor/replicated-sdk-overview). The release notes list new features, improvements, bug fixes, known issues, and breaking changes.
1010

11+
## 1.10.0
12+
13+
Released on October 29, 2025
14+
15+
### Improvements {#improvements-1-10-0}
16+
* Adds support for configuring a proxy for the SDK with [`proxy`](https://github.com/replicatedhq/replicated-sdk/blob/1.10.0/chart/values.yaml#L315). For more information, see [Proxy Configuration](/vendor/replicated-sdk-customizing#proxy).
17+
* Enables the use of `kots.io/v1beta2` licenses.
18+
1119
## 1.9.0
1220

1321
Released on October 16, 2025

docs/vendor/replicated-sdk-customizing.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,29 @@ To enable reporting all images, set the `replicated.reportAllImages` value in yo
572572
replicated:
573573
reportAllImages: true
574574
```
575+
576+
## Proxy Configuration {#proxy}
577+
578+
With the Replicated SDK version 1.10.0 and later, you can configure the SDK to use an HTTPS proxy when fetching license information and reporting metrics.
579+
580+
When enabled, the SDK will use the configured proxy for requests to Replicated APIs, but will not use a proxy for requests to the Kubernetes API. Setting an additional no_proxy is not required.
581+
582+
To use a proxy, set the `replicated.proxy.httpsProxy` or `global.replicated.httpsProxy` value in your Helm chart `values.yaml` file:
583+
584+
```yaml
585+
# Helm chart values.yaml
586+
587+
replicated:
588+
proxy:
589+
httpsProxy: http://proxy.example.com
590+
noProxy: internal.domain.com
591+
```
592+
593+
```yaml
594+
# Helm chart values.yaml
595+
596+
global:
597+
replicated:
598+
httpsProxy: http://proxy.example.com
599+
noProxy: internal.domain.com
600+
```

0 commit comments

Comments
 (0)