Skip to content

build(deps): bump esbuild, @playwright/experimental-ct-react, storybook, @storybook/cli and esbuild-sass-plugin #713

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

Bumps esbuild to 0.25.2 and updates ancestor dependencies esbuild, @playwright/experimental-ct-react, storybook, @storybook/cli and esbuild-sass-plugin. These dependencies need to be updated together.

Updates esbuild from 0.19.3 to 0.25.2

Release notes

Sourced from esbuild's releases.

v0.25.2

  • Support flags in regular expressions for the API (#4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!"
    });
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!": null
    });

  • Basic support for index source maps (#3439, #4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

v0.25.1

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits

Updates @playwright/experimental-ct-react from 1.49.0 to 1.51.1

Release notes

Sourced from @​playwright/experimental-ct-react's releases.

v1.51.1

Highlights

microsoft/playwright#35093 - [Regression]: TimeoutOverflowWarning: 2149630296.634 does not fit into a 32-bit signed integer microsoft/playwright#35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.51.0

StorageState for indexedDB

  • New option indexedDB for browserContext.storageState() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.

    Here is an example following the authentication guide:

    // tests/auth.setup.ts
    import { test as setup, expect } from '@playwright/test';
    import path from 'path';
    const authFile = path.join(__dirname, '../playwright/.auth/user.json');
    setup('authenticate', async ({ page }) => {
    await page.goto('/');
    // ... perform authentication steps ...
    // make sure to save indexedDB
    await page.context().storageState({ path: authFile, indexedDB: true });
    });

Copy prompt

New "Copy prompt" button on errors in the HTML report, trace viewer and UI mode. Click to copy a pre-filled LLM prompt that contains the error message and useful context for fixing the error.

Copy prompt

Filter visible elements

New option visible for locator.filter() allows matching only visible elements.

</tr></table> 

... (truncated)

Commits
  • 0ad26b3 chore: mark v1.51.1 (#35098)
  • 25c0deb cherry-pick(#35149): fix(expect): properly handle custom asymmetric matcher r...
  • 4ecf5e0 cherry-pick(#35096): chore: do not use |0 for rounding large numbers
  • 3707a93 cherry-pick(#35045): chore: hide indexedDB in BrowserContext.storageState() b...
  • 52ddca4 cherry-pick(#35043): docs: release notes for 1.51 for java, python, csharp
  • 1f13108 cherry-pick(#35058): chore: hide indexedDB from storageState() and BrowserCon...
  • 9e9f0d1 cherry-pick(#35062): do not compute git diff on non! PRs
  • 12835d6 cherry-pick(#35059): chore: typo in prompt (#35061)
  • ef33c83 cherry-pick(#35057): chore: rename to copy prompt
  • 224385a cherry-pick(#35050): docs: update Git information image in release notes
  • Additional commits viewable in compare view

Updates storybook from 8.4.1 to 8.6.12

Release notes

Sourced from storybook's releases.

v8.6.12

8.6.12

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from storybook's changelog.

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

... (truncated)

Commits
  • 1c35b29 Bump version from "8.6.11" to "8.6.12" [skip ci]
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • 9a7a795 Bump version from "8.6.5" to "8.6.6" [skip ci]
  • 4e23d75 Bump version from "8.6.4" to "8.6.5" [skip ci]
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for storybook since your current version.


Updates @storybook/cli from 8.4.1 to 8.6.12

Release notes

Sourced from @​storybook/cli's releases.

v8.6.12

8.6.12

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from @​storybook/cli's changelog.

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

... (truncated)

Commits
  • 1c35b29 Bump version from "8.6.11" to "8.6.12" [skip ci]
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • 9a7a795 Bump version from "8.6.5" to "8.6.6" [skip ci]
  • 4e23d75 Bump version from "8.6.4" to "8.6.5" [skip ci]
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/cli since your current version.


Updates esbuild-sass-plugin from 2.15.0 to 3.3.1

Release notes

Sourced from esbuild-sass-plugin's releases.

v3.3.1

What's Changed

New Contributors

Full Changelog: glromeo/esbuild-sass-plugin@v3.3.0...v3.3.1

v3.3.0

What's Changed

New Contributors

Full Changelog: glromeo/esbuild-sass-plugin@v3.2.0...v3.3.0

local-css

Added support for type: 'local-css' #173 thanks to @​kohlmannj

There's always a catch

image

  • type now can be a function that takes care of rendering the style module #171
  • sass-embedded is now optional (installed as peer dependency) #168

Pedal to the metal!!!

Bye bye dart-sass...welcome sass-embedded, the speed increase is palpable!

A big thank you to the sass maintainers for this work ...and to Nathan for pushing for this change

Sources!

src folder maybe needed in published package #155

v2.16.0

bitmoji

I just updated esbuild and sass to the latest and greatest...

Commits
  • f0e58c9 Update package.json
  • 0151ef4 Merge pull request #179 from dungjk/feature/named_exports
  • 6dba8bd style: update coding style to align with source code conventions
  • 6abbf37 feat: Add support namedExports
  • e6519ee Update package.json
  • 947f1ef Merge pull request #177 from Valgrifer/patch-1
  • 3856b4e accept esbuild 0.21
  • de2948c Create tea.yaml
  • 12bf67f Update package.json
  • 02fc7fb Merge pull request #173 from kohlmannj/local-css
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…ok, @storybook/cli and esbuild-sass-plugin

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.2 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@playwright/experimental-ct-react](https://github.com/microsoft/playwright), [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli), [@storybook/cli](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) and [esbuild-sass-plugin](https://github.com/glromeo/esbuild-sass-plugin). These dependencies need to be updated together.


Updates `esbuild` from 0.19.3 to 0.25.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.19.3...v0.25.2)

Updates `@playwright/experimental-ct-react` from 1.49.0 to 1.51.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.0...v1.51.1)

Updates `storybook` from 8.4.1 to 8.6.12
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.12/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.12/code/lib/cli)

Updates `@storybook/cli` from 8.4.1 to 8.6.12
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.12/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.12/code/lib/cli)

Updates `esbuild-sass-plugin` from 2.15.0 to 3.3.1
- [Release notes](https://github.com/glromeo/esbuild-sass-plugin/releases)
- [Commits](glromeo/esbuild-sass-plugin@v2.15.0...v3.3.1)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.2
  dependency-type: indirect
- dependency-name: "@playwright/experimental-ct-react"
  dependency-version: 1.51.1
  dependency-type: direct:development
- dependency-name: storybook
  dependency-version: 8.6.12
  dependency-type: indirect
- dependency-name: "@storybook/cli"
  dependency-version: 8.6.12
  dependency-type: direct:development
- dependency-name: esbuild-sass-plugin
  dependency-version: 3.3.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from d3m1d0v as a code owner April 14, 2025 12:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 14, 2025
@dependabot dependabot bot requested a review from makhnatkin as a code owner April 14, 2025 12:02
@dependabot dependabot bot added the major label Apr 14, 2025
@gravity-ui-bot
Copy link
Contributor

Visual Tests Report is ready.

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 javascript Pull requests that update javascript code major
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants