Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor-and-patch group across 1 directory with 41 updates #372

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2024

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

Package From To
@microlink/react-json-view 1.22.2 1.23.3
@stellar/prettier-config 1.0.1 1.2.0
@stellar/stellar-sdk 12.0.0-rc.2 12.3.0
@testing-library/jest-dom 6.0.0 6.5.0
@testing-library/user-event 14.4.3 14.5.2
assert 2.0.0 2.1.0
dompurify 3.0.5 3.1.7
react 18.2.0 18.3.1
@types/react 18.2.20 18.3.11
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.7 18.3.0
react-router-dom 6.15.0 6.26.2
sass 1.69.7 1.79.4
styled-components 6.0.7 6.1.13
typescript 5.1.6 5.6.2
url 0.11.1 0.11.4
@babel/core 7.22.10 7.25.7
@babel/preset-env 7.22.10 7.25.7
@babel/preset-react 7.22.5 7.25.7
@babel/preset-typescript 7.22.5 7.25.7
@types/jest 29.5.3 29.5.13
@types/lodash 4.14.197 4.17.10
@types/react-copy-to-clipboard 5.0.4 5.0.7
@types/styled-components 5.1.26 5.1.34
babel-loader 9.1.3 9.2.1
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-import 2.28.0 2.31.0
eslint-plugin-jsx-a11y 6.7.1 6.10.0
eslint-plugin-react 7.33.1 7.37.1
eslint-plugin-react-hooks 4.6.0 4.6.2
eslint-webpack-plugin 4.0.1 4.2.0
html-webpack-plugin 5.5.3 5.6.0
mini-css-extract-plugin 2.7.6 2.9.1
prettier 3.0.2 3.3.3
ts-loader 9.4.4 9.5.1
webpack 5.88.2 5.95.0
dotenv 16.3.1 16.4.5
express 4.18.2 4.21.0
ts-node 10.9.1 10.9.2

Updates @microlink/react-json-view from 1.22.2 to 1.23.3

Release notes

Sourced from @​microlink/react-json-view's releases.

v1.23.3

What's Changed

New Contributors

Full Changelog: microlinkhq/react-json-view@v1.23.2...v1.23.3

v1.23.2

What's Changed

New Contributors

Full Changelog: microlinkhq/react-json-view@v1.23.1...v1.23.2

v1.23.1

What's Changed

New Contributors

Full Changelog: microlinkhq/react-json-view@v1.23.0...v1.23.1

Changelog

Sourced from @​microlink/react-json-view's changelog.

1.23.3 (2024-09-27)

Bug Fixes

1.23.2 (2024-09-22)

Bug Fixes

1.23.1 (2024-07-02)

1.23.0 (2023-10-26)

Features

  • dev server: add example of name as jsx element (84ada17)
  • json viewer: add handling namespace when is an react object (e11b60a)
  • types: add JSX.Element as name prop type (ebd8aed)

Bug Fixes

  • add missed devDeps in new create-react-app (5275cd4)
  • json viewer: add support for functional components (f478f55)
Commits

Updates @stellar/prettier-config from 1.0.1 to 1.2.0

Commits
Maintainer changes

This version was pushed to npm by piyalbasu, a new releaser for @​stellar/prettier-config since your current version.


Updates @stellar/stellar-sdk from 12.0.0-rc.2 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: stellar/js-stellar-sdk@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 @testing-library/jest-dom from 6.0.0 to 6.5.0

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.5.0

6.5.0 (2024-08-23)

Features

  • toHaveValue: Asserting aria-valuenow (#479) (acbf416)

v6.4.8

6.4.8 (2024-07-23)

Bug Fixes

  • Drop peerDependencies from package.json (#610) (faf534b)

v6.4.7

6.4.7 (2024-07-22)

Bug Fixes

v6.4.6

6.4.6 (2024-06-10)

Bug Fixes

v6.4.5

6.4.5 (2024-05-03)

Bug Fixes

v6.4.4

6.4.4 (2024-05-03)

Bug Fixes

v6.4.3

6.4.3 (2024-05-03)

... (truncated)

Commits
  • 62f0e3a docs: add waynevanson as a contributor for code, and test (#626)
  • acbf416 feat(toHaveValue): Asserting aria-valuenow (#479)
  • 47a667c docs: add vorant94 as a contributor for code (#619)
  • 06d19ba adjust vitest ambient declaration file according to vitest docs (#612)
  • a073b08 docs: add aleks-elkin as a contributor for maintenance (#618)
  • aa094a5 chore: remove unused @​babel/runtime dependency (#617)
  • d02e80b docs: add ddolcimascolo as a contributor for maintenance (#616)
  • faf534b fix: Drop peerDependencies from package.json (#610)
  • 78a2934 docs: add tonyhallett as a contributor for bug (#615)
  • 5cc6298 fix: Type definition of toHaveClass (#611)
  • Additional commits viewable in compare view

Updates @testing-library/user-event from 14.4.3 to 14.5.2

Release notes

Sourced from @​testing-library/user-event's releases.

v14.5.2

14.5.2 (2023-12-29)

Bug Fixes

  • remove interop and deep DTL imports (6a3c896)

v14.5.1

14.5.1 (2023-09-15)

Bug Fixes

  • incorrect default import from @​testing-library/dom (#1162) (d7483f0)

v14.5.0

14.5.0 (2023-09-14)

Bug Fixes

  • exports: add a named export for userEvent (4019cee), closes #1146

Features

  • types: Add additional type exports for UserEvent & Options (#1112) (da00e8d)
Commits
  • d036279 chore: upgrade node in codesandbox
  • 910fee5 chore: set tsconfig baseUrl
  • fa8d867 revert: swap release script
  • c4b4629 chore: upgrade testing environment
  • 6a3c896 fix: remove interop and deep DTL imports
  • d7483f0 fix: incorrect default import from @​testing-library/dom (#1162)
  • 4be87b3 chore: swap release script
  • d95121d chore: add --experimental-import-meta-resolve
  • 8779eae chore: format, lint, fix lint
  • 4019cee fix(exports): add a named export for userEvent
  • Additional commits viewable in compare view

Updates assert from 2.0.0 to 2.1.0

Changelog

Sourced from assert's changelog.

2.1.0

  • [New] Implement assert.match() and assert.doesNotMatch()
  • [Refactor] switching to a maintained Object.assign package
  • [readme] Add description for usage with webpack and vite (#60)
  • [readme] Remove duplicate line under usage section (#48)
  • [Deps] update is-nan, object-is, util
  • [Dev Deps] update @babel/cli, @babel/core, @babel/preset-env, airtap, core-js, cross-eng, object.entries, object.getownpropertydescriptors, tape
Commits
  • fc65923 v2.1.0
  • d99f50d [meta] add to FUNDING.yml
  • c6e09cb [Deps] update is-nan, object-is, util
  • a38013b [Dev Deps] update @babel/cli, @babel/core, @babel/preset-env, airtap,...
  • f5d7c66 [Refactor] switching to a maintained Object.assign package
  • 80664db [readme] Add description for usage with webpack and vite
  • d932a53 Implement assert.match() and assert.doesNotMatch()
  • bba838e Add security.md
  • ffd5479 Remove duplicate line under usage section (#48)
  • c112ec4 Remove duplicate line under usage section
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ljharb, a new releaser for assert since your current version.


Updates bignumber.js from 9.1.1 to 9.1.2

Changelog

Sourced from bignumber.js's changelog.

9.1.2

  • 28/08/23
  • #354 Amend round to avoid bug in v8 Maglev compiler.
  • [BUGFIX] #344 minimum(0, -0) should be -0.
Commits

Updates dompurify from 3.0.5 to 3.1.7

Release notes

Sourced from dompurify's releases.

DOMPurify 3.1.7

  • Fixed an issue with comment detection and possible bypasses with specific config settings, thanks @​masatokinugawa
  • Fixed several smaller typos in documentation and test & build files, thanks @​christianhg
  • Added better support for Angular compiler, thanks @​jeroen1602
  • Added several new attributes to HTML and SVG allow-list, thanks @​Gigabyte5671 and @​Rotzbua
  • Removed the foreignObject element from the list of HTML entry-points, thanks @​masatokinugawa
  • Bumped several dependencies to be more up to date

DOMPurify 3.1.6

  • Fixed an issue with the execution logic of attribute hooks to prevent bypasses, thanks @​kevin-mizu
  • Fixed an issue with element removal leading to uncaught errors through DOM Clobbering, thanks @​realansgar
  • Fixed a minor problem with the bower file pointing to the wrong dist path
  • Fixed several minor typos in docs, comments and comment blocks, thanks @​Rotzbua
  • Updated several development dependencies

DOMPurify 3.1.5

  • Fixed a minor issue with the dist paths in bower.js, thanks @​HakumenNC
  • Fixed a minor issue with sanitizing HTML coming from copy&paste Word content, thanks @​kakao-bishop-cho

DOMPurify 3.1.4

  • Fixed an issue with the recently implemented isNaN checks, thanks @​tulach
  • Added several new popover attributes to allow-list, thanks @​Gigabyte5671
  • Fixed the tests and adjusted the test runner to cover all branches

DOMPurify 3.1.3

  • Fixed several mXSS variations found by and thanks to @​kevin-mizu & @​Ry0taK
  • Added better configurability for comment scrubbing default behavior
  • Added better hardening against Prototype Pollution attacks, thanks @​kevin-mizu
  • Added better handling and readability of the nodeType property, thanks @​ssi02014
  • Fixed some smaller issues in README and other documentation

DOMPurify 3.1.2

  • Addressed and fixed a mXSS variation found by @​kevin-mizu
  • Addressed and fixed a mXSS variation found by Adam Kues of Assetnote
  • Updated tests for older Safari and Chrome versions

DOMPurify 3.1.1

  • Fixed an mXSS sanitiser bypass reported by @​icesfont
  • Added new code to track element nesting depth
  • Added new code to enforce a maximum nesting depth of 255
  • Added coverage tests and necessary clobbering protections

Note that this is a security release and should be upgraded to immediately. Please also note that further releases may follow as the underlying vulnerability is apparently new and further variations may be discovered.

DOMPurify 3.1.0

  • Added new setting SAFE_FOR_XML to enable better control over comment scrubbing
  • Updated README to warn about happy-dom not being safe for use with DOMPurify yet
  • Updated the LICENSE file to show the accurate year number
  • Updated several build and test dependencies

... (truncated)

Commits
  • 69c8c12 Merge pull request #999 from cure53/main
  • 15f54ed chore: Regenerated source maps
  • 4f3b5cb Merge pull request #998 from cure53/main
  • 50aec03 chore: Preparing 3.1.7 release
  • 4a9ec1f fix: Fixed an issue with comment detection and possible bypasses with specifi...
  • 50ea515 Merge pull request #993 from cure53/dependabot/npm_and_yarn/body-parser-1.20.3
  • b6188ec build(deps): bump body-parser from 1.20.1 to 1.20.3
  • 1e2cb9b Merge pull request #990 from jeroen1602/angular_support
  • 745b521 Added support for the Angular compiler.
  • c1949fb Merge pull request #989 from cure53/dependabot/npm_and_yarn/webpack-5.94.0
  • Additional commits viewable in compare view

Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.20 to 18.3.11

Commits

Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.7 to 18.3.0

Commits

Updates react-router-dom from 6.15.0 to 6.26.2

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.26.2

Patch Changes

6.26.1

Patch Changes

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:

6.25.1

Patch Changes

  • Memoize some RouterProvider internals to reduce unnecessary re-renders (#11803)
  • Updated dependencies:

6.25.0

Minor Changes

  • Stabilize future.unstable_skipActionErrorRevalidation as future.v7_skipActionErrorRevalidation (#11769)
    • When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a Response with a 4xx/5xx status code
    • You may still opt-into revalidation via shouldRevalidate
    • This also changes shouldRevalidate's unstable_actionStatus parameter to actionStatus

Patch Changes

... (truncated)

Commits
  • eeb86ab chore: Update version for release (#11968)
  • 7cbe349 chore: Update version for release (pre) (#11955)
  • 6483515 Merge branch 'release-next' into v6
  • 05612a3 unstable_dataStrategy refactor for better single fetch support (#11943)
  • 5651176 fix: Wait for restore url navigation to complete before proceeding (#11930)
  • 04d09c3 chore: Update version for release (#11895)

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

| Package | From | To |
| --- | --- | --- |
| [@microlink/react-json-view](https://github.com/microlinkhq/react-json-view) | `1.22.2` | `1.23.3` |
| [@stellar/prettier-config](https://github.com/stellar/product-conventions) | `1.0.1` | `1.2.0` |
| [@stellar/stellar-sdk](https://github.com/stellar/js-stellar-sdk) | `12.0.0-rc.2` | `12.3.0` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.0.0` | `6.5.0` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.4.3` | `14.5.2` |
| [assert](https://github.com/browserify/commonjs-assert) | `2.0.0` | `2.1.0` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.0.5` | `3.1.7` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.20` | `18.3.11` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.7` | `18.3.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.15.0` | `6.26.2` |
| [sass](https://github.com/sass/dart-sass) | `1.69.7` | `1.79.4` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.0.7` | `6.1.13` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.1.6` | `5.6.2` |
| [url](https://github.com/defunctzombie/node-url) | `0.11.1` | `0.11.4` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.22.10` | `7.25.7` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.22.10` | `7.25.7` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.22.5` | `7.25.7` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.22.5` | `7.25.7` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.3` | `29.5.13` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.197` | `4.17.10` |
| [@types/react-copy-to-clipboard](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-copy-to-clipboard) | `5.0.4` | `5.0.7` |
| [@types/styled-components](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/styled-components) | `5.1.26` | `5.1.34` |
| [babel-loader](https://github.com/babel/babel-loader) | `9.1.3` | `9.2.1` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.28.0` | `2.31.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.7.1` | `6.10.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.1` | `7.37.1` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.0` | `4.6.2` |
| [eslint-webpack-plugin](https://github.com/webpack-contrib/eslint-webpack-plugin) | `4.0.1` | `4.2.0` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.5.3` | `5.6.0` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `2.7.6` | `2.9.1` |
| [prettier](https://github.com/prettier/prettier) | `3.0.2` | `3.3.3` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.4.4` | `9.5.1` |
| [webpack](https://github.com/webpack/webpack) | `5.88.2` | `5.95.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.3.1` | `16.4.5` |
| [express](https://github.com/expressjs/express) | `4.18.2` | `4.21.0` |
| [ts-node](https://github.com/TypeStrong/ts-node) | `10.9.1` | `10.9.2` |



Updates `@microlink/react-json-view` from 1.22.2 to 1.23.3
- [Release notes](https://github.com/microlinkhq/react-json-view/releases)
- [Changelog](https://github.com/microlinkhq/react-json-view/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/react-json-view@v1.22.2...v1.23.3)

Updates `@stellar/prettier-config` from 1.0.1 to 1.2.0
- [Release notes](https://github.com/stellar/product-conventions/releases)
- [Commits](https://github.com/stellar/product-conventions/commits)

Updates `@stellar/stellar-sdk` from 12.0.0-rc.2 to 12.3.0
- [Release notes](https://github.com/stellar/js-stellar-sdk/releases)
- [Changelog](https://github.com/stellar/js-stellar-sdk/blob/master/CHANGELOG.md)
- [Commits](stellar/js-stellar-sdk@v12.0.0-rc.2...v12.3.0)

Updates `@testing-library/jest-dom` from 6.0.0 to 6.5.0
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.0.0...v6.5.0)

Updates `@testing-library/user-event` from 14.4.3 to 14.5.2
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.4.3...v14.5.2)

Updates `assert` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/browserify/commonjs-assert/releases)
- [Changelog](https://github.com/browserify/commonjs-assert/blob/main/CHANGELOG.md)
- [Commits](browserify/commonjs-assert@v2.0.0...v2.1.0)

Updates `bignumber.js` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/MikeMcl/bignumber.js/releases)
- [Changelog](https://github.com/MikeMcl/bignumber.js/blob/master/CHANGELOG.md)
- [Commits](MikeMcl/bignumber.js@v9.1.1...v9.1.2)

Updates `dompurify` from 3.0.5 to 3.1.7
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.0.5...3.1.7)

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

Updates `@types/react` from 18.2.20 to 18.3.11
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

Updates `@types/react-dom` from 18.2.7 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-router-dom` from 6.15.0 to 6.26.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `sass` from 1.69.7 to 1.79.4
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.69.7...1.79.4)

Updates `styled-components` from 6.0.7 to 6.1.13
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](styled-components/styled-components@v6.0.7...v6.1.13)

Updates `tslib` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.6.1...v2.6.2)

Updates `typescript` from 5.1.6 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.1.6...v5.6.2)

Updates `url` from 0.11.1 to 0.11.4
- [Commits](defunctzombie/node-url@v0.11.1...v0.11.4)

Updates `@babel/core` from 7.22.10 to 7.25.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-core)

Updates `@babel/preset-env` from 7.22.10 to 7.25.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-preset-env)

Updates `@babel/preset-react` from 7.22.5 to 7.25.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-preset-react)

Updates `@babel/preset-typescript` from 7.22.5 to 7.25.7
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.7/packages/babel-preset-typescript)

Updates `@types/jest` from 29.5.3 to 29.5.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Updates `@types/lodash` from 4.14.197 to 4.17.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/react` from 18.2.20 to 18.3.11
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-copy-to-clipboard` from 5.0.4 to 5.0.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-copy-to-clipboard)

Updates `@types/react-dom` from 18.2.7 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@types/styled-components` from 5.1.26 to 5.1.34
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/styled-components)

Updates `babel-loader` from 9.1.3 to 9.2.1
- [Release notes](https://github.com/babel/babel-loader/releases)
- [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md)
- [Commits](babel/babel-loader@v9.1.3...v9.2.1)

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.0.0...v9.1.0)

Updates `eslint-plugin-import` from 2.28.0 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.28.0...v2.31.0)

Updates `eslint-plugin-jsx-a11y` from 6.7.1 to 6.10.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.10.0)

Updates `eslint-plugin-react` from 7.33.1 to 7.37.1
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.1...v7.37.1)

Updates `eslint-plugin-react-hooks` from 4.6.0 to 4.6.2
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-webpack-plugin` from 4.0.1 to 4.2.0
- [Release notes](https://github.com/webpack-contrib/eslint-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/eslint-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/eslint-webpack-plugin@v4.0.1...v4.2.0)

Updates `html-webpack-plugin` from 5.5.3 to 5.6.0
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.5.3...v5.6.0)

Updates `mini-css-extract-plugin` from 2.7.6 to 2.9.1
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/mini-css-extract-plugin@v2.7.6...v2.9.1)

Updates `prettier` from 3.0.2 to 3.3.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.0.2...3.3.3)

Updates `ts-loader` from 9.4.4 to 9.5.1
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v9.4.4...v9.5.1)

Updates `webpack` from 5.88.2 to 5.95.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.88.2...v5.95.0)

Updates `dotenv` from 16.3.1 to 16.4.5
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.3.1...v16.4.5)

Updates `express` from 4.18.2 to 4.21.0
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md)
- [Commits](expressjs/express@4.18.2...4.21.0)

Updates `ts-node` from 10.9.1 to 10.9.2
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Changelog](https://github.com/TypeStrong/ts-node/blob/main/development-docs/release-template.md)
- [Commits](TypeStrong/ts-node@v10.9.1...v10.9.2)

---
updated-dependencies:
- dependency-name: "@microlink/react-json-view"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@stellar/prettier-config"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@stellar/stellar-sdk"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: assert
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: bignumber.js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: styled-components
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tslib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react-copy-to-clipboard"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/styled-components"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: babel-loader
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: html-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: dotenv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: express
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ts-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants