You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -103,11 +103,11 @@ Paginated collections include `first`, `last`, `next`, and `prev` links containi
103
103
104
104
## Updates
105
105
106
-
Resources that accept partial updates use the `PATCH` verb, and support the [JSON Patch](http://tools.ietf.org/html/rfc6902) format. Some resources also support the [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) format. In addition, some resources support optional comments that can be submitted with updates. Comments appear in outgoing webhooks, the audit log, and other integrations.
106
+
Resources that accept partial updates use the `PATCH` verb, and support the [JSON Patch](https://datatracker.ietf.org/doc/html/rfc6902) format. Some resources also support the [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) format. In addition, some resources support optional comments that can be submitted with updates. Comments appear in outgoing webhooks, the audit log, and other integrations.
107
107
108
108
### Updates via JSON Patch
109
109
110
-
[JSON Patch](http://tools.ietf.org/html/rfc6902) is a way to specify the modifications to perform on a resource. For example, in this feature flag representation:
110
+
[JSON Patch](https://datatracker.ietf.org/doc/html/rfc6902) is a way to specify the modifications to perform on a resource. For example, in this feature flag representation:
111
111
112
112
```json
113
113
{
@@ -139,7 +139,7 @@ Attributes that aren't editable, like a resource's `_links`, have names that sta
139
139
140
140
### Updates via JSON Merge Patch
141
141
142
-
The API also supports the [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) format, as well as the [Update feature flag](/tag/Feature-flags#operation/patchFeatureFlag) resource.
142
+
The API also supports the [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) format, as well as the [Update feature flag](/tag/Feature-flags#operation/patchFeatureFlag) resource.
143
143
144
144
JSON Merge Patch is less expressive than JSON Patch but in many cases, it is simpler to construct a merge patch document. For example, you can change a feature flag's description with the following merge patch document:
145
145
@@ -476,7 +476,7 @@ Add this dependency to your project's POM:
476
476
<dependency>
477
477
<groupId>com.launchdarkly</groupId>
478
478
<artifactId>api-client</artifactId>
479
-
<version>6.0.2</version>
479
+
<version>7.0.0</version>
480
480
<scope>compile</scope>
481
481
</dependency>
482
482
```
@@ -486,7 +486,7 @@ Add this dependency to your project's POM:
0 commit comments