bump dependencies (xmldom, dompurify, ajv, es-toolkit, swagger-parser, sentry/electron, rjsf, jose) - #10444
Open
kwburns-kong wants to merge 11 commits into
Open
bump dependencies (xmldom, dompurify, ajv, es-toolkit, swagger-parser, sentry/electron, rjsf, jose)#10444kwburns-kong wants to merge 11 commits into
kwburns-kong wants to merge 11 commits into
Conversation
0.9.10 has a known parser vulnerability; 0.9.12 is the latest patched release.
3.4.13 has a known sanitizer bypass; 3.4.14 is the patched release.
8.18.0 has a known prototype-pollution issue in schema compilation; 8.20.0 is the patched release.
1.45.1 has a known ReDoS in one of its string utilities; 1.51.0 is the patched release.
Pulls in json-schema-ref-parser 14.0.1, resolving a known vulnerability in the $ref-resolution path used when validating imported OpenAPI/Swagger documents. Only SwaggerParser.validate() is used at the two call sites and its signature is unchanged across this range.
Pulls in @sentry/node 10.70.0, resolving vulnerabilities in its bundled @opentelemetry/core and cjs-module-lexer instrumentation dependencies. Sentry.init options, captureException, browserTracingIntegration, and getCurrentScope().setUser() are all used unchanged across this range.
3.25.76 has a known validation-bypass fixed only in the v4 line. The app's own schema code already imports from the zod/v4 subpath, so no source changes are needed for the bump itself.
Moves off the 6.0.0 beta onto the stable release line, which pulls in markdown-to-jsx 9.x and resolves a known vulnerability in the pinned 7.x line. The withTheme/FormProps/RJSFSchema/UiSchema/validateForm API surface used by this app's JSON-schema forms is unchanged across this range.
6.2.2 has a known vulnerability; 6.2.10 is already within the existing allowed range (^6.1.3) declared by @modelcontextprotocol/sdk, so no manifest change is needed, just an up-to-date resolution.
WrapIfAdditionalTemplate's onKeyChange/onDropPropertyClick became onKeyRenameBlur/onRemoveProperty, ObjectFieldTemplate's idSchema/onAddClick became fieldPathId/onAddProperty, and ArrayFieldTemplate no longer receives raw item pieces - items are now pre-rendered elements, so the per-item border/delete-button layout moved into a new ArrayFieldItemTemplate.
This reverts commit 54f1d5aa4c81ff64bf4cb9f9d478440b7311e2cd. The v3 to v4 bump breaks real-world collection validation: import-v5-parser's discriminated/recursive union schemas reject valid v5 collection files under the released zod@4.4.0 (unlike the bundled zod/v4 preview subpath used during development), failing import, export, and CLI collection-run end-to-end tests. Deferring this upgrade separately rather than shipping a functional regression.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
SwaggerParser.validate()is used and its signature is unchanged.packages/insomnia/src/ui/components/rjsf/theme.tsx) for the renamed/restructured template props that came with it.zod@3.25.75 to zod@4.4.0 was attempted but reverted: the v4 release breaks real collection import/export validation (
import-v5-parser.ts's discriminated/recursive union schemas reject valid v5 files), unlike the bundledzod/v4preview subpath used during development. Deferring that upgrade separately.Test plan
tsc --noEmitclean onpackages/insomniainsomnia-insobundle e2e suite (npm run test:bundle) passes for all non-environment-specific cases