Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump the major group across 1 directory with 6 updates #49

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2024

Bumps the major group with 6 updates in the / directory:

Package From To
@stellar/stellar-sdk 12.3.0 13.1.0
@sveltejs/vite-plugin-svelte 3.1.2 5.0.3
svelte 4.2.19 5.16.0
svelte-copy 1.4.2 2.0.0
uuid 10.0.0 11.0.3
vite 5.4.10 6.0.6

Updates @stellar/stellar-sdk from 12.3.0 to 13.1.0

Release notes

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

v13.1.0

v13.1.0

Added

  • Added Horizon.Server.root to obtain information from the Horizon root endpoint (#1122).

Fixed

  • When using a friendbot that points to a Horizon instance that has ledger metadata disabled, you can no longer extract the account sequence from the response. Instead, we hit RPC directly (#1107).
  • rpc.Server.getEvents() now correctly returns the cursor field at the top-level response (#1124).

Contributors

Full Changelog: stellar/js-stellar-sdk@v13.0.0...v13.1.0

v13.0.0

v13.0.0: Protocol 22

This is a direct re-tag of rc.2 with the only change being an upgrade to the stellar-base library to incorporate a patch release. Nonetheless, the entire changelog from the prior major version here is replicated for a comprehensive view on what's broken, added, and fixed.

Breaking Changes

  • We stopped supporting Node 18 explicitly a while ago, but now the Babelification of the codebase will transform to Node 18 instead of 16.

TypeScript Bindings: the contract module.

  • contract.AssembledTransaction#signAuthEntries now takes an address instead of a publicKey. This brings the API more inline with its actual functionality: It can be used to sign all the auth entries for a particular address, whether that is the address of an account (public key) or a contract. (#1044).
  • The ClientOptions.signTransaction type has been updated to reflect the latest SEP-43 protocol, which matches the latest major version of Freighter and other wallets. It now accepts address, submit, and submitUrl options, and it returns a promise containing the signedTxXdr and the signerAddress. It now also returns an Error type if an error occurs during signing.
    • basicNodeSigner has been updated to reflect this new type.
  • ClientOptions.signAuthEntry type has been updated to reflect the SEP-43 protocol, which returns a promise containing the signerAddress in addition to the signAuthEntry that was returned previously. It also can return an Error type.
  • SentTransaction.init and new SentTransaction now take one (1) argument instead of two (2). The first argument had previously been deprecated and ignored. To update:
-SentTransaction(nonsense, realStuff)
+SentTransaction(realStuff)
-new SentTransaction(nonsense, realStuff)
+new SentTransaction(realStuff)

Server APIs: the rpc and Horizon modules.

  • Deprecated RPC APIs have been removed (#1084):
    • simulateTransaction's cost field is removed
    • rpc.Server.getEvents's pagingToken field is deprecated, use cursor instead
  • Deprecated Horizon APIs have been removed (deprecated since v10.0.1, ):
    • removed fields transaction_count, base_fee, and base_reserve
    • removed fields num_accounts and amount from assets
  • The SorobanRpc import, previously deprecated, has been removed. You can import rpc instead:
-import { SorobanRpc } from '@stellar/stellar-sdk'
+import { rpc } from '@stellar/stellar-sdk'
// alternatively, you can also import from the `rpc` entrypoint:
import { Server } from '@stellar/stellar-sdk/rpc'

... (truncated)

Changelog

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

v13.1.0

Added

  • Added Horizon.Server.root to obtain information from the Horizon root endpoint (#1122).

Fixed

  • When using a friendbot that points to a Horizon instance that has ledger metadata disabled, you can no longer extract the account sequence from the response. Instead, we hit RPC directly (#1107).
  • rpc.Server.getEvents() now correctly returns the cursor field at the top-level response (#1124).

v13.0.0

This is a direct re-tag of rc.2 with the only change being an upgrade to the stellar-base library to incorporate a patch release. Nonetheless, the entire changelog from the prior major version here is replicated for a comprehensive view on what's broken, added, and fixed.

Breaking Changes

  • We stopped supporting Node 18 explicitly a while ago, but now the Babelification of the codebase will transform to Node 18 instead of 16.

TypeScript Bindings: the contract module.

  • contract.AssembledTransaction#signAuthEntries now takes an address instead of a publicKey. This brings the API more inline with its actual functionality: It can be used to sign all the auth entries for a particular address, whether that is the address of an account (public key) or a contract. (#1044).
  • The ClientOptions.signTransaction type has been updated to reflect the latest SEP-43 protocol, which matches the latest major version of Freighter and other wallets. It now accepts address, submit, and submitUrl options, and it returns a promise containing the signedTxXdr and the signerAddress. It now also returns an Error type if an error occurs during signing.
    • basicNodeSigner has been updated to reflect this new type.
  • ClientOptions.signAuthEntry type has been updated to reflect the SEP-43 protocol, which returns a promise containing the signerAddress in addition to the signAuthEntry that was returned previously. It also can return an Error type.
  • SentTransaction.init and new SentTransaction now take one (1) argument instead of two (2). The first argument had previously been deprecated and ignored. To update:
-SentTransaction(nonsense, realStuff)
+SentTransaction(realStuff)
-new SentTransaction(nonsense, realStuff)
+new SentTransaction(realStuff)

Server APIs: the rpc and Horizon modules.

  • Deprecated RPC APIs have been removed (#1084):
    • simulateTransaction's cost field is removed
    • rpc.Server.getEvents's pagingToken field is deprecated, use cursor instead
  • Deprecated Horizon APIs have been removed (deprecated since v10.0.1, ):
    • removed fields transaction_count, base_fee, and base_reserve
    • removed fields num_accounts and amount from assets
  • The SorobanRpc import, previously deprecated, has been removed. You can import rpc instead:
-import { SorobanRpc } from '@stellar/stellar-sdk'
+import { rpc } from '@stellar/stellar-sdk'
// alternatively, you can also import from the `rpc` entrypoint:
import { Server } from '@stellar/stellar-sdk/rpc'

Added

TypeScript Bindings: the contract module.

  • contract.Client now has a static deploy method that can be used to deploy a contract instance from an existing uploaded/"installed" Wasm hash. The first arguments to this method are the arguments for the contract's __constructor method in accordance with CAP-42 (#1086). For example, using the increment test contract as modified in stellar/soroban-test-examples#2:
const tx = await contract.Client.deploy(
</tr></table> 

... (truncated)

Commits
  • d147768 Prepare v13.1.0 for release (#1123)
  • 548e5c3 Move the cursor field in rpc.Server.getEvents to the right place (#1124)
  • 3988271 Added Horizon.Server.root to obtain information from the Horizon root endpo...
  • 3304995 Fetch metadata via RPC instead of relying on the Friendbot response (#1107)
  • bb2e5ba Bump the minor-and-patch group across 1 directory with 4 updates (#1111)
  • 25ff204 Fix misc. spelling issues in docs (#1083)
  • 24c5032 Allow npm publish to be run manually (#1105)
  • 83de316 Drop the protocol-22-beta when publishing to npm (#1104)
  • bbd258f Protocol 22 stable release, v13.0.0 (#1103)
  • 3c9a4c4 Update CHANGELOG.md (#1102)
  • Additional commits viewable in compare view

Updates @sveltejs/vite-plugin-svelte from 3.1.2 to 5.0.3

Release notes

Sourced from @​sveltejs/vite-plugin-svelte's releases.

@​sveltejs/vite-plugin-svelte@​5.0.3

Patch Changes

  • fix errorhandling to work with errors that don't have a code property (#1054)

@​sveltejs/vite-plugin-svelte@​5.0.2

Patch Changes

  • adapt internal handling of warning and error code property to changes in svelte5 (#1044)

@​sveltejs/vite-plugin-svelte@​5.0.1

Patch Changes

  • Fix peer dependencies warning (#1038)

@​sveltejs/vite-plugin-svelte@​5.0.0

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

  • Add esm-env to ssr.noExternal by default to resolve its conditions with Vite (#1020)

  • Support ?inline query on Svelte style virtual modules (#1024)

Patch Changes

  • remove vite6 beta from peer range (#1035)

  • Allow script tags to span multiple lines (0db95a9)

  • Updated dependencies [4fefbc2, e262266]:

    • @​sveltejs/vite-plugin-svelte-inspector@​4.0.0

@​sveltejs/vite-plugin-svelte@​5.0.0-next.0

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

... (truncated)

Changelog

Sourced from @​sveltejs/vite-plugin-svelte's changelog.

5.0.3

Patch Changes

  • fix errorhandling to work with errors that don't have a code property (#1054)

5.0.2

Patch Changes

  • adapt internal handling of warning and error code property to changes in svelte5 (#1044)

5.0.1

Patch Changes

  • Fix peer dependencies warning (#1038)

5.0.0

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

  • Add esm-env to ssr.noExternal by default to resolve its conditions with Vite (#1020)

  • Support ?inline query on Svelte style virtual modules (#1024)

Patch Changes

  • remove vite6 beta from peer range (#1035)

  • Allow script tags to span multiple lines (0db95a9)

  • Updated dependencies [4fefbc2, e262266]:

    • @​sveltejs/vite-plugin-svelte-inspector@​4.0.0

5.0.0-next.0

Major Changes

... (truncated)

Commits

Updates svelte from 4.2.19 to 5.16.0

Release notes

Sourced from svelte's releases.

svelte@5.16.0

Minor Changes

  • feat: allow class attribute to be an object or array, using clsx (#14714)

Patch Changes

  • fix: don't include keyframes in global scope in the keyframes to rename (#14822)

svelte@5.15.0

Minor Changes

  • feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)

svelte@5.14.6

Patch Changes

  • fix: treeshake $inspect.trace code if unused in modules (#14774)

  • fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)

svelte@5.14.5

Patch Changes

  • fix: bump esrap dependency (#14765)

  • fix: ensure svg namespace for <a> elements is correct (#14756)

  • fix: treeshake $inspect.trace code if unused (#14770)

svelte@5.14.4

Patch Changes

  • fix: remove implements from class declarations (#14749)

  • fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)

svelte@5.14.3

Patch Changes

  • fix: bump esrap, prevent malformed AST (#14742)

  • fix: compare array contents for equality mismatch detections, not the arrays themselves (#14738)

svelte@5.14.2

Patch Changes

  • fix: correctly highlight first rerun of $inspect.trace (#14734)

  • chore: more loose parser improvements (#14733)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.16.0

Minor Changes

  • feat: allow class attribute to be an object or array, using clsx (#14714)

Patch Changes

  • fix: don't include keyframes in global scope in the keyframes to rename (#14822)

5.15.0

Minor Changes

  • feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)

5.14.6

Patch Changes

  • fix: treeshake $inspect.trace code if unused in modules (#14774)

  • fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)

5.14.5

Patch Changes

  • fix: bump esrap dependency (#14765)

  • fix: ensure svg namespace for <a> elements is correct (#14756)

  • fix: treeshake $inspect.trace code if unused (#14770)

5.14.4

Patch Changes

  • fix: remove implements from class declarations (#14749)

  • fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)

5.14.3

Patch Changes

  • fix: bump esrap, prevent malformed AST (#14742)

  • fix: compare array contents for equality mismatch detections, not the arrays themselves (#14738)

... (truncated)

Commits

Updates svelte-copy from 1.4.2 to 2.0.0

Release notes

Sourced from svelte-copy's releases.

v2.0.0

What's Changed

Full Changelog: ghostdevv/svelte-copy@v1.4.2...v2.0.0

Migrating from v1 to v2

  • The on:svelte-copy event is now a onCopy param to the action options.
  • The on:svelte-copy:error event is now a onError param to the action options.
  • The events option now only accepts string[], rather than string | string[]
  • Svelte 5 is now required
Commits

Updates uuid from 10.0.0 to 11.0.3

Release notes

Sourced from uuid's releases.

v11.0.3

11.0.3 (2024-11-04)

Bug Fixes

v11.0.2

11.0.2 (2024-10-28)

Bug Fixes

v11.0.1

11.0.1 (2024-10-27)

Bug Fixes

v11.0.0

11.0.0 (2024-10-27)

⚠ BREAKING CHANGES

  • refactor v1 internal state and options logic (#780)
  • refactor v7 internal state and options logic, fixes #764 (#779)
  • Port to TypeScript, closes #762 (#763)
  • update node support matrix (only support node 16-20) (#750)
  • This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022.
  • Remove the minified UMD build from the package.
  • Drop support for browsers that don't correctly implement const/let and default arguments, and no longer transpile the browser build to ES2015.
  • Although in practice this is currently a noop since the resulting build does not change, the build will no longer transpiles future changes for Node.js 8.x targets, so semantically this is still a breaking change.
  • Deep requiring specific algorithms of this library like require('uuid/v4'), which has been deprecated in uuid@7, is no longer supported.
  • The default export, which used to be the v4() method but which was already discouraged in v3.x of this library, has been removed.
  • Explicitly note that deep imports of the different uuid version functions are deprecated and no longer encouraged and that ECMAScript module named imports should be used instead. Emit a deprecation warning for people who deep-require the different algorithm variants.
  • Remove builtin support for insecure random number generators in the browser. Users who want that will have to supply their own random number generator function.
  • Remove support for generating v3 and v5 UUIDs in Node.js<4.x
  • Convert code base to ECMAScript Modules (ESM) and release CommonJS build for node and ESM build for browser bundlers.

Features

... (truncated)

Changelog

Sourced from uuid's changelog.

11.0.3 (2024-11-04)

Bug Fixes

11.0.2 (2024-10-28)

Bug Fixes

11.0.1 (2024-10-27)

Bug Fixes

11.0.0 (2024-10-26)

⚠ BREAKING CHANGES

  • refactor v1 internal state and options logic (#780)
  • refactor v7 internal state and options logic, fixes #764 (#779)
  • Port to TypeScript, closes #762 (#763)
  • update node support matrix (only support node 16-20) (#750)

Features

Bug Fixes

  • missing v7 expectations in browser spec (#751) (f54a866)
  • refactor v1 internal state and options logic (#780) (031b3d3)
  • refactor v7 internal state and options logic, fixes #764 (#779) (9dbd1cd)
  • remove v4 options default assignment preventing native.randomUUID from being used (#786) (afe6232), closes #763
  • seq_hi shift for byte 6 (#775) (1d532ca)
  • tsconfig module type (#778) (7eff835)
Commits

Updates vite from 5.4.10 to 6.0.6

Release notes

Sourced from vite's releases.

v6.0.6

Please refer to CHANGELOG.md for details.

v6.0.5

Please refer to CHANGELOG.md for details.

v6.0.4

Please refer to CHANGELOG.md for details.

v6.0.3

Please refer to CHANGELOG.md for details.

v6.0.2

Please refer to CHANGELOG.md for details.

create-vite@6.0.1

Please refer to CHANGELOG.md for details.

v6.0.1

Please refer to CHANGELOG.md for details.

create-vite@6.0.0

Please refer to CHANGELOG.md for details.

plugin-legacy@6.0.0

Please refer to CHANGELOG.md for details.

v6.0.0

Please refer to CHANGELOG.md for details.

v6.0.0-beta.10

Please refer to CHANGELOG.md for details.

v6.0.0-beta.9

Please refer to CHANGELOG.md for details.

v6.0.0-beta.8

Please refer to CHANGELOG.md for details.

v6.0.0-beta.7

Please refer to CHANGELOG.md for details.

v6.0.0-beta.6

Please refer to CHANGELOG.md for details.

v6.0.0-beta.5

Please refer to CHANGELOG.md for details.

v6.0.0-beta.4

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

6.0.6 (2024-12-26)

6.0.5 (2024-12-20)

6.0.4 (2024-12-19)

6.0.3 (2024-12-05)

... (truncated)

Commits
  • 5c2b4a0 release: v6.0.6
  • 9290d85 fix(css): show correct error when unknown placeholder is used for CSS modules...
  • afff05c fix(css): resolve style tags in HTML files correctly for lightningcss (#19001)
  • eb06ec3 chore: fix typo in comment (#19067)
  • 1aa434e fix(ssrTransform): preserve line offset when transforming imports (#19004)
  • 902567a fix(resolve): handle package.json with UTF-8 BOM (#19000)
  • 9f10261 fix: replace runner-side path normalization with fetchModule-side resolve (...
  • 8bfe247 revert: unpin esbuild version (#19043)
  • 0e9e81f chore: update comment about build.target (#19047)
  • a1f4b46 test(ssr): test virtual module with query (#19044)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen wil...

Description has been truncated

Bumps the major group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@stellar/stellar-sdk](https://github.com/stellar/js-stellar-sdk) | `12.3.0` | `13.1.0` |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `3.1.2` | `5.0.3` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `4.2.19` | `5.16.0` |
| [svelte-copy](https://github.com/ghostdevv/svelte-copy) | `1.4.2` | `2.0.0` |
| [uuid](https://github.com/uuidjs/uuid) | `10.0.0` | `11.0.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.10` | `6.0.6` |



Updates `@stellar/stellar-sdk` from 12.3.0 to 13.1.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.3.0...v13.1.0)

Updates `@sveltejs/vite-plugin-svelte` from 3.1.2 to 5.0.3
- [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@5.0.3/packages/vite-plugin-svelte)

Updates `svelte` from 4.2.19 to 5.16.0
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.16.0/packages/svelte)

Updates `svelte-copy` from 1.4.2 to 2.0.0
- [Release notes](https://github.com/ghostdevv/svelte-copy/releases)
- [Commits](ghostdevv/svelte-copy@v1.4.2...v2.0.0)

Updates `uuid` from 10.0.0 to 11.0.3
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v10.0.0...v11.0.3)

Updates `vite` from 5.4.10 to 6.0.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.6/packages/vite)

---
updated-dependencies:
- dependency-name: "@stellar/stellar-sdk"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@sveltejs/vite-plugin-svelte"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: svelte
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: svelte-copy
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: uuid
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 29, 2024
Copy link

cloudflare-workers-and-pages bot commented Dec 29, 2024

Deploying basicpay with  Cloudflare Pages  Cloudflare Pages

Latest commit: 837639c
Status: ✅  Deploy successful!
Preview URL: https://59bdfd01.basicpay.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-majo-5qsg.basicpay.pages.dev

View logs

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants