Shopify / vscode-shopify-ruby

An opinionated and auto-configured set of extensions for Ruby development
MIT License
176 stars 13 forks source link

Bump the minor-and-patch group with 3 updates #617

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the minor-and-patch group with 3 updates: @babel/core, @vscode/vsce and prettier.

Updates @babel/core from 7.24.7 to 7.24.9

Release notes

Sourced from @​babel/core's releases.

v7.24.9 (2024-07-15)

:bug: Bug Fix

:nail_care: Polish

  • babel-generator, babel-plugin-transform-optional-chaining

:house: Internal

  • babel-helper-module-transforms

Committers: 5

v7.24.8 (2024-07-11)

Thanks @​H0onnn, @​jkup and @​SreeXD for your first pull requests!

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.24.9 (2024-07-15)

:bug: Bug Fix

:nail_care: Polish

  • babel-generator, babel-plugin-transform-optional-chaining

:house: Internal

  • babel-helper-module-transforms

v7.24.8 (2024-07-11)

:eyeglasses: Spec Compliance

:bug: Bug Fix

:nail_care: Polish

Commits


Updates @vscode/vsce from 2.29.0 to 2.30.0

Release notes

Sourced from @​vscode/vsce's releases.

v2.30.0

Changes:

Feature Requests:

  • #1009: Azure - create a custom chained token credential to place the AzureCLICredential prior to the ManagedIdentityCredential

Others:

  • #1011: Validate publisher on package
  • #1013: Print packaged files/folders

This list of changes was auto generated.

v2.29.1-2

Changes:

  • #1011: Validate publisher on package

This list of changes was auto generated.

v2.29.1-1

Changes:

  • #1013: Print packaged files/folders

This list of changes was auto generated.

v2.29.1-0

Changes:

Feature Requests:

  • #1009: Azure - create a custom chained token credential to place the AzureCLICredential prior to the ManagedIdentityCredential

This list of changes was auto generated.

Commits
  • 7dc3477 Merge pull request #1011 from microsoft/benibenj/legitimate-impala
  • f06c324 Merge pull request #1013 from microsoft/benibenj/psychiatric-orangutan
  • 53d517e Print packaged files
  • 67f7374 validate publisher on package
  • b6ccc05 Azure - create a custom chained token credential to place the AzureCLICredent...
  • See full diff in compare view


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


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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions