Skip to content

[deps] Update devDependencies (non-major)#15381

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/dev-dependencies-non-major
Open

[deps] Update devDependencies (non-major)#15381
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/dev-dependencies-non-major

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 4, 2026

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.58.21.59.1 age confidence
esbuild 0.27.40.27.7 age confidence
nx (source) 22.6.222.6.4 age confidence
typescript-eslint (source) 8.57.28.58.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.59.1

Compare Source

v1.59.0

Compare Source

evanw/esbuild (esbuild)

v0.27.7

Compare Source

  • Fix lowering of define semantics for TypeScript parameter properties (#​4421)

    The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:

    // Original code
    class Foo {
      constructor(public x = 1) {}
      y = 2
    }
    
    // Old output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        this.x = x;
        __publicField(this, "y", 2);
      }
      x;
    }
    
    // New output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        __publicField(this, "x", x);
        __publicField(this, "y", 2);
      }
    }

v0.27.5

Compare Source

  • Fix for an async generator edge case (#​4401, #​4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#​4420, #​4418)

    This release fixes a regression introduced by the previous release. When metafile: true was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.

  • Use define semantics for TypeScript parameter properties (#​4421)

    Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When "useDefineForClassFields": true is present in tsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:

    // Original code
    class Foo {
      constructor(public x: number) {}
    }
    
    // Old output (with --loader=ts)
    class Foo {
      constructor(x) {
        this.x = x;
      }
    }
    
    // New output (with --loader=ts)
    class Foo {
      constructor(x) {
        this.x = x;
      }
      x;
    }
  • Allow es2025 as a target in tsconfig.json (#​4432)

    TypeScript recently added es2025 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2025"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

nrwl/nx (nx)

v22.6.4

Compare Source

22.6.4 (2026-04-01)

🚀 Features
  • misc: update nx init telemetry meta from CSV to JSON format (#​35076)
  • nx-dev: add conditional blog/changelog proxy in edge function (#​35043)
🩹 Fixes
  • core: validate bundler option for Angular presets in create-nx-workspace (#​35074)
  • core: handle "." and absolute paths as workspace name in CNW (#​35083, #​1)
  • core: pin version of axios (#​35093)
  • core: preserve sibling dependency inputs in native hashing (#​35071)
  • core: sandbox exclusions, multi-line typeof import detection, global ensurePackage mock (#​35056)
  • core: no-interactive should disable prompts during migrate (#​35106)
  • gradle: increase project graph timeout defaults (#​35058)
  • js: recognize tsgo in dependency-checks lint rule (#​35048)
  • js: narrow tsc build-base outputs to only tsc-produced file types (#​35041)
  • js: include tsbuildinfo in narrowed tsc build-base outputs (#​35086, #​35041)
  • js: use explicit nx/bin/nx path in start-local-registry (#​35127)
  • misc: handle non-interactive mode and add template shorthand names for CNW (#​35045)
  • react: force Vite 7 when using React Router in framework mode (#​35101)
  • react-native: use vite's transformWithEsbuild instead of direct esbuild import (5771eb3346)
  • repo: pass env vars into docker builds in publish workflow (#​35060)
  • repo: bump picomatch from 4.0.2 to 4.0.4 (#​35081, #​35068)
  • repo: fixup lock-threads failing with resource inaccessible message (#​35005)
  • repo: fix lockfile (b070e23445)
  • repo: re-enable Cypress HMR e2e tests after upstream tapable fix (#​35105, #​34969, #​20693)
  • repo: disable ts-jest diagnostics for workspace-plugin tests (b013f93dca)
  • vite: update vitest and plugin-react-swc versions for vite 8 compat (#​35062)
  • vite: bump sass version for vue/nuxt presets for Vite 8 compat (#​35073)
  • webpack: bump postcss-loader to ^8.2.1 to eliminate transitive yaml@1.x CVE (#​35028, #​35025)
❤️ Thank You

v22.6.3

Compare Source

22.6.3 (2026-03-27)
🚀 Features
  • misc: a/b test cloud prompt copy in create-nx-workspace (#​35039)
🩹 Fixes
  • js: add {projectRoot} prefix to d.ts fileset in typescript plugin (#​35037)
  • misc: use namespace import for chalk v4 compatibility (7c9f873bd1)
  • misc: handle non-interactive mode and add template shorthand names for CNW (#​35045)
❤️ Thank You
typescript-eslint/typescript-eslint (typescript-eslint)

v8.58.0

Compare Source

🚀 Features
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - Only on Sunday ( * * * * 0 ) in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team labels Apr 4, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Apr 4, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 33.15%. Comparing base (23bbb5c) to head (7c955a7).

Additional details and impacted files
@@           Coverage Diff           @@
##           master   #15381   +/-   ##
=======================================
  Coverage   33.15%   33.15%           
=======================================
  Files        3155     3155           
  Lines      214168   214168           
  Branches    39117    39119    +2     
=======================================
+ Hits        71005    71008    +3     
+ Misses     143163   143160    -3     
Flag Coverage Δ
opencti-client-python 45.59% <ø> (ø)
opencti-front 2.86% <ø> (ø)
opencti-graphql 69.12% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

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

🚀 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/dev-dependencies-non-major branch from 0b94cc2 to 660c97a Compare April 5, 2026 02:07
@renovate renovate bot force-pushed the renovate/dev-dependencies-non-major branch from 660c97a to 7c955a7 Compare April 5, 2026 18:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies use for pull requests that update a dependency file filigran team use to identify PR from the Filigran team

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants