Skip to content

chore(deps-dev): bump the minor-deps-updates-main group across 1 directory with 3 updates #618

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 9, 2025

Bumps the minor-deps-updates-main group with 3 updates in the / directory: @stencil/core, rollup and terser.

Updates @stencil/core from 4.31.0 to 4.33.1

Release notes

Sourced from @​stencil/core's releases.

🥃 4.33.1 (2025-06-03)

Bug Fixes

  • runtime: conditionally apply global styles using supportsConstructableStylesheets flag (f4f815f)

🐿 4.33.0 (2025-06-02)

Bug Fixes

  • compiler: enable rollup interop helpers for cjs when import injection is enabled (#6272) (58d4ad0), closes #6270
  • mock-doc: onClick returns PointerEvent instead of MouseEvent (#6267) (dc4bd52), closes #6217

Features

  • global-styles: add global styles support to shadow DOM components (#6268) (33363d4)

Note: if you are using global styles this update may an impact on your Stencil shadow components, e.g. with shadow: true flag. Please validate visual correctness.

Thanks to @​igorwessel and @​MatteoFeltrin for their contributions! 🎉

🤖 4.32.0 (2025-05-28)

Features

  • compiler: Automatically add @​default JSDoc to @Prop() declarations (#6264) (9657927)
  • compiler: support maxParallelFileOps in RollupInputOptions (#6255) (71cf735)
  • hydrate: add serializeShadowroot to hydrateDocument (#6259) (47f8845)
  • hydrate: export style content from hydrated scoped components (#6260) (1bdcdb9)

Bug Fixes

  • screenshot: Changed hash algorithm in screenshot-compare to sha256 (#6258) (bbbfb45), closes #6241

Thanks to @​ujas-sidapara for their contributions! 🎉

Changelog

Sourced from @​stencil/core's changelog.

🥃 4.33.1 (2025-06-03)

Bug Fixes

  • runtime: conditionally apply global styles using supportsConstructableStylesheets flag (f4f815f)

🐿 4.33.0 (2025-06-03)

Bug Fixes

  • compiler: enable rollup interop helpers for cjs when import injection is enabled (#6272) (58d4ad0), closes #6270
  • mock-doc: onClick returns PointerEvent instead of MouseEvent (#6267) (dc4bd52), closes #6217

Features

  • global-styles: add global styles support to shadow DOM components (#6268) (33363d4)

Note: if you are using global styles this update may an impact on your Stencil shadow components, e.g. with shadow: true flag. Please validate visual correctness.

🤖 4.32.0 (2025-05-28)

Features

Bug Fixes

  • screenshot: Changed hash algorithm in screenshot-compare to sha256 (#6258) (bbbfb45), closes #6241
Commits
  • af2acd4 Release v4.33.1 (#6275)
  • f4f815f fix(runtime): conditionally apply global styles using flag
  • fa2fd65 Release v4.33.0 (#6273)
  • 58d4ad0 fix(compiler): enable rollup interop helpers for cjs when import injection is...
  • 33363d4 feat(global-styles): add global styles support to shadow DOM components (#6268)
  • dc4bd52 onClick returns PointerEvent instead of MouseEvent (#6267)
  • 6743c57 Revert "fix(scripts): populate failing NPM publish command"
  • e5a9bd1 fix(scripts): populate failing NPM publish command
  • 4c8c84d Release v4.32.0 (#6266)
  • 71cf735 feat(compiler): support maxParallelFileOps in RollupInputOptions (#6255)
  • Additional commits viewable in compare view

Updates rollup from 4.41.1 to 4.42.0

Release notes

Sourced from rollup's releases.

v4.42.0

4.42.0

2025-06-06

Features

  • Add option to allow the input to be located in the output in watch mode (#5966)

Pull Requests

v4.41.2

4.41.2

2025-06-06

Bug Fixes

  • Detect named export usages in dynamic imports with then and non-arrow function expressions (#5977)
  • Do not replace usages of constant variables with their values for readability (#5968)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.42.0

2025-06-06

Features

  • Add option to allow the input to be located in the output in watch mode (#5966)

Pull Requests

4.41.2

2025-06-06

Bug Fixes

  • Detect named export usages in dynamic imports with then and non-arrow function expressions (#5977)
  • Do not replace usages of constant variables with their values for readability (#5968)

Pull Requests

Commits
  • f763394 4.42.0
  • dddc00d feat: watch mode add allowInputInsideOutputPath option (#5966)
  • 13b4669 4.41.2
  • 149d94c Debug/fix watch pipeline (#5982)
  • 13992f2 Update README.md (#5976)
  • 224c900 fix: preserve constant identifiers in unary expressions instead of magic numb...
  • da88626 fix: consider function expression in thenable when tree-shaking dynamic impor...
  • 8f0dbc9 fix(deps): lock file maintenance minor/patch updates (#5981)
  • 4f69d33 chore(deps): update dependency yargs-parser to v22 (#5969)
  • 0fbd796 chore(deps): lock file maintenance (#5971)
  • Additional commits viewable in compare view

Updates terser from 5.39.2 to 5.42.0

Changelog

Sourced from terser's changelog.

v5.42.0

  • Improved performance in the parse step by adding a fast path for simple identifiers.
  • Improved ESTree conversion

v5.41.0

  • fixed semicolon insertion between class fields, when the field names are number literals
  • keep_numbers format option now works for bigint
  • internal: correctly mark accessors' is_generator property
  • internal: do not read or assign quote properties without need
  • internal: add missing equivalent_to comparison

v5.40.0

  • Fix exporting AssignmentExpression (default assign pattern) to ESTree
  • Fix ESTree output of object keys with quotes
  • Fix handling of an ESTree empty export {} (#1601)
  • Fix some const and let resulting from ESTree input (#1599)
Commits
  • c189265 5.42.0
  • 3bbb8a3 update changelog
  • 65b566d remove modern syntax from test
  • aa35937 estree: overhaul conversion code and test feature parity with Acorn. Closes #365
  • e1fb380 performance: create a fast path for parsing names without special characters
  • 51478fc 5.41.0
  • 556d0d8 update changelog
  • dbb14ae fix semicolon insertion between value-less class fields, when the field name ...
  • f29335a implement keep_numbers for bigint
  • fc17d11 internal: add missing equivalent_to comparison
  • Additional commits viewable in compare view

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

…ctory with 3 updates

Bumps the minor-deps-updates-main group with 3 updates in the / directory: [@stencil/core](https://github.com/stenciljs/core), [rollup](https://github.com/rollup/rollup) and [terser](https://github.com/terser/terser).


Updates `@stencil/core` from 4.31.0 to 4.33.1
- [Release notes](https://github.com/stenciljs/core/releases)
- [Changelog](https://github.com/stenciljs/core/blob/main/CHANGELOG.md)
- [Commits](stenciljs/core@v4.31.0...v4.33.1)

Updates `rollup` from 4.41.1 to 4.42.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.41.1...v4.42.0)

Updates `terser` from 5.39.2 to 5.42.0
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.39.2...v5.42.0)

---
updated-dependencies:
- dependency-name: "@stencil/core"
  dependency-version: 4.33.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: rollup
  dependency-version: 4.42.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: terser
  dependency-version: 5.42.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 9, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 9, 2025 17:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 9, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 16, 2025

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

@dependabot dependabot bot closed this Jun 16, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-deps-updates-main-b1804daa71 branch June 16, 2025 16:26
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants