Skip to content

build(deps-dev): bump the minor-js-updates group across 1 directory with 5 updates - #621

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-js-updates-1e0f377b19
Closed

build(deps-dev): bump the minor-js-updates group across 1 directory with 5 updates#621
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-js-updates-1e0f377b19

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-js-updates group with 5 updates in the / directory:

Package From To
@myparcel-dev/sdk 5.1.0 5.1.2
prettier 3.9.5 3.9.6
postcss 8.5.19 8.5.25
sass 1.101.0 1.102.0
vue-tsc 3.3.7 3.3.9

Updates @myparcel-dev/sdk from 5.1.0 to 5.1.2

Release notes

Sourced from @​myparcel-dev/sdk's releases.

v5.1.2

5.1.2 (2026-07-17)

v5.1.1

5.1.1 (2026-07-17)

Changelog

Sourced from @​myparcel-dev/sdk's changelog.

5.1.2 (2026-07-17)

5.1.1 (2026-07-17)

Commits
  • 9fc5f67 chore(release): 5.1.2 [skip ci]
  • 17c5831 build(deps): bump lodash-es from 4.17.23 to 4.18.1 (#204)
  • 29bf2f7 build(deps): bump js-yaml from 4.1.1 to 4.3.0 (#213)
  • 293f8a8 build(deps): bump postcss from 8.5.8 to 8.5.19 (#215)
  • e636ee5 build(deps): bump flatted from 3.4.1 to 3.4.2 (#217)
  • 698aa1a build(deps): bump picomatch from 2.3.1 to 2.3.2 (#218)
  • 26b970e build(deps): bump myparcelnl/actions/.github/workflows/notify-on-failure.yml ...
  • cfcdfae build(deps): bump actions/cache from 4 to 6 (#212)
  • 3face12 build(deps): bump codecov/codecov-action from 5 to 7 (#209)
  • 76c9179 build(deps): bump actions/checkout from 6 to 7 (#210)
  • Additional commits viewable in compare view

Updates prettier from 3.9.5 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates postcss from 8.5.19 to 8.5.25

Release notes

Sourced from postcss's releases.

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

Changelog

Sourced from postcss's changelog.

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

Commits

Updates sass from 1.101.0 to 1.102.0

Release notes

Sourced from sass's releases.

Dart Sass 1.102.0

To install Sass 1.102.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.7

To install Sass 1.101.7, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.6

To install Sass 1.101.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.5

To install Sass 1.101.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.101.4

To install Sass 1.101.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.102.0

  • Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.

1.101.7

  • No user-visible changes.

1.101.6

  • No user-visible changes.

1.101.5

  • No user-visible changes.

1.101.4

  • Avoid emitting rgb() or rgba() functions with non-percent decimal channels. Older browsers only support integer values or (potentially decimal) percentages for these functions, so in order to preserve backwards-compatibility while retaining full precision for modern browsers, legacy colors that contain at least one non-integer channel will now use percentages for their channels (for example, rgb(0%, 100%, 50%) rather than rgb(0, 255, 127.5)).

  • Fix a bug where the values of plain-CSS if() expressions were emitted using their meta.inspect() format rather than their CSS serialization format.

1.101.3

  • No user-visible changes.

1.101.2

  • Fix a bug where the deprecation warning for vendor-prefixed expression() functions would incorrectly indicate whether or not the function would be invalid Sass in Dart Sass 2.0.0.

1.101.1

  • Sass stack trace entries are now always either absolute URLs, absolute paths, or paths relative to the current working directory. Previously, if a stylesheet was loaded using a relative URL (as from a load path), that relative URL was listed even if it couldn't be resolved relative to the current working directory. However, this created potential ambiguities, so this behavior has been removed.

Command Line Interface

... (truncated)

Commits

Updates vue-tsc from 3.3.7 to 3.3.9

Release notes

Sourced from vue-tsc's releases.

v3.3.9

language-core

language-service

  • fix: preserve trailing modifiers when completing in the middle of a directive (#6133) - Thanks to @​lazerg!
  • fix: only replace current directive modifier on completion - Thanks to @​KazariEX!
  • fix: preserve current modifier when filtering completion duplicates - Thanks to @​KazariEX!

component-meta

workspace

  • feat: migrate build and tests to typescript-native-bridge (#6129)

Our Sponsors ❤️

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.3.9 (2026-07-31)

component-meta

language-core

language-service

  • fix: preserve trailing modifiers when completing in the middle of a directive (#6133) - Thanks to @​lazerg!
  • fix: only replace current directive modifier on completion - Thanks to @​KazariEX!
  • fix: preserve current modifier when filtering completion duplicates - Thanks to @​KazariEX!

workspace

  • feat: migrate build and tests to typescript-native-bridge (#6129)

3.3.8 (2026-07-22)

language-core

workspace

  • chore: upgrade to TypeScript 7 and support @typescript/typescript6 (#6123) - Thanks to @​WaldemarEnns!
Commits

@dependabot dependabot Bot added dependencies Dependency updates javascript labels Jul 22, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 22, 2026 21:46
@dependabot dependabot Bot added dependencies Dependency updates javascript labels Jul 22, 2026
@codecov

codecov Bot commented Jul 22, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 51.96%. Comparing base (0819366) to head (8c11497).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff            @@
##               main     #621   +/-   ##
=========================================
  Coverage     51.96%   51.96%           
  Complexity      723      723           
=========================================
  Files           157      157           
  Lines          4295     4295           
  Branches         57       57           
=========================================
  Hits           2232     2232           
  Misses         2006     2006           
  Partials         57       57           
Flag Coverage Δ
backend 79.54% <ø> (ø)
frontend 2.28% <ø> (ø)
php7.4 79.54% <ø> (ø)
php8.0 79.50% <ø> (ø)
php8.1 79.44% <ø> (ø)
php8.2 79.44% <ø> (ø)
php8.3 79.44% <ø> (ø)
php8.4 79.44% <ø> (ø)
php8.5 79.44% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@myparcel-bot

myparcel-bot Bot commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

✅ Build successful!

You can find a link to the downloadable artifact below.

Name Link
Commit 8c11497
Logs https://github.com/myparcelnl/prestashop/actions/runs/31097623194
Download https://github.com/myparcelnl/prestashop/suites/84352629647/artifacts/8966166269

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/minor-js-updates-1e0f377b19 branch 5 times, most recently from bbd2b0b to 8c11497 Compare August 6, 2026 11:31
…ith 5 updates

Bumps the minor-js-updates group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@myparcel-dev/sdk](https://github.com/myparcelnl/js-sdk) | `5.1.0` | `5.1.2` |
| [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` |
| [postcss](https://github.com/postcss/postcss) | `8.5.19` | `8.5.25` |
| [sass](https://github.com/sass/dart-sass) | `1.101.0` | `1.102.0` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.7` | `3.3.9` |



Updates `@myparcel-dev/sdk` from 5.1.0 to 5.1.2
- [Release notes](https://github.com/myparcelnl/js-sdk/releases)
- [Changelog](https://github.com/myparcelnl/js-sdk/blob/main/CHANGELOG.md)
- [Commits](myparcelnl/js-sdk@v5.1.0...v5.1.2)

Updates `prettier` from 3.9.5 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.5...3.9.6)

Updates `postcss` from 8.5.19 to 8.5.25
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.19...8.5.25)

Updates `sass` from 1.101.0 to 1.102.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.101.0...1.102.0)

Updates `vue-tsc` from 3.3.7 to 3.3.9
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.3.9/packages/tsc)

---
updated-dependencies:
- dependency-name: "@myparcel-dev/sdk"
  dependency-version: 5.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-js-updates
- dependency-name: postcss
  dependency-version: 8.5.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-js-updates
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-js-updates
- dependency-name: sass
  dependency-version: 1.101.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-js-updates
- dependency-name: vue-tsc
  dependency-version: 3.3.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-js-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/minor-js-updates-1e0f377b19 branch from 8c11497 to e853097 Compare August 6, 2026 21:46
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 10, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/minor-js-updates-1e0f377b19 branch August 10, 2026 21:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates javascript

Development

Successfully merging this pull request may close these issues.

0 participants