Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2025

This PR contains the following updates:

Package Change Age Confidence
@anolilab/multi-semantic-release (source) ^2.0.6 -> ^2.0.8 age confidence
@anolilab/rc (source) 2.0.4 -> 2.0.5 age confidence
@anolilab/semantic-release-clean-package-json (source) 3.0.4 -> 3.0.5 age confidence
@anolilab/semantic-release-pnpm (source) 2.0.4 -> 2.0.5 age confidence
dockerode 4.0.8 -> 4.0.9 age confidence
esbuild 0.25.10 -> 0.25.11 age confidence

Release Notes

anolilab/semantic-release (@​anolilab/multi-semantic-release)

v2.0.8

Compare Source

Bug Fixes
  • update package dependencies and configurations (d94ebd8)
Dependencies

v2.0.7

Compare Source

Bug Fixes
  • deps: update dependencies and package manager version (732159f)
anolilab/semantic-release (@​anolilab/rc)

v2.0.5

Compare Source

Bug Fixes
  • update package dependencies and configurations (d94ebd8)
anolilab/semantic-release (@​anolilab/semantic-release-clean-package-json)

v3.0.5

Compare Source

Bug Fixes
  • update package dependencies and configurations (d94ebd8)
Dependencies
anolilab/semantic-release (@​anolilab/semantic-release-pnpm)

v2.0.5

Compare Source

Bug Fixes
  • update package dependencies and configurations (d94ebd8)
Dependencies
apocas/dockerode (dockerode)

v4.0.9

Compare Source

What's Changed

Full Changelog: apocas/dockerode@v4.0.8...v4.0.9

evanw/esbuild (esbuild)

v0.25.11

Compare Source

  • Add support for with { type: 'bytes' } imports (#​4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#​3748, #​4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @&#8203;media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @&#8203;media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }

Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 added the c: dependencies Pull requests that adds/updates a dependency label Oct 9, 2025
@renovate renovate bot requested a review from prisis as a code owner October 9, 2025 10:52
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Oct 9, 2025
@renovate renovate bot enabled auto-merge (squash) October 9, 2025 10:52
@github-actions
Copy link
Contributor

github-actions bot commented Oct 9, 2025

Thank you for following the naming conventions! 🙏

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 9, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@socket-security
Copy link

socket-security bot commented Oct 9, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedesbuild@​0.25.11921007394100
Updateddockerode@​4.0.8 ⏵ 4.0.910010010086100
Updated@​anolilab/​multi-semantic-release@​2.0.6 ⏵ 2.0.895 -1100100 +195 +2100

View full report

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 950b9e5 to 4da6df9 Compare October 10, 2025 08:52
@renovate renovate bot changed the title fix(deps): update dependency dockerode to v4.0.9 fix(deps): update patch updates (patch) Oct 10, 2025
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 4da6df9 to 5e27f42 Compare October 13, 2025 09:47
@pkg-pr-new
Copy link

pkg-pr-new bot commented Oct 13, 2025

Open in StackBlitz

@anolilab/multi-semantic-release

npm i https://pkg.pr.new/anolilab/semantic-release/@anolilab/multi-semantic-release@210

@anolilab/rc

npm i https://pkg.pr.new/anolilab/semantic-release/@anolilab/rc@210

@anolilab/semantic-release-clean-package-json

npm i https://pkg.pr.new/anolilab/semantic-release/@anolilab/semantic-release-clean-package-json@210

@anolilab/semantic-release-pnpm

npm i https://pkg.pr.new/anolilab/semantic-release/@anolilab/semantic-release-pnpm@210

@anolilab/semantic-release-preset

npm i https://pkg.pr.new/anolilab/semantic-release/@anolilab/semantic-release-preset@210

commit: 345b0c8

@codecov
Copy link

codecov bot commented Oct 13, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 65.23%. Comparing base (86cf494) to head (345b0c8).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #210   +/-   ##
=======================================
  Coverage   65.23%   65.23%           
=======================================
  Files          32       32           
  Lines         817      817           
  Branches      118      118           
=======================================
  Hits          533      533           
  Misses        281      281           
  Partials        3        3           
Flag Coverage Δ
rc 92.10% <ø> (ø)
semantic-release-clean-package-json 85.40% <ø> (ø)
semantic-release-pnpm 52.12% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 6 times, most recently from 5b0517b to 2636ee5 Compare October 21, 2025 09:15
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from d0005a1 to e7128b0 Compare October 28, 2025 13:44
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from e7128b0 to 74de8df Compare November 1, 2025 08:44
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 74de8df to 6ae76a6 Compare November 4, 2025 11:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

c: dependencies Pull requests that adds/updates a dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant