-
Notifications
You must be signed in to change notification settings - Fork 44
chore(deps): update all non-major dependencies (main) (minor) #3705
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
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx run-many --target=build,build-swagger |
❌ Failed | 15m 52s | View ↗ |
nx affected --target=test --collectCoverage --c... |
❌ Failed | 9m 50s | View ↗ |
nx affected --target=lint --configuration ci |
✅ Succeeded | 15m 18s | View ↗ |
nx run ama-sdk-schematics:build-swagger |
✅ Succeeded | 3m 6s | View ↗ |
nx run-many --target=documentation |
✅ Succeeded | 1m 35s | View ↗ |
nx affected --target=package-github-action |
✅ Succeeded | 2m 2s | View ↗ |
nx run-many --tui=false --target=build --projec... |
✅ Succeeded | <1s | View ↗ |
☁️ Nx Cloud last updated this comment at 2026-01-04 20:55:57 UTC
Codecov Report✅ All modified and coverable lines are covered by tests. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
cf72eda to
ea4a36c
Compare
e7d2dab to
9b4daee
Compare
c5c2f8a to
8518ba4
Compare
8518ba4 to
7062b70
Compare
7062b70 to
317440a
Compare
List of reported errors
|
317440a to
a27200f
Compare
a27200f to
62aafef
Compare
62aafef to
20d1f7f
Compare
20d1f7f to
8182ba1
Compare

This PR contains the following updates:
~0.34.0→~0.35.0~0.15.0→~0.16.0~1.24.0→~1.25.0~1.24.0→~1.25.0~2.25.0→~2.27.0~2.25.0→~2.27.0~2.11.0→~2.14.02.14.3~1.105.0→~1.107.0v5.0.0→v5.1.0v1.1.1→v1.2.1v2.1.1→v2.3.0v2.5.0(+1)~0.25.1→~0.27.0~0.25.1→~0.27.0~4.50.0→~4.51.0~0.54.0→~0.55.0~0.54.0→~0.55.0~1.93.0→~1.97.0~1.93.0→~1.97.0~5.102.0→~5.104.0~4.1.0→~4.2.04.3.5(+5)~4.1.0→~4.2.04.3.5(+5)Release Notes
figma/rest-api-spec (@figma/rest-api-spec)
v0.35.0Compare Source
microsoft/tsdoc (@microsoft/tsdoc)
v0.16.0Compare Source
Tue, 11 Nov 2025 00:51:42 GMT
Minor changes
@jsx,@jsxRuntime,@jsxFrag,@jsxImportSourcetags.Patches
@defaultValuetags.modelcontextprotocol/typescript-sdk (@modelcontextprotocol/sdk)
v1.25.1Compare Source
What's Changed
Full Changelog: modelcontextprotocol/typescript-sdk@1.25.0...1.25.1
v1.25.0Compare Source
What's Changed
/testby @KKonstantinov in #1220New Contributors
Full Changelog: modelcontextprotocol/typescript-sdk@1.24.3...1.25.0
OpenAPITools/openapi-generator-cli (@openapitools/openapi-generator-cli)
v2.27.0Compare Source
Features
v2.26.0Compare Source
Bug Fixes
Features
Redocly/redocly-cli (@redocly/openapi-core)
v2.14.2Compare Source
Patch Changes
v2.14.1Compare Source
Patch Changes
v2.14.0Compare Source
Patch Changes
v2.13.0Compare Source
Minor Changes
Patch Changes
v2.12.7Compare Source
Patch Changes
scorecard-classiccommand to evaluate API descriptions against project scorecard configurations.v2.12.6Compare Source
Patch Changes
v2.12.5Compare Source
Patch Changes
v2.12.4Compare Source
Patch Changes
HTTP_PROXYenvironment variable for thepushcommand.v2.12.3Compare Source
Patch Changes
v2.12.2Compare Source
Patch Changes
logincommand were deleted by Redocly VS Code extension when opening VS Code.v2.12.1Compare Source
Patch Changes
--mtlsoptions in the Respect command did not merge as expected.v2.12.0Compare Source
Minor Changes
Patch Changes
no-required-schema-properties-undefinedcaused a crash when encountering unresolved$refs.actions/setup-java (actions/setup-java)
v5.1.0Compare Source
What's Changed
New Features
.sdkmanrcfile injava-version-fileparameter by @guicamest in #736Bug Fixes & Improvements
Documentation changes
Dependency updates
New Contributors
Full Changelog: actions/setup-java@v5...v5.1.0
codecov/test-results-action (codecov/test-results-action)
v1.2.1Compare Source
What's Changed
Full Changelog: codecov/test-results-action@v1.1.1...v1.2.1
dorny/test-reporter (dorny/test-reporter)
v2.3.0Compare Source
What's Changed
New Contributors
Full Changelog: dorny/test-reporter@v2.2.0...v2.3.0
v2.2.0Compare Source
evanw/esbuild (esbuild)
v0.27.2Compare Source
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by @hybrist.
Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:This change was contributed by @BPJEnnova.
Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:Forbid
usingdeclarations insideswitchclauses (#4323)This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced
usingdeclarations. These were previously allowed insidecaseanddefaultclauses inswitchstatements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.Here is an example of code that is no longer allowed:
That code will now have to be modified to look like this instead (note the additional
{and}block statements around each case body):This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).
v0.27.1Compare Source
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:Allow tree-shaking of the
SymbolconstructorWith this release, calling
Symbolis now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:v0.27.0Compare Source
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuildin yourpackage.jsonfile (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.26.0or~0.26.0. See npm's documentation about semver for more information.Use
Uint8Array.fromBase64if available (#4286)With this release, esbuild's
binaryloader will now use the newUint8Array.fromBase64function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specifytargetwhen using this feature with Node (for example--target=node22) unless you're using Node v25+.Update the Go compiler from v1.23.12 to v1.25.4 (#4208, #4311)
This raises the operating system requirements for running esbuild:
v0.26.0Compare Source
Enable trusted publishing (#4281)
GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.
Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).
streamich/memfs (memfs)
v4.51.1Compare Source
Bug Fixes
v4.51.0Compare Source
Features
toTreeSync()(673cb7a), closes #1214microsoft/monaco-editor (monaco-editor)
v0.55.1Compare Source
v0.55.0Compare Source
Breaking Changes
languages.css,languages.html,languages.json,languages.typescript) to top level namespaces (css,html,json,typescript) to simplify the build process and align with typescript recommendations.New Features
lspnamespace).Bug Fixes
sass/dart-sass (sass)
v1.97.1Compare Source
v1.97.0Compare Source
display-p3-linearcolor space.v1.96.0Compare Source
zero denominator units) to be emitted to CSS. These are now emitted as
calc()expressions, which now support complex units in plain CSS.v1.95.1Compare Source
v1.95.0Compare Source
Add support for the CSS-style
if()function. In addition to supporting theplain CSS syntax, this also supports a
sass()query that takes a Sassexpression that evaluates to
trueorfalseat preprocessing time dependingon whether the Sass value is truthy. If there are no plain-CSS queries, the
function will return the first value whose query returns true during
preprocessing. For example,
if(sass(false): 1; sass(true): 2; else: 3)returns
2.The old Sass
if()syntax is now deprecated. Users are encouraged to migrateto the new CSS syntax.
if($condition, $if-true, $if-false)can be changed toif(sass($condition): $if-true; else: $if-false).See the Sass website for details.
Plain-CSS
if()functions are now considered "special numbers", meaning thatthey can be used in place of arguments to CSS color functions.
Plain-CSS
if()functions andattr()functions are now considered "specialvariable strings" (like
var()), meaning they can now be used in place ofmultiple arguments or syntax fragments in various CSS functions.
v1.94.3Compare Source
%expressions followed by whitespace.v1.94.2Compare Source
Command-Line Interface
--fatal-deprecation <version>no longer emits warnings aboutdeprecations that are obsolete.
Dart API
Deprecation.forVersionnow excludes obsolete deprecations from the set itreturns.
JS API
fatalDeprecationswhen aVersionispassed.
Node.js Embedded Host
async compilation.
v1.94.1Compare Source
v1.94.0Compare Source
Potentially breaking compatibility fix:
@functionrules whose namesbegin with
--are now parsed as unknown at-rules to support the plain CSS@functionrule. Within this rule, theresultproperty is parsed as rawCSS just like custom properties.
Potentially breaking compatibility fix:
@mixinrules whose names beginwith
--are now errors. These are not yet parsed as unknown at-rules becauseno browser currently supports CSS mixins.
sass/embedded-host-node (sass-embedded)
v1.97.1Compare Source
if()syntax where values would be evaluatedeven if their conditions didn't match.
v1.97.0Compare Source
display-p3-linearcolor space.v1.96.0Compare Source
zero denominator units) to be emitted to CSS. These are now emitted as
calc()expressions, which now support complex units in plain CSS.v1.95.1Compare Source
webpack/webpack (webpack)
v5.104.1Compare Source
Patch Changes
2efd21b: Reexports runtime calculation should not accessing WEBPACK_IMPORT_KEY decl with var.c510070: Fixed a user information bypass vulnerability in the HttpUriPlugin plugin.v5.104.0Compare Source
Minor Changes
d3dd841: Use method shorthand to render module content in__webpack_modules__object.d3dd841: Enhanceimport.meta.envto support object access.4baab4e: Optimize dependency sorting in updateParent: sort each module only once by deferring to finishUpdateParent(), and reduce traversal count in sortWithSourceOrder by caching WeakMap values upfront.04cd530: Handle more at-rules for CSS modules.cafae23: Added options to control the renaming of at-rules and various identifiers in CSS modules.d3dd841: Addedbase64url,base62,base58,base52,base49,base36,base32andbase25digests.5983843: Provide a stable runtime function variable__webpack_global__.d3dd841: ImprovedlocalIdentNamehashing for CSS.Patch Changes
22c48fb: Added module existence check for informative error message in development mode.50689e1: Use the fully qualified class name (or export name) for[fullhash]placeholder in CSS modules.d3dd841: Support universal lazy compilation.d3dd841: Fixed module library export definitions when multiple runtimes.d3dd841: Fixed CSS nesting and CSS custom properties parsing.d3dd841: Don't write fragment from URL to filename and apply fragment to module URL.aab1da9: Fixed bugs forcss/globaltype.d3dd841: Compatibilityimport.meta.filenameandimport.meta.dirnamewithevaldevtools.d3dd841: Handle nested__webpack_require__.728ddb7: The speed of identifier parsing has been improved.0f8b31b: Improve types.d3dd841: Don't corruptdebugIdinjection whenhidden-source-mapis used.2179fdb: Re-validate HttpUriPlugin redirects against allowedUris, restrict to http(s) and add a conservative redirect limit to prevent SSRF and untrusted content inclusion. Redirects failing policy are rejected before caching/lockfile writes.d3dd841: SerializeHookWebpackError.d3dd841: Added ability to use built-in properties in dotenv and define plugin.3c4319f: Optimizing the regular expression character class by specifying ranges for runtime code.d3dd841: Reduce collision for local indent name in CSS.d3dd841: Remove CSS link tags when CSS imports are removed.v5.103.0Compare Source
Features
DotenvPluginand top leveldotenvoption to enable this pluginWebpackManifestPluginignoreListoption in devtool pluginsimport.meta.envsupport for environment variablesimport.meta.dirnameandimport.meta.filenameimport.defer()for statistical pathimport file from "./file.json" with { type: "json" }__dirname/__filename/import.meta.dirname/import.meta.filenamefor universal targetexportTypeoption withlink(by default), "text" andcss-style-sheetvaluescomposespropertiesFixes
dependOnchunk must be loaded before the common chunkglobalThissupported__dirnameand__filenamefor ES modules__webpack_export__and__webpack_require__in already bundled codehashDigesttypecolinhacks/zod (zod)
v4.2.1Compare Source
v4.2.0Compare Source
Features
Implement Standard JSON Schema
standard-schema/standard-schema#134
Implement
z.fromJSONSchema()Implement
z.xor()Implement
z.looseRecord()Commits:
af49c08Update docs for JSON Schema conversion ofz.undefined()(#5504)767f320Add.toJSONSchema()method (#5477)e17dcb6Addz.fromJSONSchema(),z.looseRecord(),z.xor()(#5534)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.