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

Update all non-major dependencies #5268

Merged
merged 1 commit into from
Aug 1, 2024
Merged

Update all non-major dependencies #5268

merged 1 commit into from
Aug 1, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@percy/cli (source) 1.28.9 -> 1.29.0 age adoption passing confidence devDependencies minor
actions/setup-node v4.0.2 -> v4.0.3 age adoption passing confidence action patch
actions/setup-python v5.1.0 -> v5.1.1 age adoption passing confidence action patch
cypress (source) 13.13.0 -> 13.13.2 age adoption passing confidence devDependencies patch
postcss (source) 8.4.39 -> 8.4.40 age adoption passing confidence devDependencies patch
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
sass 1.77.6 -> 1.77.8 age adoption passing confidence devDependencies patch
stylelint (source) 16.6.1 -> 16.8.1 age adoption passing confidence devDependencies minor
stylelint-config-recommended-scss 14.0.0 -> 14.1.0 age adoption passing confidence devDependencies minor
stylelint-prettier 5.0.0 -> 5.0.2 age adoption passing confidence devDependencies patch
yaml (source) 2.4.5 -> 2.5.0 age adoption passing confidence devDependencies minor

Release Notes

percy/cli (@​percy/cli)

v1.29.0

Compare Source

What's Changed

New Contributors

Full Changelog: percy/cli@v1.28.9...v1.29.0

actions/setup-node (actions/setup-node)

v4.0.3

Compare Source

actions/setup-python (actions/setup-python)

v5.1.1

Compare Source

What's Changed
Bug fixes:
Documentation changes:
Dependency updates:
New Contributors

Full Changelog: actions/setup-python@v5...v5.1.1

cypress-io/cypress (cypress)

v13.13.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-2

v13.13.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-13-1

postcss/postcss (postcss)

v8.4.40

Compare Source

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).
prettier/prettier (prettier)

v3.3.3

Compare Source

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
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged 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:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

sass/dart-sass (sass)

v1.77.8

Compare Source

  • No user-visible changes.

v1.77.7

Compare Source

  • Declarations that appear after nested rules are deprecated, because the
    semantics Sass has historically used are different from the semantics
    specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown
    at-rule values was being preserved in the CSS output, leading to potentially
    invalid CSS. It's now properly parsed as a silent comment and omitted from the
    CSS output.

stylelint/stylelint (stylelint)

v16.8.1

Compare Source

v16.8.0

Compare Source

v16.7.0

Compare Source

stylelint-scss/stylelint-config-recommended-scss (stylelint-config-recommended-scss)

v14.1.0

Compare Source

  • Changed: replaced deprecated scss/at-import-partial-extension rule with scss/load-partial-extension rule.
  • Changed: updated to stylelint-scss@6.4.0.
prettier/stylelint-prettier (stylelint-prettier)

v5.0.2

Compare Source

Fix case where less files were incorrectly mangled when using v5.0.1 (#​363)

v5.0.1

Compare Source

Fix case where when autofixing multiple other rules in addition to prettier, the other autofixes would be thrown away (#​360)

eemeli/yaml (yaml)

v2.5.0

Compare Source

  • Add --indent option to CLI tool (#​559, with thanks to @​danielbayley)
  • Require newline in all cases for props on block sequence (#​557)
  • Always reset indentation in lexer on ... (#​558)
  • Ignore minContentWidth if greater than lineWidth (#​562)
  • Drop unused Collection.maxFlowStringSingleLineLength (#​522, #​421)

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@webteam-app
Copy link

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0eb44e5 to 50f62ee Compare August 1, 2024 14:26
@jmuzina jmuzina added Review: Percy needed This PR needs a review of Percy for visual regressions Review: QA +1 Review: Code needed dependencies Pull requests that update a dependency file labels Aug 1, 2024
@jmuzina
Copy link
Member

jmuzina commented Aug 1, 2024

Heads up: this version of sass gives deprecation warnings for mixed declarations, as seen in #5264 .
image

This shouldn't be an issue yet, just something to be aware of

@jmuzina
Copy link
Member

jmuzina commented Aug 1, 2024

One thing that I'll note about dependency updates - it's hard to test them with Percy. Even the Percy CLI itself is updated here, but that is not being tested by Percy because package.json is not checked out by Percy jobs. So I run yarn clean && yarn install && npx percy snapshot snapshots.js -d locally to verify Percy works

@jmuzina jmuzina added Review: Percy +1 and removed Review: Percy needed This PR needs a review of Percy for visual regressions labels Aug 1, 2024
@bartaz
Copy link
Member

bartaz commented Aug 1, 2024

This shouldn't be an issue yet, just something to be aware of

Oh, @minkyngkm mentioned noticing this when building as well (I guess it was not reported as Vanilla issue yet). Would be good to track so we don't forget.

@jmuzina
Copy link
Member

jmuzina commented Aug 1, 2024

Oh, @minkyngkm mentioned noticing this when building as well (I guess it was not reported as Vanilla issue yet). Would be good to track so we don't forget.

Min already made an issue: #5264 !

@jmuzina jmuzina merged commit fce60f1 into main Aug 1, 2024
16 checks passed
@jmuzina jmuzina deleted the renovate/all-minor-patch branch August 1, 2024 15:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants