chore(deps): upgrade safe patch/minor dependencies#66
Merged
Conversation
Bumps 28 packages across root and example to the latest non-breaking versions. Covers: - @react-native/* and react-native 0.85.0 -> 0.85.2 (patch) - OpenTelemetry packages 0.213.x -> 0.215.x and 2.6.x -> 2.7.x - jest 30.2 -> 30.3, turbo 2.8 -> 2.9, bob 0.40 -> 0.41 - release-it 19 -> 20 (with @release-it/conventional-changelog 10 -> 11) - Assorted eslint/commitlint/prettier/lefthook patch bumps Verified with tsc, eslint, jest (158/158), bob build, and release-it --dry-run. react/react-test-renderer held at 19.2.3 to match the react-native-renderer that RN 0.85.2 bundles. eslint 10 blocked by @react-native/eslint-config peer cap; typescript 6 blocked by a new TS2882 error on the react-native-get-random-values side-effect import.
Contributor
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
RhysAtBolt
approved these changes
Apr 24, 2026
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.
Description
Bulk upgrade of 28 npm packages to the latest non-breaking versions across the SDK root and the example app. Covers React Native
0.85.0 → 0.85.2(and every@react-native/*sibling), all seven@opentelemetry/*packages in the monorepo (0.213.x → 0.215.xand2.6.x → 2.7.x, kept in sync),jest 30.2 → 30.3,turbo 2.8 → 2.9,react-native-builder-bob 0.40 → 0.41,release-it 19 → 20(with@release-it/conventional-changelog 10 → 11, required for release-it 20), and assorted patch bumps oneslint,commitlint,prettier,lefthook, andreact-native-webview.src/telemetry/sdkVersion.tsandexample/ios/Podfile.lockcome along becauseyarn prepare/ pod resolution regenerated them for the new RN version.Deliberately held back:
react/react-test-rendererstay at19.2.3(RN 0.85.2's bundledreact-native-rendereris 19.2.3, and any drift trips the runtime "Incompatible React versions" error);eslint/@eslint/jsstay at^9(@react-native/eslint-config@0.85.2pins^8 || ^9);typescriptstays at^5.9.3(TS 6 introducesTS2882on thereact-native-get-random-valuesside-effect import).Testing
Verified locally with the full CI-equivalent pipeline:
yarn install— resolves cleanly, only pre-existing peer warnings (@testing-library/react-hooksis archived and over-constrains React).tsc --noEmit— clean.eslint "**/*.{js,ts,tsx}"— clean.jest— 158/158 tests passing across all 16 suites (ApplePay,ApplePayWebView,GoogleWallet, bridge, tokenizer client, telemetry, etc.).bob build— produceslib/moduleandlib/typescriptidentically to the previous build.release-it --dry-run --ci— dry-run works end-to-end under release-it 20 + conventional-changelog 11.Runtime smoke-test on Android emulator is still advised after Metro restart (
yarn start --reset-cache) since RN bundles regenerate; no user-facing code paths were touched.Security Review
Important
A security review is required for every PR in this repository to comply with PCI requirements.
Security Impact Summary
No source code was modified. The only non-
package.jsonedits are (a)src/telemetry/sdkVersion.ts, auto-generated to0.9.0byscripts/update-sdk-version.jsduringyarn prepare, and (b)example/ios/Podfile.lock, regenerated by CocoaPods for the RN 0.85.2 patch bump. No changes to tokenizer flows, Apple Pay / Google Pay handlers, bridge message routing, PCI-scoped credit-card entry, or any auth/authorization path. All upgrades are patch or minor SemVer bumps within the same major; release notes for RN 0.85.2 and OTel 0.215/2.7 contain no security-relevant deprecations that affect our usage. The tighter@react-native-community/cli20.1.3 patch additionally rolls in upstream security fixes for the dev server (not shipped to production).yarn.lockhas been regenerated from the registry and checked in.