Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 10, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@figma/rest-api-spec ~0.34.0~0.35.0 age confidence devDependencies minor
@microsoft/tsdoc (source) ~0.15.0~0.16.0 age confidence dependencies minor
@modelcontextprotocol/sdk (source) ~1.24.0~1.25.0 age confidence dependencies minor
@modelcontextprotocol/sdk (source) ~1.24.0~1.25.0 age confidence devDependencies minor
@openapitools/openapi-generator-cli ~2.25.0~2.27.0 age confidence devDependencies minor
@openapitools/openapi-generator-cli ~2.25.0~2.27.0 age confidence dependencies minor
@redocly/openapi-core ~2.11.0~2.14.0 age confidence devDependencies minor 2.14.3
@types/vscode (source) ~1.105.0~1.107.0 age confidence devDependencies minor
actions/setup-java v5.0.0v5.1.0 age confidence action minor
codecov/test-results-action v1.1.1v1.2.1 age confidence action minor
dorny/test-reporter v2.1.1v2.3.0 age confidence action minor v2.5.0 (+1)
esbuild ~0.25.1~0.27.0 age confidence dependencies minor
esbuild ~0.25.1~0.27.0 age confidence devDependencies minor
memfs ~4.50.0~4.51.0 age confidence devDependencies minor
monaco-editor ~0.54.0~0.55.0 age confidence devDependencies minor
monaco-editor ~0.54.0~0.55.0 age confidence dependencies minor
sass ~1.93.0~1.97.0 age confidence devDependencies minor
sass-embedded ~1.93.0~1.97.0 age confidence devDependencies minor
webpack ~5.102.0~5.104.0 age confidence devDependencies minor
zod (source) ~4.1.0~4.2.0 age confidence dependencies minor 4.3.5 (+5)
zod (source) ~4.1.0~4.2.0 age confidence devDependencies minor 4.3.5 (+5)

Release Notes

figma/rest-api-spec (@​figma/rest-api-spec)

v0.35.0

Compare Source

microsoft/tsdoc (@​microsoft/tsdoc)

v0.16.0

Compare Source

Tue, 11 Nov 2025 00:51:42 GMT

Minor changes
  • Normalize builtin imports.
  • Standardize TypeScript's @jsx, @jsxRuntime, @jsxFrag, @jsxImportSource tags.
Patches
  • Ensure TSDocEmitter does not emit a newline for the text after @defaultValue tags.
  • Remove test files and declaration maps from the published package.
modelcontextprotocol/typescript-sdk (@​modelcontextprotocol/sdk)

v1.25.1

Compare Source

What's Changed

Full Changelog: modelcontextprotocol/typescript-sdk@1.25.0...1.25.1

v1.25.0

Compare Source

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@1.24.3...1.25.0

OpenAPITools/openapi-generator-cli (@​openapitools/openapi-generator-cli)

v2.27.0

Compare Source

Features
  • config: add support for environment variable placeholders in config (#​1031) (1cd2614)

v2.26.0

Compare Source

Bug Fixes
Features
Redocly/redocly-cli (@​redocly/openapi-core)

v2.14.2

Compare Source

Patch Changes
  • Improved overall performance by skipping unnecessary JSON pointer escaping and unescaping.

v2.14.1

Compare Source

Patch Changes

v2.14.0

Compare Source

Patch Changes

v2.13.0

Compare Source

Minor Changes
  • Implemented basic support for OpenRPC specification.
Patch Changes

v2.12.7

Compare Source

Patch Changes
  • Added scorecard-classic command to evaluate API descriptions against project scorecard configurations.
  • Updated @​redocly/openapi-core to v2.12.7.

v2.12.6

Compare Source

Patch Changes

v2.12.5

Compare Source

Patch Changes

v2.12.4

Compare Source

Patch Changes
  • Fixed a compatibility issue with HTTP_PROXY environment variable for the push command.
  • Updated @​redocly/openapi-core to v2.12.4.

v2.12.3

Compare Source

Patch Changes
  • Updated telemetry implementation to use standardized OpenTelemetry format.
  • Updated @​redocly/openapi-core to v2.12.3.

v2.12.2

Compare Source

Patch Changes
  • Fixed an issue where credentials reated by Redocly CLI login command were deleted by Redocly VS Code extension when opening VS Code.
  • Updated @​redocly/openapi-core to v2.12.2.

v2.12.1

Compare Source

Patch Changes
  • Fixed an issue where multiple --mtls options in the Respect command did not merge as expected.
  • Updated @​redocly/openapi-core to v2.12.1.

v2.12.0

Compare Source

Minor Changes
  • Added OpenAPI 3.2 XML modeling support.
Patch Changes
  • Fixed an issue where the no-required-schema-properties-undefined caused a crash when encountering unresolved $refs.
  • Updated @​redocly/openapi-core to v2.12.0.
actions/setup-java (actions/setup-java)

v5.1.0

Compare Source

What's Changed
New Features
Bug 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.1

Compare Source

What's Changed

Full Changelog: codecov/test-results-action@v1.1.1...v1.2.1

dorny/test-reporter (dorny/test-reporter)

v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: dorny/test-reporter@v2.2.0...v2.3.0

v2.2.0

Compare Source

evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with #/ (#​4361)

    Previously the specification for package.json disallowed 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-mask prefix (#​4357, #​4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    
    /* Old output (with --target=chrome110) */
    main {
      mask: url(x.png) center/5rem no-repeat;
    }
    
    /* New output (with --target=chrome110) */
    main {
      -webkit-mask: url(x.png) center/5rem no-repeat;
      mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#​4176, #​4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    
    // New output (with --minify)
    x===0?foo():bar();
  • Forbid using declarations inside switch clauses (#​4323)

    This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced using declarations. These were previously allowed inside case and default clauses in switch statements. 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:

    switch (mode) {
      case 'read':
        using readLock = db.read()
        return readAll(readLock)
    
      case 'write':
        using writeLock = db.write()
        return writeAll(writeLock)
    }

    That code will now have to be modified to look like this instead (note the additional { and } block statements around each case body):

    switch (mode) {
      case 'read': {
        using readLock = db.read()
        return readAll(readLock)
      }
      case 'write': {
        using writeLock = db.write()
        return writeAll(writeLock)
      }
    }

    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.1

Compare Source

  • Fix bundler bug with var nested inside if (#​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-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#​4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). 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 to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}
  • Inline IIFEs containing a single expression (#​4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    
    // New output (with --minify)
    const foo=()=>{console.log(x())};
  • The minifier now strips empty finally clauses (#​4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

    // Original code
    function foo(callback) {
      if (DEBUG) stack.push(callback.name);
      try {
        callback();
      } finally {
        if (DEBUG) stack.pop();
      }
    }
    
    // Old output (with --minify --define:DEBUG=false)
    function foo(a){try{a()}finally{}}
    
    // New output (with --minify --define:DEBUG=false)
    function foo(a){a()}
  • Allow tree-shaking of the Symbol constructor

    With this release, calling Symbol is 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:

    // Original code
    const a = Symbol('foo')
    const b = Symbol(bar)
    
    // Old output (with --tree-shaking=true)
    const a = Symbol("foo");
    const b = Symbol(bar);
    
    // New output (with --tree-shaking=true)
    const b = Symbol(bar);

v0.27.0

Compare 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 esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#​4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function 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 specify target when 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:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

v0.26.0

Compare 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.1

Compare Source

Bug Fixes
  • add glob functions to API lists (445f337)

v4.51.0

Compare Source

Features
microsoft/monaco-editor (monaco-editor)

v0.55.1

Compare Source

  • Fixes missing language exports (monaco.json/typescript/...) due to wrong "types" path - #​5123

v0.55.0

Compare Source

Breaking Changes
  • Moves nested namespaces (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
  • Adds native LSP support (see new lsp namespace).
Bug Fixes
  • Updates dompurify to 3.2.7
sass/dart-sass (sass)

v1.97.1

Compare Source

v1.97.0

Compare Source

  • Add support for the display-p3-linear color space.

v1.96.0

Compare Source

  • Allow numbers with complex units (more than one numerator unit or more than
    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.1

Compare Source

  • No user-visible changes.

v1.95.0

Compare Source

  • Add support for the CSS-style if() function. In addition to supporting the
    plain CSS syntax, this also supports a sass() query that takes a Sass
    expression that evaluates to true or false at preprocessing time depending
    on 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 migrate
    to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to
    if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that
    they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special
    variable strings" (like var()), meaning they can now be used in place of
    multiple arguments or syntax fragments in various CSS functions.

v1.94.3

Compare Source

  • Fix the span reported for standalone % expressions followed by whitespace.

v1.94.2

Compare Source

Command-Line Interface
  • Using --fatal-deprecation <version> no longer emits warnings about
    deprecations that are obsolete.
Dart API
  • Deprecation.forVersion now excludes obsolete deprecations from the set it
    returns.
JS API
  • Excludes obsolete deprecations from fatalDeprecations when a Version is
    passed.
Node.js Embedded Host
  • Fix a bug where a variable could be used before it was initialized during
    async compilation.

v1.94.1

Compare Source

  • No user-visible changes.

v1.94.0

Compare Source

  • Potentially breaking compatibility fix: @function rules whose names
    begin with -- are now parsed as unknown at-rules to support the plain CSS
    @function rule. Within this rule, the result property is parsed as raw
    CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin
    with -- are now errors. These are not yet parsed as unknown at-rules because
    no browser currently supports CSS mixins.

sass/embedded-host-node (sass-embedded)

v1.97.1

Compare Source

  • Fix a bug with the new CSS-style if() syntax where values would be evaluated
    even if their conditions didn't match.

v1.97.0

Compare Source

  • Add support for the display-p3-linear color space.

v1.96.0

Compare Source

  • Allow numbers with complex units (more than one numerator unit or more than
    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.1

Compare Source

  • No user-visible changes.
webpack/webpack (webpack)

v5.104.1

Compare 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.0

Compare Source

Minor Changes
  • d3dd841: Use method shorthand to render module content in __webpack_modules__ object.
  • d3dd841: Enhance import.meta.env to 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: Added base64url, base62, base58, base52, base49, base36, base32 and base25 digests.
  • 5983843: Provide a stable runtime function variable __webpack_global__.
  • d3dd841: Improved localIdentName hashing 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 for css/global type.
  • d3dd841: Compatibility import.meta.filename and import.meta.dirname with eval devtools.
  • d3dd841: Handle nested __webpack_require__.
  • 728ddb7: The speed of identifier parsing has been improved.
  • 0f8b31b: Improve types.
  • d3dd841: Don't corrupt debugId injection when hidden-source-map is 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: Serialize HookWebpackError.
  • 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.0

Compare Source

Features
  • Added DotenvPlugin and top level dotenv option to enable this plugin
  • Added WebpackManifestPlugin
  • Added support the ignoreList option in devtool plugins
  • Allow to use custom javascript parse function
  • Added import.meta.env support for environment variables
  • Added support for import.meta.dirname and import.meta.filename
  • Added support import.defer() for statistical path
  • Handle import.meta.main
  • Added suport to setup named exports for JSON modules and disable usage named export for import file from "./file.json" with { type: "json" }
  • Added support __dirname/__filename/import.meta.dirname/import.meta.filename for universal target
  • [CSS] Added the exportType option with link (by default), "text" and css-style-sheet values
  • [CSS] Added support for composes properties
Fixes
  • The dependOn chunk must be loaded before the common chunk
  • Return to namespace import when the external request includes a specific export
  • No runtime extra runtime code for module libraries
  • Delay HMR accept dependencies to preserve import attributes
  • Properly handle external presets for universal target
  • Fixed incorrect identifier of import binding for module externals
  • Fixed when defer import and dynamic default export mixed
  • Reduce generated output when globalThis supported
  • Fixed loading async modules in defer import
  • Reexport module for default import when no used exports for systemjs library
  • Rename HarmonyExportDependencyParserPlugin exported id to CompatibilityPlugin tagged id
  • Handle __dirname and __filename for ES modules
  • Rename single nested __webpack_export__ and __webpack_require__ in already bundled code
  • [Types] webpack function type
  • [Types] NormalModule type
  • [Types] Multi compiler configuration type
  • [Types] Fixed regression in custom hashDigest type
  • [CSS] No extra runtime for initial chunk
  • [CSS] Fixed a lot of CSS modules bugs
colinhacks/zod (zod)

v4.2.1

Compare Source

v4.2.0

Compare Source

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()
const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);
Implement z.xor()
const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match
Implement z.looseRecord()
const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:


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.


  • 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 requested a review from a team as a code owner November 10, 2025 09:17
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Nov 10, 2025
@nx-cloud
Copy link

nx-cloud bot commented Nov 10, 2025

🤖 Nx Cloud AI Fix Eligible

An automatically generated fix could have helped fix failing tasks for this run, but Self-healing CI is disabled for this workspace. Visit workspace settings to enable it and get automatic fixes in future runs.

To disable these notifications, a workspace admin can disable them in workspace settings.


View your CI Pipeline Execution ↗ for commit 8182ba1

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
Copy link

codecov bot commented Nov 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 71.64%. Comparing base (9c7d3de) to head (9b4daee).
✅ All tests successful. No failed tests found.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

fpaul-1A
fpaul-1A previously approved these changes Nov 10, 2025
@fpaul-1A fpaul-1A enabled auto-merge November 10, 2025 09:35
sdo-1A
sdo-1A previously approved these changes Nov 10, 2025
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from cf72eda to ea4a36c Compare November 10, 2025 10:22
@renovate renovate bot dismissed stale reviews from fpaul-1A and sdo-1A via e75ef29 November 10, 2025 15:38
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 9 times, most recently from e7d2dab to 9b4daee Compare November 14, 2025 22:26
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 2 times, most recently from c5c2f8a to 8518ba4 Compare November 23, 2025 11:53
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 8518ba4 to 7062b70 Compare November 30, 2025 16:29
@renovate renovate bot changed the title chore(deps): update all non-major dependencies (main) chore(deps): update all non-major dependencies (main) (minor) Nov 30, 2025
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 7062b70 to 317440a Compare December 15, 2025 14:34
@github-actions
Copy link

⚠️ Yarn detected 2 errors during the install process.


List of reported errors
Error Description
YN0060 monaco-editor is listed by your project with version 0.55.1 (p2f2fe8), which doesn't satisfy what ngx-monaco-editor-v2 requests (~0.52.2).
YN0060 monaco-editor is listed by your project with version 0.55.1 (pee5413), which doesn't satisfy what ngx-monaco-editor-v2 requests (~0.52.2).

fpaul-1A
fpaul-1A previously approved these changes Dec 16, 2025
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from a27200f to 62aafef Compare December 16, 2025 13:59
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 62aafef to 20d1f7f Compare December 28, 2025 15:49
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 20d1f7f to 8182ba1 Compare January 4, 2026 20:33
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 project:@ama-mcp/angular project:@ama-mcp/core project:@ama-mcp/github project:@ama-mcp/otter project:@ama-mfe/messages project:@ama-mfe/ng-utils project:@ama-openapi/redocly-plugin project:@ama-sdk/client-angular project:@ama-sdk/client-beacon project:@ama-sdk/client-fetch project:@ama-sdk/core project:@ama-sdk/create project:@ama-sdk/schematics project:@ama-sdk/swagger-builder project:@ama-styling/figma-extractor project:@ama-styling/figma-sdk project:@ama-styling/style-dictionary project:@ama-styling/stylelint-plugin project:@ama-terasu/cli project:@ama-terasu/core project:@ama-terasu/schematics project:audit-gh-action project:get-npm-tag-gh-action project:new-version-gh-action project:@o3r/amaterasu-api-spec project:@o3r/amaterasu-dodo project:@o3r/amaterasu-otter project:@o3r/amaterasu-sdk project:@o3r/analytics project:@o3r/apis-manager project:@o3r/application project:@o3r/artifactory-tools project:@o3r/azure-tools project:@o3r/build-helpers project:@o3r/components project:@o3r/configuration project:@o3r/core project:@o3r/create project:@o3r/design project:@o3r/dynamic-content project:@o3r/eslint-config project:@o3r/eslint-plugin project:@o3r/extractors project:@o3r/forms project:@o3r/github-cascading-app project:@o3r/localization project:@o3r/logger project:@o3r/mcp project:@o3r/mobile project:@o3r/new-version project:@o3r/palette-generator project:@o3r/pipeline project:@o3r/routing project:@o3r/rules-engine project:@o3r/schematics project:@o3r/showcase project:@o3r/store-sync project:@o3r/style-dictionary project:@o3r/stylelint-plugin project:@o3r/styling project:@o3r/telemetry project:@o3r/test-helpers project:@o3r/testing project:@o3r/third-party project:@o3r/workspace project:@o3r/workspace-helpers project:@o3r-training/showcase-sdk project:@o3r-training/training-sdk project:@o3r-training/training-tools project:otter-devtools project:release-gh-action project:yarn-errors-reporter-gh-action

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants