From be64896e4b3a4f8dfb8671474753b25512fa7d8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Jan 2026 22:16:42 +0000 Subject: [PATCH 1/3] chore(deps): bump fast-xml-parser from 4.5.3 to 5.3.4 Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) from 4.5.3 to 5.3.4. - [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases) - [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md) - [Commits](https://github.com/NaturalIntelligence/fast-xml-parser/commits/v5.3.4) --- updated-dependencies: - dependency-name: fast-xml-parser dependency-version: 5.3.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- packages/app/package.json | 2 +- yarn.lock | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/app/package.json b/packages/app/package.json index 0a814c7c5..102c32b0e 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -90,7 +90,7 @@ "@rnx-kit/tools-react-native": "^2.1.0", "ajv": "^8.0.0", "cliui": "^8.0.0", - "fast-xml-parser": "^4.0.0", + "fast-xml-parser": "^5.3.4", "prompts": "^2.4.0", "semver": "^7.3.5", "uuid": "^11.0.0" diff --git a/yarn.lock b/yarn.lock index 8902099d0..6573b9ac8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8056,6 +8056,17 @@ __metadata: languageName: node linkType: hard +"fast-xml-parser@npm:^5.3.4": + version: 5.3.4 + resolution: "fast-xml-parser@npm:5.3.4" + dependencies: + strnum: "npm:^2.1.0" + bin: + fxparser: src/cli/cli.js + checksum: 10c0/d77866ca860ad185153e12f6ba12274d32026319ad8064e4681342b8a8e1ffad3f1f98daf04d77239fb12eb1d906ee7185fd328deda74529680e8dae0f3e9327 + languageName: node + linkType: hard + "fastest-levenshtein@npm:1.0.16": version: 1.0.16 resolution: "fastest-levenshtein@npm:1.0.16" @@ -12353,7 +12364,7 @@ __metadata: cliui: "npm:^8.0.0" eslint: "npm:^9.12.0" eslint-plugin-wdio: "npm:^9.0.0" - fast-xml-parser: "npm:^4.0.0" + fast-xml-parser: "npm:^5.3.4" js-yaml: "npm:^4.1.0" memfs: "npm:^4.0.0" minimatch: "npm:^9.0.0" From babc27312218192200c8536945523469ce426ab7 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Mon, 2 Feb 2026 12:06:21 +0100 Subject: [PATCH 2/3] fixup! chore(deps): bump fast-xml-parser from 4.5.3 to 5.3.4 --- yarn.lock | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/yarn.lock b/yarn.lock index 6573b9ac8..e6027d6dc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8045,18 +8045,7 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:^5.0.8": - version: 5.2.5 - resolution: "fast-xml-parser@npm:5.2.5" - dependencies: - strnum: "npm:^2.1.0" - bin: - fxparser: src/cli/cli.js - checksum: 10c0/d1057d2e790c327ccfc42b872b91786a4912a152d44f9507bf053f800102dfb07ece3da0a86b33ff6a0caa5a5cad86da3326744f6ae5efb0c6c571d754fe48cd - languageName: node - linkType: hard - -"fast-xml-parser@npm:^5.3.4": +"fast-xml-parser@npm:^5.0.8, fast-xml-parser@npm:^5.3.4": version: 5.3.4 resolution: "fast-xml-parser@npm:5.3.4" dependencies: From 2b3f00ffc3899ad2090cbe0881e9dd7da802fed0 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Mon, 2 Feb 2026 16:11:27 +0100 Subject: [PATCH 3/3] fixup! fixup! chore(deps): bump fast-xml-parser from 4.5.3 to 5.3.4 --- packages/app/scripts/types.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/app/scripts/types.ts b/packages/app/scripts/types.ts index f6a1dd7a1..0ceee097c 100644 --- a/packages/app/scripts/types.ts +++ b/packages/app/scripts/types.ts @@ -1,5 +1,3 @@ -import type { XmlBuilderOptions } from "fast-xml-parser"; - export type JSONValue = | string | number @@ -147,10 +145,12 @@ export type ProjectConfiguration = { resources?: string[]; }; -export type XmlOptions = Pick< - Required, - "attributeNamePrefix" | "ignoreAttributes" | "format" | "indentBy" ->; +export type XmlOptions = { + attributeNamePrefix: string; + ignoreAttributes: boolean; + format: boolean; + indentBy: string; +}; /***************** * parseargs.mjs *