stellar / account-viewer-v2

A simple tool to view an account on the Stellar network and make transactions from it.
37 stars 25 forks source link

Bump the minor-and-patch group across 1 directory with 27 updates #426

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the minor-and-patch group with 27 updates in the / directory:

Package From To
@ledgerhq/hw-transport-webusb 6.28.6 6.29.4
@stellar/stellar-sdk 12.0.1 12.3.0
@stellar/typescript-wallet-sdk 1.5.0 1.7.0
@stellar/typescript-wallet-sdk-km 1.5.0 1.7.0
@trezor/connect-web 9.2.4 9.4.2
react-router-dom 6.23.1 6.27.0
styled-components 6.1.11 6.1.13
url 0.11.3 0.11.4
@babel/core 7.24.7 7.25.8
@babel/preset-env 7.24.7 7.25.8
@babel/preset-react 7.24.7 7.25.7
@babel/preset-typescript 7.24.7 7.25.7
@testing-library/jest-dom 6.4.6 6.6.2
@testing-library/react 16.0.0 16.0.1
@types/jest 29.5.12 29.5.13
@types/lodash 4.17.5 4.17.12
@types/react 18.3.3 18.3.11
@types/react-dom 18.3.0 18.3.1
babel-loader 9.1.3 9.2.1
eslint-plugin-import 2.29.1 2.31.0
eslint-plugin-jsx-a11y 6.8.0 6.10.0
eslint-plugin-react 7.34.2 7.37.1
html-webpack-plugin 5.6.0 5.6.2
mini-css-extract-plugin 2.9.0 2.9.1
tslib 2.6.3 2.8.0
typescript 5.4.5 5.6.3
webpack 5.92.0 5.95.0

Updates @ledgerhq/hw-transport-webusb from 6.28.6 to 6.29.4

Commits
  • d85b16b Merge branch 'release'
  • 2cbdeea chore(release): :rocket: prepare release [skip ci]
  • fc6861f feat: upgrade pnpm to v9.11
  • d9b5d61 updating release notes for LLD 2.87
  • a5adf4d chore(prerelease): :rocket: release prerelease [LLD(2.87.0-next.2), LLM(3.50....
  • 91391a2 Merge pull request #7883 from LedgerHQ/support/update-axios-and-ws-for-cve
  • f805d14 changeset
  • 22161f3 Update hw-app-eth dev dep ethers to 5.7.2
  • d0ca87e Force ethers dependency ws to 7.5.10
  • 2a7b25f Update axios to 1.7.7
  • Additional commits viewable in compare view


Updates @stellar/stellar-sdk from 12.0.1 to 12.3.0

Release notes

Sourced from @​stellar/stellar-sdk's releases.

v12.3.0

Added

  • rpc.Server now has a getTransactions, which has the same response schema as getTransactions except with bundles of transactions (#1037).
  • rpc.Server now has a getVersionInfo method which reports version information of the RPC instance it is connected to (#1028):
export interface GetVersionInfoResponse {
  version: string;
  commit_hash: string;
  build_time_stamp: string;
  captive_core_version: string;
  protocol_version: number;
}

Fixed

  • Lower authorization entry's default signature expiration to ~8min for security reasons (#1023).
  • Remove statusText error check to broaden compatibility (#1001).
  • Upgraded stellar-base which includes various fixes (release notes, #1045).

Contributors

@​Shaptic @​chadoh @​aditya1702 @​psheth9

New Contributors

Full Changelog: https://github.com/stellar/js-stellar-sdk/compare/v12.2.0...v12.3.0

v12.2.0

Fixed

  • @stellar/stellar-base and its underlying dependency @stellar/js-xdr have been upgraded to their latest versions; reference their release notes (v12.1.0 and v3.1.2, respectively) for details (#1013).

Added

  • You can now pass custom headers to both rpc.Server and Horizon.Server (#1013):
import { Server } from "@stellar/stellar-sdk/rpc";

const s = new Server("<some URL>", { headers: { "X-Custom-Header": "hello" }})

  • Horizon.Server now supports the new POST /transactions_async endpoint via the submitAsyncTransaction method (#989). Its purpose is to provide an immediate response to the submission rather than waiting for Horizon to determine its status. The response schema is as follows:
interface SubmitAsyncTransactionResponse {
  // the submitted transaction hash
  hash: string;
  // one of "PENDING", "DUPLICATE", "TRY_AGAIN_LATER", or "ERROR"
  tx_status: string;
  // a base64-encoded xdr.TransactionResult iff `tx_status` is "ERROR"
  error_result_xdr: string;
}
</tr></table> 

... (truncated)

Changelog

Sourced from @​stellar/stellar-sdk's changelog.

v12.3.0

Added

  • rpc.Server now has a getTransactions, which has the same response schema as getTransactions except with bundles of transactions (#1037).
  • rpc.Server now has a getVersionInfo method which reports version information of the RPC instance it is connected to (#1028):
export interface GetVersionInfoResponse {
  version: string;
  commit_hash: string;
  build_time_stamp: string;
  captive_core_version: string;
  protocol_version: number;
}

Fixed

  • Lower authorization entry's default signature expiration to ~8min for security reasons (#1023).
  • Remove statusText error check to broaden compatibility (#1001).
  • Upgraded stellar-base which includes various fixes (release notes, #1045).

v12.2.0

Fixed

  • @stellar/stellar-base and its underlying dependency @stellar/js-xdr have been upgraded to their latest versions; reference their release notes (v12.1.0 and v3.1.2, respectively) for details (#1013).

Added

  • You can now pass custom headers to both rpc.Server and Horizon.Server (#1013):
import { Server } from "@stellar/stellar-sdk/rpc";

const s = new Server("<some URL>", { headers: { "X-Custom-Header": "hello" }})

  • Horizon.Server now supports the new POST /transactions_async endpoint via the submitAsyncTransaction method (#989). Its purpose is to provide an immediate response to the submission rather than waiting for Horizon to determine its status. The response schema is as follows:
interface SubmitAsyncTransactionResponse {
  // the submitted transaction hash
  hash: string;
  // one of "PENDING", "DUPLICATE", "TRY_AGAIN_LATER", or "ERROR"
  tx_status: string;
  // a base64-encoded xdr.TransactionResult iff `tx_status` is "ERROR"
  error_result_xdr: string;
}
  • rpc.Server now has a getFeeStats method which retrieves fee statistics for a previous chunk of ledgers to provide users with a way to provide informed decisions about getting their transactions included in the following ledgers (#998):
export interface GetFeeStatsResponse {
  sorobanInclusionFee: FeeDistribution;
  inclusionFee: FeeDistribution;
</tr></table> 

... (truncated)

Commits
  • 99cf4cc Release v12.3.0 (#1045)
  • e6cda07 RPC: Add support for getTransactions endpoint (#1037)
  • 581b32a Use renamed custom types example contract (#1043)
  • 3e081ba Modify auth entry sig expiration to ~8min (#1023)
  • 72ec060 Add support for getVersionInfo endpoint (#1028)
  • e4dd603 Remove statusText error check to broaden compatibility (#1001)
  • a2f69d9 Bump the minor-and-patch group across 1 directory with 9 updates (#1027)
  • 5ab7797 Update endpoint documentation references in the jsdocs (#1026)
  • 6a0c519 Update npm link in the README (#1025)
  • 161c083 Bump the minor-and-patch group across 1 directory with 2 updates (#1018)
  • Additional commits viewable in compare view


Updates @stellar/typescript-wallet-sdk from 1.5.0 to 1.7.0

Updates @stellar/typescript-wallet-sdk-km from 1.5.0 to 1.7.0

Updates @trezor/connect-web from 9.2.4 to 9.4.2

Commits


Updates react-router-dom from 6.23.1 to 6.27.0

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9

react-router-dom-v5-compat@6.4.0-pre.8

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.8
    • react-router-dom@6.4.0-pre.8

react-router-dom-v5-compat@6.4.0-pre.7

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.7
    • react-router-dom@6.4.0-pre.7

react-router-dom-v5-compat@6.4.0-pre.6

Patch Changes

  • 44bce3c6: Fix react-router-dom peer dependency version
    • react-router@6.4.0-pre.6
    • react-router-dom@6.4.0-pre.6

react-router-dom-v5-compat@6.4.0-pre.5

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.27.0

Minor Changes

  • Stabilize unstable_patchRoutesOnNavigation (#11973)
    • Add new PatchRoutesOnNavigationFunctionArgs type for convenience (#11967)
  • Stabilize unstable_dataStrategy (#11974)
  • Stabilize the unstable_flushSync option for navigations and fetchers (#11989)
  • Stabilize the unstable_viewTransition option for navigations and the corresponding unstable_useViewTransitionState hook (#11989)

Patch Changes

  • Fix bug when submitting to the current contextual route (parent route with an index child) when an ?index param already exists from a prior submission (#12003)

  • Fix useFormAction bug - when removing ?index param it would not keep other non-Remix index params (#12003)

  • Fix types for RouteObject within PatchRoutesOnNavigationFunction's patch method so it doesn't expect agnostic route objects passed to patch (#11967)

  • Updated dependencies:

    • react-router@6.27.0
    • @remix-run/router@1.20.0

6.26.2

Patch Changes

  • Updated dependencies:
    • @remix-run/router@1.19.2
    • react-router@6.26.2

6.26.1

Patch Changes

  • Rename unstable_patchRoutesOnMiss to unstable_patchRoutesOnNavigation to match new behavior (#11888)
  • Updated dependencies:
    • @remix-run/router@1.19.1
    • react-router@6.26.1

6.26.0

Minor Changes

  • Add a new replace(url, init?) alternative to redirect(url, init?) that performs a history.replaceState instead of a history.pushState on client-side navigation redirects (#11811)

Patch Changes

  • Fix initial hydration behavior when using future.v7_partialHydration along with unstable_patchRoutesOnMiss (#11838)
    • During initial hydration, router.state.matches will now include any partial matches so that we can render ancestor HydrateFallback components
  • Updated dependencies:
    • @remix-run/router@1.19.0
    • react-router@6.26.0

... (truncated)

Commits


Updates styled-components from 6.1.11 to 6.1.13

Release notes

Sourced from styled-components's releases.

v6.1.13

What's Changed

New Contributors

Full Changelog: https://github.com/styled-components/styled-components/compare/v6.1.12...v6.1.13

v6.1.12

What's Changed

New Contributors

Full Changelog: https://github.com/styled-components/styled-components/compare/v6.1.11...v6.1.12

Commits


Updates url from 0.11.3 to 0.11.4

Commits
  • 455a3e2 v0.11.4
  • 97ab476 [meta] add missing engines.node
  • c5e1391 [Fix] use punycode from the package and not from the node core module
  • 57539a8 [Deps] update qs
  • 11a50c9 [Dev Deps] update @ljharb/eslint-config, acorn, aud
  • db8a439 [actions] improve workflows
  • See full diff in compare view


Updates @babel/core from 7.24.7 to 7.25.8

Release notes

Sourced from @​babel/core's releases.

v7.25.8 (2024-10-10)

:bug: Bug Fix

:house: Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

Committers: 3

v7.25.7 (2024-10-02)

Thanks @​DylanPiercey and @​YuHyeonWook for your first PRs!

:bug: Bug Fix

:nail_care: Polish

:house: Internal

  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator

:running_woman: Performance

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.25.8 (2024-10-10)

:bug: Bug Fix

:house: Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

v7.25.7 (2024-10-02)

:bug: Bug Fix

:nail_care: Polish

:house: Internal

  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator

:running_woman: Performance

v7.25.6 (2024-08-29)

:bug: Bug Fix

... (truncated)

Commits


Updates @babel/preset-env from 7.24.7 to 7.25.8

Release notes

Sourced from @​babel/preset-env's releases.

v7.25.8 (2024-10-10)

:bug: Bug Fix

:house: Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

Committers: 3

v7.25.7 (2024-10-02)

Thanks @​DylanPiercey and @​YuHyeonWook for your first PRs!

:bug: Bug Fix

:nail_care: Polish

:house: Internal

  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator

:running_woman: Performance

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.25.8 (2024-10-10)

:bug: Bug Fix

:house: Internal

  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

v7.25.7 (2024-10-02)

:bug: Bug Fix

:nail_care: Polish

:house: Internal

  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator

:running_woman: Performance

v7.25.6 (2024-08-29)

:bug: Bug Fix

... (truncated)

Commits


Updates @babel/preset-react from 7.24.7 to 7.25.7

Release notes

Sourced from @​babel/preset-react's releases.

v7.25.7 (2024-10-02)

Thanks @​DylanPiercey and @​YuHyeonWook for your first PRs!

:bug: Bug Fix

:nail_care: Polish

:house: Internal

dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.