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

fix(deps): update all non-major dependencies #808

Merged
merged 2 commits into from
Sep 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@hpcc-js/wasm (source) 2.16.2 -> 2.21.0 age adoption passing confidence dependencies minor
actions/setup-node v4.0.2 -> v4.0.3 age adoption passing confidence action patch
axe-core (source) 4.9.1 -> 4.10.0 age adoption passing confidence devDependencies minor
fholzer/nginx-brotli v1.24.0 -> v1.26.2 age adoption passing confidence final minor
github/codeql-action v3.25.10 -> v3.26.6 age adoption passing confidence action minor
node (source) 20.15.0 -> 20.17.0 age adoption passing confidence minor
postcss (source) 8.4.38 -> 8.4.44 age adoption passing confidence devDependencies patch
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
rimraf 5.0.7 -> 5.0.10 age adoption passing confidence devDependencies patch
start-server-and-test 2.0.4 -> 2.0.5 age adoption passing confidence devDependencies patch
stylelint (source) 16.6.1 -> 16.9.0 age adoption passing confidence devDependencies minor
stylelint-config-recommended-scss 14.0.0 -> 14.1.0 age adoption passing confidence devDependencies minor
stylelint-declaration-strict-value 1.10.4 -> 1.10.6 age adoption passing confidence devDependencies patch
stylelint-scss 6.3.2 -> 6.5.1 age adoption passing confidence devDependencies minor

Release Notes

hpcc-systems/hpcc-js-wasm (@​hpcc-js/wasm)

v2.21.0

Compare Source

v2.20.0

Compare Source

v2.19.0

Compare Source

v2.18.2

Compare Source

v2.18.1

Compare Source

v2.18.0

Compare Source

Features
2.17.1 (2024-06-26)
Bug Fixes
  • Exclude sourcemaps from node_modules (a7772b3)
  • vitepress failing to build docs (d179a54)

v2.17.1

Compare Source

v2.17.0

Compare Source

Features
2.16.2 (2024-04-29)
2.16.1 (2024-03-28)
actions/setup-node (actions/setup-node)

v4.0.3

Compare Source

dequelabs/axe-core (axe-core)

v4.10.0

Compare Source

Features
Bug Fixes
4.9.1 (2024-05-06)
Bug Fixes
  • Prevent errors when loading axe in a page with prototype.js
  • aria-allowed-attr: allow meter role allowed aria-* attributes on meter element (#​4435) (7ac6392)
  • aria-allowed-role: add gridcell, separator, slider and treeitem to allowed roles of button element (#​4398) (4788bf8)
  • aria-roles: correct abstract roles (types) for aria-roles(#​4421)
  • aria-valid-attr-value: aria-controls & aria-haspopup incomplete (#​4418)
  • fix building axe-core translation files with region locales (#​4396) (5c318f3), closes #​4388
  • invalidrole: allow upper and mixed case role names (#​4358) (105016c), closes #​2695
  • isVisibleOnScreen: account for position: absolute elements inside overflow container (#​4405) (2940f6e), closes #​4016
  • label-content-name-mismatch: better dismiss and wysiwyg symbolic text characters (#​4402)
  • region: Decorative images ignored by region rule (#​4412)
  • target-size: ignore descendant elements in shadow dom (#​4410) (6091367)
  • target-size: pass for element that has nearby elements that are obscured (#​4422) (3a90bb7), closes #​4387
github/codeql-action (github/codeql-action)

v3.26.6

Compare Source

v3.26.5

Compare Source

v3.26.4

Compare Source

v3.26.3

Compare Source

v3.26.2

Compare Source

v3.26.1

Compare Source

v3.26.0

Compare Source

v3.25.15

Compare Source

v3.25.14

Compare Source

v3.25.13

Compare Source

v3.25.12

Compare Source

v3.25.11

Compare Source

nodejs/node (node)

v20.17.0

Compare Source

v20.16.0

Compare Source

v20.15.1

Compare Source

postcss/postcss (postcss)

v8.4.44

Compare Source

  • Another way to fix markClean is not a function error.

v8.4.43

Compare Source

  • Fixed markClean is not a function error.

v8.4.42

Compare Source

  • Fixed CSS syntax error on long minified files (by @​varpstar).

v8.4.41

Compare Source

v8.4.40

Compare Source

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

v8.4.39

Compare Source

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.

isaacs/rimraf (rimraf)

v5.0.10

Compare Source

v5.0.9

Compare Source

v5.0.8

Compare Source

bahmutov/start-server-and-test (start-server-and-test)

v2.0.5

Compare Source

Bug Fixes
  • deps: update dependency debug to v4.3.6 (8ebb70b)
stylelint/stylelint (stylelint)

v16.9.0

Compare Source

  • Changed: secondaryOptions argument type of the Rule function (#​7950) (@​Mouvedia).
  • Fixed: color-function-notation reporting functions with less than 3 arguments (#​7948) (@​Mouvedia).
  • Fixed: declaration-property-value-no-unknown false positives/negatives (#​7944 & #​7957 & #​7956) (@​Mouvedia & @​sidverma32).
    • false positives: overflow, word-break, width
    • false negatives: anchor-name, field-sizing, text-box-edge, text-box-trim, text-spacing-trim, text-wrap, text-wrap-mode, text-wrap-style, view-timeline, view-timeline-axis, view-timeline-inset, view-timeline-name, view-transition-name
  • Fixed: keyframe-block-no-duplicate-selectors/keyframe-declaration-no-important/keyframe-selector-notation/no-unknown-animations false negatives for @-o-keyframes and @-ms-keyframes (#​7953) (@​Mouvedia).
  • Fixed: no-duplicate-selectors reported ranges (#​7938) (@​romainmenke).
  • Fixed: property-no-vendor-prefix report for -webkit-background-size (#​7940) (@​Mouvedia).
  • Fixed: selector-class-pattern reported ranges (#​7959) (@​Mouvedia).
  • Fixed: selector-no-qualifying-type reported ranges (#​7937) (@​romainmenke).
  • Fixed: honour Node.js --no-deprecation flag for rule deprecation warnings (#​7943) (@​Mouvedia).

v16.8.2

Compare Source

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 [email protected].
AndyOGo/stylelint-declaration-strict-value (stylelint-declaration-strict-value)

v1.10.6

Compare Source

Bug Fixes

v1.10.5

Compare Source

Bug Fixes
  • commit package-lock.json (a4043f5)
stylelint-scss/stylelint-scss (stylelint-scss)

v6.5.1

Compare Source

  • Fixed: function-quote-no-quoted-strings-inside fix broken autofix (#​1043).

Full Changelog: stylelint-scss/stylelint-scss@v6.5.0...v6.5.1

v6.5.0

Compare Source

  • Added: property-no-unknown add support for nested declarations (#​1024).
  • Added: declaration-property-value-no-unknown rule (#​1023).
  • Fixed: operator-no-unspaced fix false positives with comparison operators (#​1037).

Full Changelog: stylelint-scss/stylelint-scss@v6.4.1...v6.5.0

v6.4.1

Compare Source

  • Fixed: false positive for mixins in load-partial-extension (#​1021).

Full Changelog: stylelint-scss/stylelint-scss@v6.4.0...v6.4.1

v6.4.0

Compare Source

  • Added: load-partial-extension rule, and deprecated at-import-partial-extension rule (#​998).
  • Fixed: partial-no-import message to include more accurate rule name (#​1019).

Full Changelog: stylelint-scss/stylelint-scss@v6.3.2...v6.4.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot requested a review from a team as a code owner June 25, 2024 16:17
@renovate renovate bot added the dependencies Indicates a change to dependencies label Jun 25, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from a52195f to 150b4fa Compare June 26, 2024 13:21
@renovate renovate bot changed the title fix(deps): update dependency @hpcc-js/wasm to v2.17.0 fix(deps): update dependency @hpcc-js/wasm to v2.17.1 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from 150b4fa to 1dfb1af Compare June 28, 2024 16:41
@renovate renovate bot changed the title fix(deps): update dependency @hpcc-js/wasm to v2.17.1 fix(deps): update all non-major dependencies Jun 28, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 3 times, most recently from 33d49c5 to 82e7dc4 Compare July 6, 2024 04:56
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 7 times, most recently from 3d64c1d to d081cc7 Compare July 13, 2024 12:58
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 5 times, most recently from 879382d to 358ba20 Compare July 26, 2024 15:55
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 7 times, most recently from 3f21846 to f991050 Compare August 4, 2024 23:29
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 2 times, most recently from b463a22 to 18e94cc Compare August 6, 2024 13:57
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 4 times, most recently from de58e5f to 89c08f2 Compare August 8, 2024 13:45
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 5 times, most recently from eed825b to 2cff79e Compare August 19, 2024 18:04
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 5 times, most recently from e999c63 to 2fedece Compare August 28, 2024 06:22
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch 3 times, most recently from 6257695 to cd7a735 Compare August 31, 2024 21:49
@wass3r wass3r mentioned this pull request Sep 1, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from cd7a735 to 9afd9f8 Compare September 1, 2024 21:55
@renovate renovate bot force-pushed the renovate/all-minor-patch-digest-pin branch from 9afd9f8 to 6857ac3 Compare September 2, 2024 10:38
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link
Contributor Author

renovate bot commented Sep 3, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@wass3rw3rk wass3rw3rk merged commit 7d63d00 into main Sep 3, 2024
13 checks passed
@wass3rw3rk wass3rw3rk deleted the renovate/all-minor-patch-digest-pin branch September 3, 2024 20:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Indicates a change to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants