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.12 age confidence
got ^14.6.1 -> ^14.6.2 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.12

Compare Source

  • Fix a minification regression with CSS media queries (#​4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#​4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#​4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    
    /* Old output */
    @&#8203;view-transition { navigation: auto; types: check; }
    
    /* New output */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }

    The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.

    This change was contributed by @​yisibl.

  • Trim CSS rules that will never match

    The CSS minifier will now remove rules whose selectors contain :is() and :where() as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:

    /* Original code */
    div:before {
      color: green;
      &.foo {
        color: red;
      }
    }
    
    /* Old output (with --supported:nesting=false --minify) */
    div:before{color:green}:is().foo{color:red}
    
    /* New output (with --supported:nesting=false --minify) */
    div:before{color:green}

    This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as :before. Currently esbuild generates a rule containing :is() in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.

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;
      }
    }
sindresorhus/got (got)

v14.6.2

Compare Source

  • Fix path segments containing colons being misidentified as absolute URLs 0a16a9c


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.


Note

Free review on us!

CodeRabbit is offering free reviews until Thu Nov 06 2025 to showcase some of the refinements we've made.

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.12921007394100
Updateddockerode@​4.0.8 ⏵ 4.0.910010010086100
Updatedgot@​14.6.1 ⏵ 14.6.299100100 +191 +1100
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 2 times, most recently from 74de8df to 6ae76a6 Compare November 4, 2025 11:14
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 6ae76a6 to 66f53f5 Compare November 5, 2025 10:50
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