-
-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update patch updates (patch) #210
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
base: main
Are you sure you want to change the base?
Conversation
|
Thank you for following the naming conventions! 🙏 |
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 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 |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
950b9e5 to
4da6df9
Compare
4da6df9 to
5e27f42
Compare
@anolilab/multi-semantic-release
@anolilab/rc
@anolilab/semantic-release-clean-package-json
@anolilab/semantic-release-pnpm
@anolilab/semantic-release-preset
commit: |
Codecov Report✅ All modified and coverable lines are covered by tests. 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
🚀 New features to boost your workflow:
|
5b0517b to
2636ee5
Compare
d0005a1 to
e7128b0
Compare
74de8df to
6ae76a6
Compare
Signed-off-by: Renovate Bot <[email protected]>
6ae76a6 to
66f53f5
Compare
This PR contains the following updates:
^2.0.6->^2.0.82.0.4->2.0.53.0.4->3.0.52.0.4->2.0.54.0.8->4.0.90.25.10->0.25.12^14.6.1->^14.6.2Release Notes
anolilab/semantic-release (@anolilab/multi-semantic-release)
v2.0.8Compare Source
Bug Fixes
Dependencies
v2.0.7Compare Source
Bug Fixes
anolilab/semantic-release (@anolilab/rc)
v2.0.5Compare Source
Bug Fixes
anolilab/semantic-release (@anolilab/semantic-release-clean-package-json)
v3.0.5Compare Source
Bug Fixes
Dependencies
anolilab/semantic-release (@anolilab/semantic-release-pnpm)
v2.0.5Compare Source
Bug Fixes
Dependencies
apocas/dockerode (dockerode)
v4.0.9Compare Source
What's Changed
Full Changelog: apocas/dockerode@v4.0.8...v4.0.9
evanw/esbuild (esbuild)
v0.25.12Compare 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
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty 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:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote 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:Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):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: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.11Compare 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
binaryloader. Here's an example: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:will be transformed like this with a target such as
--target=chrome100(or more specifically with--supported:media-range=falseif desired):sindresorhus/got (got)
v14.6.2Compare Source
0a16a9cConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.