fix(deps)(deps): bump the dependencies group across 1 directory with 24 updates - #16
Open
dependabot[bot] wants to merge 454 commits into
Open
fix(deps)(deps): bump the dependencies group across 1 directory with 24 updates#16dependabot[bot] wants to merge 454 commits into
dependabot[bot] wants to merge 454 commits into
Conversation
- Add contracts/src/revenue.rs with full revenue recognition module:
- RevenueRecognitionRule (method + recognition_period)
- Straight-line and usage-based recognition methods
- RevenueSchedule / RevenueScheduleEntry types
- Recognition snapshot and PeriodRevenue analytics types
- generate_revenue_schedule, recognize_revenue, get_deferred_revenue,
get_revenue_schedule, get_revenue_analytics_by_period
- Deduplicating track_merchant_subscription
- 21 Rust tests covering all paths, edge cases, and multi-element arrangements
- Update contracts/src/lib.rs:
- Hook revenue schedule generation into charge_subscription
- Add set_revenue_rule, recognize_revenue, get_deferred_revenue,
get_revenue_schedule public contract APIs
- Add src/store/accountingStore.ts (Zustand + AsyncStorage):
- setRecognitionRule / removeRecognitionRule
- generateRevenueSchedule with straight-line and usage-based support
- recognizeRevenue with pro-rated partial recognition
- getDeferredRevenue per merchant
- getRevenueAnalyticsByPeriod with configurable bucket size
- Add src/screens/RevenueReportScreen.tsx:
- Recognised / deferred revenue summary cards
- SVG bar chart by period (month / quarter / year)
- Per-subscription recognition table
- Revenue configuration panel (method toggle, simulate charge, reset)
- Add src/store/__tests__/accountingStore.test.ts:
- 30 Jest tests covering pure helpers and all store actions
- Edge cases: cancellation mid-period, rule updates, multi-element arrangements
- Wire RevenueReportScreen into bottom tab navigator (Revenue tab)
- Export useAccountingStore from store index
Conflicts resolved: - contracts/src/lib.rs: kept our version (revenue module depends on it; upstream restructured contracts into a workspace but our standalone crate remains valid alongside the new structure) - src/navigation/AppNavigator.tsx: merged upstream's new screens (Community, Profile, Segments, Gamification, Settings stack, GDPR, Language, Session, Admin, Error dashboards) with our RevenueReportScreen - src/navigation/types.ts: merged upstream's new route types with our RevenueReport and RevenueTab additions - src/store/index.ts: merged upstream's new store exports (useNetworkStore, useCommunityStore) with our useAccountingStore Note: pre-existing lint errors in upstream files (unresolved module paths for @shopify/flash-list, i18next, react-i18next) are not introduced by this branch and exist on upstream/main.
- Fix contracts/Cargo.toml: remove duplicate [package] section, make it a proper workspace root only - Move revenue module from contracts/src/ to contracts/subscription/src/ adapted for the new storage-contract delegation pattern - Add revenue StorageKey variants to contracts/types/src/lib.rs: RevenueRecognitionRule, RevenueSchedule, RevenueDeferredBalance, RevenueRecognisedBalance, RevenueMerchantSubscriptions - Hook revenue schedule generation into charge_subscription in contracts/subscription/src/lib.rs - Add revenue public API to SubTrackrSubscription: set_revenue_rule, recognize_revenue, get_deferred_revenue, get_revenue_schedule - Fix clippy::manual_div_ceil in revenue.rs (use .div_ceil()) - Add #[allow(clippy::too_many_arguments)] to subscription and proxy crates (pre-existing upstream issue with Soroban contractimpl macro) - Remove obsolete contracts/src/ directory - All workspace tests pass, cargo fmt --check clean, clippy -D warnings clean
…nting feat: implement subscription revenue recognition accounting
Feature/subscription invoicing
CI/CD pipeline optimizations
Feat: implement subscription price optimization engine
Feat: implement subscription webhooks
Feature: subscription feature gating
Implement subscription transaction batching and aggregation
feat: implemented logging system
Feature: animated transitions
feat: implemented logging system
Feat(contracts): implement subscription contract invariant testing suite
Feat/sla monitoring reporting
Feat: improve WalletConnect v2 support
Feat: improve subscription gesture handling
feat: implement tax compliance engine with Avalara/TaxJar integration…
feat: implement credit note and prepayment wallet management (#555)
Feat/559 customer health scoring
…detection, where it flows, and how it is protected. (#702)
… key rotation support (#701)
* feat(auth): implement rbac schema, guards, and role management screen * fix(auth): resolve line-ending formats and code style gate requirements --------- Co-authored-by: whitezaddy <austinihueze@gmail.com>
* fix(ci): resolve TS ESLint Prettier audit failures for PR 641 * fix(ci): resolve Rust Clippy and TypeScript Build failures * fix(test): add ThemeProvider to shared test wrapper * fix(clippy): remove duplicate #![cfg(test)] from api and credit test files * fix(clippy): remove duplicate #![cfg(test)] from access_control test file
…… (#474) * feat: squashed routes branch with secrets removed Co-authored-by: od-hunter <146340502+od-hunter@users.noreply.github.com> Co-authored-by: abimbolaalabi <ibrahimade92@gmail.com> Includes all changes from the routes branch history: - Redis distributed cache for plan metadata - All previous features, fixes, and optimizations - Hardcoded secrets replaced with environment variables * fix: use env var fallback in redis test to avoid hardcoded password
…ct CI pipeline (#696) * feat: add gas-based profiling and regression checks to Soroban CI pipeline * chore: target subtrackr-proxy package in gas-benchmark script
…s (#600) (#651)
* feat(db): connection multiplexing for serverless environments (#600)
Route serverless DB access through a transaction-pooling proxy (RDS Proxy
or PgBouncer) so a small set of backend connections is multiplexed across
many concurrent function invocations, preventing connection exhaustion.
- backend/shared/db/serverlessPool.ts: transaction-pooling adapter with
IAM/SCRAM-256 auth, credential refresh, withClient/withTransaction
helpers, and abandoned-connection leak detection (>30s force-close).
- backend/serverless/dbConfig.ts + withDatabase.ts: env-driven pool config
(RDS IAM token provider) and a Lambda wrapper that releases the client in
a finally block after every invocation.
- backend/monitoring/connectionPoolMetrics.ts: Prometheus pool/leak metrics
and structured leak alerting.
- infra/terraform/{rds_proxy,pgbouncer}.tf: proxy provisioning (max ~50
pooled connections serving 500+ functions, transaction pooling).
- docker-compose.yml + .env.example: local PgBouncer + Postgres for parity;
all credentials read from a gitignored .env (no hardcoded secrets).
Closes #600
* fix(deps): repair malformed package.json blocking install
The dependencies block had a duplicate "zustand" entry and missing
commas, producing invalid JSON that breaks `npm install` in CI. Keep a
single zustand ^5.0.0 and the redis ^4.6.7 entry.
…1) (#652) Sanitize rich-text email/notification templates server-side so stored HTML can never carry executable markup, with CSP defence-in-depth on the admin dashboard. - backend/shared/sanitizer: HTMLSanitizerService wrapping DOMPurify (via jsdom) with a strict tag/attribute allowlist, http/https/mailto-only href protocols, full SVG/script/iframe stripping, and forced rel=noreferrer on links. - backend/shared/middleware/cspMiddleware.ts: hardened CSP (script-src 'self', object-src 'none') plus companion security headers, with Express and Next.js adapters. - backend/services/notification/templateService.ts: sanitize body on save, strip HTML from subjects, and render a sanitized preview before save. - backend/services/notification/jobs/backScanTemplates.ts: idempotent cron that quarantines and re-sanitizes pre-existing unsafe templates. - developer-portal/utils/securityHeaders.ts: applies the shared CSP to admin dashboard routes. - package.json: add dompurify, jsdom, @types/jsdom. Closes #611
…dd network detection UI (#499) - walletStore now derives all connection state (address, chainId, network, isConnected) from walletServiceManager via a listener subscription, making walletServiceManager the single source of truth (#62) - Added setPreferredNetwork, detectNetworkMismatch, and networkMismatch state to walletStore for EVM network mismatch detection (#69) - WalletConnectScreen: added network mismatch warning banner and a bottom-sheet network picker modal (FlatList of ALL_NETWORKS) so users can switch their preferred network without leaving the screen (#69) - Updated integration.test.ts walletStore suite to match the new consolidated API: removed stale wallet/\@subtrackr_wallet references, added mock for walletService and networkService, added tests for syncWalletConnection, listener-driven sync, and network mismatch detection Closes #62 Closes #69
- Fix 43 failing test suites: fixed assertions, mocks, snapshot calls, ThemeProvider wrapping, and integration test timer/environment issues - Fix TypeScript strict errors across 50+ files (stores, services, screens, navigation, themes, types, hooks, jest config) - Fix ESLint errors (0 errors, 103 warnings remaining) - Add .eslintignore for services/ and node_modules/ - Add @babel/plugin-transform-flow-strip-types for RN Flow type parsing - Deduplicate package.json (express, @types/express) - Rename src/utils/__tests__/accessibility.test.ts → accessibility.ts to avoid being picked up as test file - Add proper TypeScript types to all zustand stores with persist middleware - Fix navigation types and AppNavigator stray JSX
Snapshots are not tracked in git (gitignored *.snap) and differ between macOS and Linux CI runners. Replace toMatchSnapshot() with getByRole/getByText expectations.
… remove broken jobs
…24 updates Bumps the dependencies group with 24 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@graphql-tools/schema](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema) | `10.0.33` | `10.0.38` | | [@shopify/flash-list](https://github.com/Shopify/flash-list) | `2.3.1` | `2.3.2` | | [@walletconnect/react-native-compat](https://github.com/WalletConnect/walletconnect-monorepo/tree/HEAD/packages/react-native-compat) | `2.23.9` | `2.23.10` | | [@walletconnect/utils](https://github.com/WalletConnect/walletconnect-monorepo/tree/HEAD/packages/utils) | `2.23.9` | `2.23.10` | | [bullmq](https://github.com/taskforcesh/bullmq) | `5.79.1` | `5.80.10` | | [dompurify](https://github.com/cure53/DOMPurify) | `3.4.11` | `3.4.12` | | [i18next](https://github.com/i18next/i18next) | `26.0.8` | `26.3.6` | | [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.8` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.17` | | [react-i18next](https://github.com/i18next/react-i18next) | `17.0.6` | `17.0.10` | | [react-native](https://github.com/facebook/react-native/tree/HEAD/packages/react-native) | `0.85.2` | `0.86.0` | | [react-native-safe-area-context](https://github.com/AppAndFlow/react-native-safe-area-context) | `5.7.0` | `5.8.0` | | [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.24.0` | `4.26.2` | | [react-native-svg](https://github.com/software-mansion/react-native-svg) | `15.15.4` | `15.15.5` | | [@react-native-community/cli](https://github.com/react-native-community/cli/tree/HEAD/packages/cli) | `20.1.3` | `20.2.0` | | [@react-native/jest-preset](https://github.com/facebook/react-native/tree/HEAD/packages/jest-preset) | `0.85.2` | `0.86.0` | | [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator) | `14.1.0` | `14.1.1` | | [detox](https://github.com/wix/Detox) | `20.51.0` | `20.51.4` | | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.5.5` | `5.5.6` | | [jest-circus](https://github.com/jestjs/jest/tree/HEAD/packages/jest-circus) | `30.3.0` | `30.4.2` | | [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` | | [react-test-renderer](https://github.com/react/react/tree/HEAD/packages/react-test-renderer) | `19.2.5` | `19.2.8` | | [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.4.11` | `29.4.12` | | [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.23.1` | Updates `@graphql-tools/schema` from 10.0.33 to 10.0.38 - [Release notes](https://github.com/ardatan/graphql-tools/releases) - [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/schema/CHANGELOG.md) - [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/schema@10.0.38/packages/schema) Updates `@shopify/flash-list` from 2.3.1 to 2.3.2 - [Release notes](https://github.com/Shopify/flash-list/releases) - [Changelog](https://github.com/Shopify/flash-list/blob/main/CHANGELOG.md) - [Commits](Shopify/flash-list@v2.3.1...v2.3.2) Updates `@walletconnect/react-native-compat` from 2.23.9 to 2.23.10 - [Release notes](https://github.com/WalletConnect/walletconnect-monorepo/releases) - [Changelog](https://github.com/WalletConnect/walletconnect-monorepo/blob/v2.0/packages/react-native-compat/CHANGELOG.md) - [Commits](https://github.com/WalletConnect/walletconnect-monorepo/commits/@walletconnect/react-native-compat@2.23.10/packages/react-native-compat) Updates `@walletconnect/utils` from 2.23.9 to 2.23.10 - [Release notes](https://github.com/WalletConnect/walletconnect-monorepo/releases) - [Changelog](https://github.com/WalletConnect/walletconnect-monorepo/blob/v2.0/packages/utils/CHANGELOG.md) - [Commits](https://github.com/WalletConnect/walletconnect-monorepo/commits/@walletconnect/utils@2.23.10/packages/utils) Updates `bullmq` from 5.79.1 to 5.80.10 - [Release notes](https://github.com/taskforcesh/bullmq/releases) - [Commits](taskforcesh/bullmq@v5.79.1...v5.80.10) Updates `dompurify` from 3.4.11 to 3.4.12 - [Release notes](https://github.com/cure53/DOMPurify/releases) - [Commits](cure53/DOMPurify@3.4.11...3.4.12) Updates `i18next` from 26.0.8 to 26.3.6 - [Release notes](https://github.com/i18next/i18next/releases) - [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md) - [Commits](i18next/i18next@v26.0.8...v26.3.6) Updates `react` from 19.2.5 to 19.2.8 - [Release notes](https://github.com/react/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react) Updates `@types/react` from 19.2.14 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-i18next` from 17.0.6 to 17.0.10 - [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md) - [Commits](i18next/react-i18next@v17.0.6...v17.0.10) Updates `react-native` from 0.85.2 to 0.86.0 - [Release notes](https://github.com/facebook/react-native/releases) - [Changelog](https://github.com/react/react-native/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react-native/commits/v0.86.0/packages/react-native) Updates `react-native-safe-area-context` from 5.7.0 to 5.8.0 - [Release notes](https://github.com/AppAndFlow/react-native-safe-area-context/releases) - [Commits](appandflow/react-native-safe-area-context@v5.7.0...v5.8.0) Updates `react-native-screens` from 4.24.0 to 4.26.2 - [Release notes](https://github.com/software-mansion/react-native-screens/releases) - [Commits](software-mansion/react-native-screens@4.24.0...4.26.2) Updates `react-native-svg` from 15.15.4 to 15.15.5 - [Release notes](https://github.com/software-mansion/react-native-svg/releases) - [Commits](software-mansion/react-native-svg@v15.15.4...v15.15.5) Updates `@react-native-community/cli` from 20.1.3 to 20.2.0 - [Release notes](https://github.com/react-native-community/cli/releases) - [Changelog](https://github.com/react-native-community/cli/blob/main/packages/cli/CHANGELOG.md) - [Commits](https://github.com/react-native-community/cli/commits/v20.2.0/packages/cli) Updates `@react-native/jest-preset` from 0.85.2 to 0.86.0 - [Release notes](https://github.com/facebook/react-native/releases) - [Changelog](https://github.com/react/react-native/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react-native/commits/v0.86.0/packages/jest-preset) Updates `@semantic-release/release-notes-generator` from 14.1.0 to 14.1.1 - [Release notes](https://github.com/semantic-release/release-notes-generator/releases) - [Commits](semantic-release/release-notes-generator@v14.1.0...v14.1.1) Updates `@types/react` from 19.2.14 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `detox` from 20.51.0 to 20.51.4 - [Release notes](https://github.com/wix/Detox/releases) - [Commits](https://github.com/wix/Detox/commits/20.51.4) Updates `eslint-plugin-prettier` from 5.5.5 to 5.5.6 - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md) - [Commits](prettier/eslint-plugin-prettier@v5.5.5...v5.5.6) Updates `jest-circus` from 30.3.0 to 30.4.2 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.4.2/packages/jest-circus) Updates `prettier` from 3.8.3 to 3.9.6 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.8.3...3.9.6) Updates `react-test-renderer` from 19.2.5 to 19.2.8 - [Release notes](https://github.com/react/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-test-renderer) Updates `ts-jest` from 29.4.11 to 29.4.12 - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md) - [Commits](kulshekhar/ts-jest@v29.4.11...v29.4.12) Updates `tsx` from 4.22.4 to 4.23.1 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](privatenumber/tsx@v4.22.4...v4.23.1) --- updated-dependencies: - dependency-name: "@graphql-tools/schema" dependency-version: 10.0.38 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@shopify/flash-list" dependency-version: 2.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@walletconnect/react-native-compat" dependency-version: 2.23.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@walletconnect/utils" dependency-version: 2.23.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: bullmq dependency-version: 5.80.10 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: dompurify dependency-version: 3.4.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: i18next dependency-version: 26.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: react dependency-version: 19.2.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: react-i18next dependency-version: 17.0.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: react-native dependency-version: 0.86.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: react-native-safe-area-context dependency-version: 5.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: react-native-screens dependency-version: 4.26.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: react-native-svg dependency-version: 15.15.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@react-native-community/cli" dependency-version: 20.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@react-native/jest-preset" dependency-version: 0.86.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@semantic-release/release-notes-generator" dependency-version: 14.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: detox dependency-version: 20.51.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: eslint-plugin-prettier dependency-version: 5.5.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: jest-circus dependency-version: 30.4.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: prettier dependency-version: 3.9.6 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: react-test-renderer dependency-version: 19.2.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: ts-jest dependency-version: 29.4.12 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: tsx dependency-version: 4.23.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
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.
Bumps the dependencies group with 24 updates in the / directory:
10.0.3310.0.382.3.12.3.22.23.92.23.102.23.92.23.105.79.15.80.103.4.113.4.1226.0.826.3.619.2.519.2.819.2.1419.2.1717.0.617.0.100.85.20.86.05.7.05.8.04.24.04.26.215.15.415.15.520.1.320.2.00.85.20.86.014.1.014.1.120.51.020.51.45.5.55.5.630.3.030.4.23.8.33.9.619.2.519.2.829.4.1129.4.124.22.44.23.1Updates
@graphql-tools/schemafrom 10.0.33 to 10.0.38Changelog
Sourced from @graphql-tools/schema's changelog.
Commits
11f0a21chore(release): update monorepo packages versions (#8303)3c27f9achore(release): update monorepo packages versions (#8284)76b54dachore(release): update monorepo packages versions (#8264)062d229chore(release): update monorepo packages versions (#8261)c7f20acchore(release): update monorepo packages versions (#8157)Updates
@shopify/flash-listfrom 2.3.1 to 2.3.2Release notes
Sourced from @shopify/flash-list's releases.
Commits
8c1375ev2.3.2d6c9513feat(sticky-headers): configure sticky header zIndex (#2311)8ca7477fix: scroll to index autoscroll race (#2290)f4278baUpdate skill to include fixture checks8bf4c81chore(deps): bump picomatch from 2.3.1 to 2.3.2 in /fixture/web (#2210)ea9956achore(deps): bump picomatch from 2.3.1 to 2.3.2 (#2214)43ed94echore(deps): bump picomatch from 2.3.1 to 2.3.2 in /documentation (#2212)508606echore(deps): bump picomatch from 2.3.1 to 2.3.2 in /fixture/react-native (#2213)f47a64echore(skills): add analyze-feedback skill and incorporate agent learnings (#2...5ffed99feat(skills): add analyze-feedback skill for agent workflow feedback (#2206)Updates
@walletconnect/react-native-compatfrom 2.23.9 to 2.23.10Release notes
Sourced from @walletconnect/react-native-compat's releases.
Changelog
Sourced from @walletconnect/react-native-compat's changelog.
Commits
3ef9f3echore: update versions and lerna.json73b7d5cchore: update yttrium dependencies-wasm-0.10.57-kotlin-0.10.58fcaaf3fchore: update yttrium dependencies-wasm-0.10.54-swift-0.10.54-kotlin-0.10.55Updates
@walletconnect/utilsfrom 2.23.9 to 2.23.10Release notes
Sourced from @walletconnect/utils's releases.
Changelog
Sourced from @walletconnect/utils's changelog.
Commits
3ef9f3echore: update versions and lerna.jsoncd32ff1feat: add TVF extraction for Canton canton_prepareSignExecute8857209fix: validate statement after recap formatting; soften validateSignedCacao3ea740efix: reject SIWE statements containing line breaks per EIP-4361Updates
bullmqfrom 5.79.1 to 5.80.10Release notes
Sourced from bullmq's releases.
... (truncated)
Commits
88730b0fix(ci): remove stale OSV ignore (#4320)5e7f20fchore(deps): bump the npm_and_yarn group across 4 directories with 3 updates ...7603a78chore(deps): update dependency brace-expansion to v5.0.7 [security] (#4318)71ec906chore(deps): update devdependencies (non-major) [security] (#4314)097deaaci: keep only one source of truth for dependencies [python] (#4310)788592bchore(release): 5.80.9 (#4309)4f4b574perf(flow-producer): reuse queue's shared Scripts instance in jobs fixes #426...0715a56chore(release): 5.80.8 (#4306)e8af563fix(scheduler): walk past stale slots when re-upserting under same id (#4299)096977echore(release): 5.80.7 (#4304)Updates
dompurifyfrom 3.4.11 to 3.4.12Release notes
Sourced from dompurify's releases.
Commits
a9ca1e5release: 3.4.12 (#1537)Updates
i18nextfrom 26.0.8 to 26.3.6Release notes
Sourced from i18next's releases.
Changelog
Sourced from i18next's changelog.
Commits
e1c60d426.3.604da43efix: allow typescript 7 in optional peerDependencies range (react-i18next#1927)8eed4acbuild573ae7326.3.5cc54b05docs(changelog): 26.3.5 — multiline $t() options, replace mutation, escaped-l...3180d67fix: skip interpolation of placeholders inside escaped values (#2442)d16f5a2fix: stop mutating the passed replace object when returning details (#2441)bed56c1fix: parse $t() nesting options block that spans multiple lines (#2440)c19e458docs(changelog): link GHSA advisory for deepExtend fix7bb87d0docs(changelog): reference security advisory for deepExtend fixUpdates
reactfrom 19.2.5 to 19.2.8Release notes
Sourced from react's releases.
Changelog
Sourced from react's changelog.
Commits
1dd4ecb[FlightReply] Performance improvements when decoding (#37087)b0d2fdb[19.2.x] Update required references to GitHub repo (#36753)6117d7cVersion 19.2.7 (#36591)eaf3e95Version 19.2.6Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.
Updates
@types/reactfrom 19.2.14 to 19.2.17Commits
Updates
react-i18nextfrom 17.0.6 to 17.0.10Changelog
Sourced from react-i18next's changelog.
Commits
3b71c2717.0.1057c3500buildc62476fchore: sync package-lock with i18next ^26.2.0 devDependency bump0126bd1improve instance warnings (monorepo hint) + dev-only suspense warning + weekl...8b4a9ea17.0.9422bab1fix: support typescript 7 — widen peer range and fix Trans ns inference under...6e18aa9README: mention npx i18next-cli localize as the zero-to-localized patha46ad2317.0.8f715031update i18next depa515d5b...Description has been truncated