Skip to content

Commit 8a3a698

Browse files
committed
chore: remove support for lenient moshi marshaller
It is dangerous because it can allow dangerous operations in the plugin due to insufficient data that can be interpreted as default state.
1 parent 4cab216 commit 8a3a698

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
### Changed
1010

1111
- URL validation is stricter in the connection screen and URI protocol handler
12-
- the http client has relaxed syntax rules when deserializing JSON responses
1312
- support for verbose logging a sanitized version of the REST API request and responses
1413

1514
## 0.6.0 - 2025-07-25

src/main/kotlin/com/coder/toolbox/sdk/CoderRestClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ open class CoderRestClient(
139139
.addConverterFactory(
140140
LoggingConverterFactory.wrap(
141141
context,
142-
MoshiConverterFactory.create(moshi).asLenient()
142+
MoshiConverterFactory.create(moshi)
143143
)
144144
)
145145
.build().create(CoderV2RestFacade::class.java)

0 commit comments

Comments
 (0)