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 with 5 updates #36

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 Oct 13, 2024

Bumps the minor-and-patch group with 5 updates:

Package From To
@sveltejs/kit 2.6.2 2.7.0
@types/stellar-sdk 0.11.1 0.15.1
daisyui 4.12.12 4.12.13
svelte-check 4.0.4 4.0.5
typescript 5.6.2 5.6.3

Updates @sveltejs/kit from 2.6.2 to 2.7.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.7.0

Minor Changes

  • feat: update service worker when new version is detected (#12448)

Patch Changes

  • fix: correctly handle relative paths when fetching assets on the server (#12113)

  • fix: decode non ASCII anchor hashes when scrolling into view (#12699)

  • fix: page response missing CSP and Link headers when return promise in load (#12418)

@​sveltejs/kit@​2.6.4

Patch Changes

  • fix: only preload links that have a different URL than the current page (#12773)

  • fix: revert change to replace version in generateBundle (#12779)

  • fix: catch stack trace fixing errors thrown in web containers (#12775)

  • fix: use absolute links in JSDoc comments (#12772)

@​sveltejs/kit@​2.6.3

Patch Changes

  • fix: ensure a changing version doesn't affect the hashes for chunks without any actual code changes (#12700)

  • fix: prevent crash when logging URL search params in a server load function (#12763)

  • chore: revert update dependency cookie to ^0.7.0 (#12767)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.7.0

Minor Changes

  • feat: update service worker when new version is detected (#12448)

Patch Changes

  • fix: correctly handle relative paths when fetching assets on the server (#12113)

  • fix: decode non ASCII anchor hashes when scrolling into view (#12699)

  • fix: page response missing CSP and Link headers when return promise in load (#12418)

2.6.4

Patch Changes

  • fix: only preload links that have a different URL than the current page (#12773)

  • fix: revert change to replace version in generateBundle (#12779)

  • fix: catch stack trace fixing errors thrown in web containers (#12775)

  • fix: use absolute links in JSDoc comments (#12772)

2.6.3

Patch Changes

  • fix: ensure a changing version doesn't affect the hashes for chunks without any actual code changes (#12700)

  • fix: prevent crash when logging URL search params in a server load function (#12763)

  • chore: revert update dependency cookie to ^0.7.0 (#12767)

Commits
  • f3b638e Version Packages (#12789)
  • df48fc6 fix: handle relative assets paths in server fetch correctly (#12113)
  • 5780deb fix: decode hash when clicking on same hash to correctly scroll on non ascii ...
  • 989949a docs: add report uri directive to CSP example (#12788)
  • 8aa95b4 feat: update service worker when new version is detected (#12448)
  • 6f9aefd fix: page response missing CSP and Link headers when return promise in load...
  • 4c1e3c0 chore: add code comment explaining empty catch block (#12780)
  • 16568c2 Version Packages (#12777)
  • 571f731 fix: only preload link if the URL differs from current page (#12773)
  • 5f1de9f chore: add test for #12763 (#12774)
  • Additional commits viewable in compare view

Updates @types/stellar-sdk from 0.11.1 to 0.15.1

Release notes

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

v0.15.1

  • Fix links to docs in comments (Thanks @​klakovsky!)
  • Move Typescript definitions from DefinitelyTyped into this package, and update a lot of endpoints.

v0.15.0

  • Breaking change: stellar-sdk no longer ships with an EventSource polyfill. If you plan to support IE11 / Edge, please use event-source-polyfill to set window.EventSource.
  • Upgrade stellar-base to a version that doesn't use the crypto library, fixing a bug with Angular 6
  • Add Server.prototype.fetchTimebounds, a helper function that helps you set the timebounds property when initting TransactionBuilder. It bases the timebounds on server time rather than local time.

v0.14.0

  • Updated some out-of-date dependencies
  • Update documentation to explicitly set fees
  • Add Server.prototype.fetchBaseFee, which devs can use to fetch the current base fee; we plan to add more functions to help suggest fees in future releases
  • Add includeFailed to OperationCallBuilder for including failed transactions in calls
  • Add operationFeeStats to Server for the new fee stats endpoint

v0.13.0

  • Add prettier and eslint (replacing jshint)
  • Add pre-commit hook for running prettier
  • Add Airbnb's eslint rules
  • Fix code with linter issues
  • Fix jsdoc script
  • Travis changes: bump Node version, and add yarn caching
  • Fix bug with validating offsets in trade aggregation

v0.12.0

  • Update stellar-base to 0.10.0
  • Breaking change: Added TransactionBuilder.setTimeout method that sets timebounds.max_time on a transaction. Because of the distributed nature of the Stellar network it is possible that the status of your transaction will be determined after a long time if the network is highly congested. If you want to be sure to receive the status of the transaction within a given period you should set the TimeBounds with maxTime on the transaction (this is what setTimeout does internally; if there's minTime set but no maxTime it will be added). Call to TransactionBuilder.setTimeout is required if Transaction does not have max_time set. If you don't want to set timeout, use TimeoutInfinite. In general you should set TimeoutInfinite only in smart contracts. Please check TransactionBuilder.setTimeout docs for more information.
  • Breaking change: Add offset parameter to TradeAggregationCallBuilder to reflect new changes to the endpoint in horizon-0.15.0
  • Fixed decoding empty homeDomain.
Changelog

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

v0.15.1

  • Add Typescript type definitions (imported from DefinitelyTyped).
  • Make these changes to those definitions:
    • Add definitions for Server.fetchBaseFee and Server.fetchTimebounds
    • CallBuilder: No long always returns CollectionPaged results. Interfaces that extend CallBuilder should specify whether their response is a collection or not
    • CallBuilder: Add inflation_destination and last_modified_ledger property
    • OfferRecord: Fix the returned properties
    • TradeRecord: Fix the returned properties
    • TradesCallBuilder: Add forAccount method
    • TransactionCallBuilder: Add includeFailed method
    • Horizon.BalanceLineNative/Asset: Add buying_liabilities / selling_liabilities properties
  • Fix documentation links.

v0.15.0

  • Breaking change: stellar-sdk no longer ships with an EventSource polyfill. If you plan to support IE11 / Edge, please use event-source-polyfill to set window.EventSource.
  • Upgrade stellar-base to a version that doesn't use the crypto library, fixing a bug with Angular 6
  • Add Server.prototype.fetchTimebounds, a helper function that helps you set the timebounds property when initting TransactionBuilder. It bases the timebounds on server time rather than local time.

v0.14.0

  • Updated some out-of-date dependencies
  • Update documentation to explicitly set fees
  • Add Server.prototype.fetchBaseFee, which devs can use to fetch the current base fee; we plan to add more functions to help suggest fees in future releases
  • Add includeFailed to OperationCallBuilder for including failed transactions in calls
  • Add operationFeeStats to Server for the new fee stats endpoint
  • After submitting a transaction with a manageOffer operation, return a new property offerResults, which explains what happened to the offer. See Server.prototype.submitTransaction for documentation.

0.13.0

  • Update stellar-base to 0.11.0
  • Added ESLint and Prettier to enforce code style
  • Upgraded dependencies, including Babel to 6
  • Bump local node version to 6.14.0

... (truncated)

Commits

Updates daisyui from 4.12.12 to 4.12.13

Release notes

Sourced from daisyui's releases.

v4.12.13

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

💚 Thank you for using daisyUI!

Changelog

Sourced from daisyui's changelog.

4.12.13 (2024-10-09)

Bug Fixes

Commits

Updates svelte-check from 4.0.4 to 4.0.5

Release notes

Sourced from svelte-check's releases.

svelte-check-4.0.5

  • fix: include named exports in svelte 5 type (#2528)
Commits
  • 156bd7d fix: correctly position quick fixes in instance and module (#2531)
  • a167a93 feat: provide Svelte 5 component migration command
  • b12afd1 fix: include named exports in svelte 5 type (#2528)
  • See full diff in compare view

Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff 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 will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@sveltejs/kit](https:/sveltejs/kit/tree/HEAD/packages/kit) | `2.6.2` | `2.7.0` |
| [@types/stellar-sdk](https:/stellar/js-stellar-sdk) | `0.11.1` | `0.15.1` |
| [daisyui](https:/saadeghi/daisyui) | `4.12.12` | `4.12.13` |
| [svelte-check](https:/sveltejs/language-tools) | `4.0.4` | `4.0.5` |
| [typescript](https:/microsoft/TypeScript) | `5.6.2` | `5.6.3` |


Updates `@sveltejs/kit` from 2.6.2 to 2.7.0
- [Release notes](https:/sveltejs/kit/releases)
- [Changelog](https:/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https:/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@types/stellar-sdk` from 0.11.1 to 0.15.1
- [Release notes](https:/stellar/js-stellar-sdk/releases)
- [Changelog](https:/stellar/js-stellar-sdk/blob/master/CHANGELOG.md)
- [Commits](https:/stellar/js-stellar-sdk/commits/v0.15.1)

Updates `daisyui` from 4.12.12 to 4.12.13
- [Release notes](https:/saadeghi/daisyui/releases)
- [Changelog](https:/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](saadeghi/daisyui@v4.12.12...v4.12.13)

Updates `svelte-check` from 4.0.4 to 4.0.5
- [Release notes](https:/sveltejs/language-tools/releases)
- [Commits](sveltejs/language-tools@svelte-check-4.0.4...svelte-check-4.0.5)

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

---
updated-dependencies:
- dependency-name: "@sveltejs/kit"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/stellar-sdk"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: daisyui
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: svelte-check
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 13, 2024
Copy link

cloudflare-workers-and-pages bot commented Oct 13, 2024

Deploying basicpay with  Cloudflare Pages  Cloudflare Pages

Latest commit: 1bdc172
Status: ✅  Deploy successful!
Preview URL: https://251c2af5.basicpay.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-mino-s99u.basicpay.pages.dev

View logs

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants