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 yarn group with 6 updates #1095

Merged
merged 1 commit into from
Jul 17, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Bumps the yarn group with 6 updates:

Package From To
prettier 3.3.2 3.3.3
@polkadot/api-cli 0.56.14 0.57.1
@polkadot/api 12.1.1 12.2.1
@vitest/expect 2.0.0 2.0.3
viem 2.17.3 2.17.4
vitest 2.0.0 2.0.3

Updates prettier from 3.3.2 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates @polkadot/api-cli from 0.56.14 to 0.57.1

Release notes

Sourced from @​polkadot/api-cli's releases.

v0.57.1

Changes:

  • Upgrade polkadot/api to 12.2.1
  • Upgrade polkadot/common to 13.0.2
  • Bump yarn to 4.3.1
Changelog

Sourced from @​polkadot/api-cli's changelog.

0.57.1 July 13, 2024

Changes:

  • Upgrade polkadot/api to 12.2.1
  • Upgrade polkadot/common to 13.0.2
  • Bump yarn to 4.3.1
Commits

Updates @polkadot/api from 12.1.1 to 12.2.1

Release notes

Sourced from @​polkadot/api's releases.

v12.2.1

Changes:

  • Bump polkadot/common to 13.0.2
    • This contains the latest changes to the Ledger interface in @polkadot/hw-ledger. For more info please see (13.0.1)
  • Bump Substrate Metadata to Latest
    • This includes additions and removals to the api's type augmentation. For more info please see (#5936)
  • Update Polkadot 1002006 types-known
  • Bump yarn to 4.3.1
Changelog

Sourced from @​polkadot/api's changelog.

12.2.1 July 13, 2024

Changes:

  • Bump polkadot/common to 13.0.2
    • This contains the latest changes to the Ledger interface in @polkadot/hw-ledger. For more info please see (13.0.1)
  • Bump Substrate Metadata to Latest
    • This includes additions and removals to the api's type augmentation. For more info please see (#5936)
  • Update Polkadot 1002006 types-known
  • Bump yarn to 4.3.1
Commits

Updates @vitest/expect from 2.0.0 to 2.0.3

Release notes

Sourced from @​vitest/expect's releases.

v2.0.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v2.0.1

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 81b8d67 chore: release v2.0.3
  • 99a12ae chore: release v2.0.2
  • 80a43d5 fix(browser): inline pretty-format and replace picocolors with tinyrainbow (#...
  • 16eb6c8 chore: release v2.0.1
  • See full diff in compare view

Updates viem from 2.17.3 to 2.17.4

Release notes

Sourced from viem's releases.

viem@2.17.4

Patch Changes

Commits

Updates vitest from 2.0.0 to 2.0.3

Release notes

Sourced from vitest's releases.

v2.0.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v2.0.1

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 81b8d67 chore: release v2.0.3
  • 09dc75c chore(deps): update dependency @​edge-runtime/vm to v4 (#6047)
  • f851982 fix: --inspect-brk stop on Windows (#6110)
  • 99a12ae chore: release v2.0.2
  • 80a43d5 fix(browser): inline pretty-format and replace picocolors with tinyrainbow (#...
  • 7012f8c docs: add env documentation (#6063)
  • 16eb6c8 chore: release v2.0.1
  • 4b03e72 fix(browser): correctly inherit browser config in a workspace (#6054)
  • 4d5597d fix(vitest): print only running files, not every file (#6052)
  • See full diff in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
prettier [>= 3.0.a, < 3.1]

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 yarn group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.3.3` |
| [@polkadot/api-cli](https://github.com/polkadot-js/tools/tree/HEAD/packages/api-cli) | `0.56.14` | `0.57.1` |
| [@polkadot/api](https://github.com/polkadot-js/api/tree/HEAD/packages/api) | `12.1.1` | `12.2.1` |
| [@vitest/expect](https://github.com/vitest-dev/vitest/tree/HEAD/packages/expect) | `2.0.0` | `2.0.3` |
| [viem](https://github.com/wevm/viem) | `2.17.3` | `2.17.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.0` | `2.0.3` |


Updates `prettier` from 3.3.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.3.2...3.3.3)

Updates `@polkadot/api-cli` from 0.56.14 to 0.57.1
- [Release notes](https://github.com/polkadot-js/tools/releases)
- [Changelog](https://github.com/polkadot-js/tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/tools/commits/v0.57.1/packages/api-cli)

Updates `@polkadot/api` from 12.1.1 to 12.2.1
- [Release notes](https://github.com/polkadot-js/api/releases)
- [Changelog](https://github.com/polkadot-js/api/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/api/commits/v12.2.1/packages/api)

Updates `@vitest/expect` from 2.0.0 to 2.0.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.3/packages/expect)

Updates `viem` from 2.17.3 to 2.17.4
- [Release notes](https://github.com/wevm/viem/releases)
- [Commits](https://github.com/wevm/viem/compare/viem@2.17.3...viem@2.17.4)

Updates `vitest` from 2.0.0 to 2.0.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.3/packages/vitest)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: "@polkadot/api-cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: "@polkadot/api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: yarn
- dependency-name: "@vitest/expect"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: viem
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: yarn
- dependency-name: vitest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 15, 2024
@dmitrylavrenov dmitrylavrenov added this pull request to the merge queue Jul 17, 2024
Merged via the queue into master with commit 641f4ab Jul 17, 2024
21 checks passed
@dmitrylavrenov dmitrylavrenov deleted the dependabot/npm_and_yarn/yarn-a2903cd772 branch July 17, 2024 10:36
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
Development

Successfully merging this pull request may close these issues.

1 participant