Skip to content
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

build(deps-dev): bump the esbuild group with 4 updates #22

Closed
wants to merge 14 commits into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 22, 2023

Bumps the esbuild group with 4 updates: esbuild, esbuild-plugin-copy, esbuild-plugin-replace and esbuild-wasm.

Updates esbuild from 0.19.1 to 0.19.3

Release notes

Sourced from esbuild's releases.

v0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Commits
  • 673ad10 publish 0.19.3 to npm
  • 6402f11 basic support for parsing import attributes
  • 7ece556 fix #3322: avoid temporaries before "use strict"
  • 900a90d transform: banner/footer with local-css/global-css
  • bbd82b2 run make update-compat-table
  • f702f6b remove an unused method
  • a111cc4 fix #3318: ignore invalid commands for old builds
  • 4c5db58 fix #3329: treat more enum values as strings
  • 5ecf535 fix #3377: improve resolution error due to null
  • 79ac17a resolver: adjust some error messages
  • Additional commits viewable in compare view

Updates esbuild-plugin-copy from 2.0.2 to 2.1.1

Commits

Updates esbuild-plugin-replace from 1.3.0 to 1.4.0

Commits

Updates esbuild-wasm from 0.19.1 to 0.19.3

Release notes

Sourced from esbuild-wasm's releases.

v0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Changelog

Sourced from esbuild-wasm's changelog.

0.19.3

  • Fix list-style-type with the local-css loader (#3325)

    The local-css loader incorrectly treated all identifiers provided to list-style-type as a custom local identifier. That included identifiers such as none which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:

    /* Original code */
    ul { list-style-type: none }
    /* Old output (with --loader=local-css) */
    ul {
    list-style-type: stdin_none;
    }
    /* New output (with --loader=local-css) */
    ul {
    list-style-type: none;
    }

    Note that this bug only affected code using the local-css loader. It did not affect code using the css loader.

  • Avoid inserting temporary variables before use strict (#3322)

    This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before use strict directives:

    // Original code
    function foo() {
      'use strict'
      a.b?.c()
    }
    // Old output (with --target=es6)
    function foo() {
    var _a;
    "use strict";
    (_a = a.b) == null ? void 0 : _a.c();
    }
    // New output (with --target=es6)
    function foo() {
    "use strict";
    var _a;
    (_a = a.b) == null ? void 0 : _a.c();
    }

  • Adjust TypeScript enum output to better approximate tsc (#3329)

... (truncated)

Commits
  • 673ad10 publish 0.19.3 to npm
  • 6402f11 basic support for parsing import attributes
  • 7ece556 fix #3322: avoid temporaries before "use strict"
  • 900a90d transform: banner/footer with local-css/global-css
  • bbd82b2 run make update-compat-table
  • f702f6b remove an unused method
  • a111cc4 fix #3318: ignore invalid commands for old builds
  • 4c5db58 fix #3329: treat more enum values as strings
  • 5ecf535 fix #3377: improve resolution error due to null
  • 79ac17a resolver: adjust some error messages
  • 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 22, 2023
@dependabot dependabot bot deployed to npm-update September 22, 2023 12:45 Active
@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from d628e0d to e7266ac Compare September 22, 2023 12:56
@dependabot dependabot bot deployed to npm-update September 22, 2023 12:56 Active
@jelly jelly force-pushed the main branch 4 times, most recently from ad62e52 to a969f98 Compare September 22, 2023 13:22
@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from e7266ac to 6ad32c1 Compare September 25, 2023 12:45
@dependabot dependabot bot deployed to npm-update September 25, 2023 12:45 Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 6ad32c1 to 97b9461 Compare September 25, 2023 12:48
Dependabot creates a PR for us so we have to introduce a new action
which updates node-modules for us.
@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot recreate

@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 97b9461 to bbdb7ee Compare September 26, 2023 09:50
@dependabot dependabot bot deployed to npm-update September 26, 2023 09:50 Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from bbdb7ee to 98c9d4f Compare September 26, 2023 09:51
@jelly jelly deployed to npm-update September 26, 2023 09:51 — with GitHub Actions Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 98c9d4f to 033696e Compare September 26, 2023 09:53
@jelly jelly deployed to npm-update September 26, 2023 09:53 — with GitHub Actions Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 033696e to 82628a2 Compare September 26, 2023 09:55
@jelly jelly deployed to npm-update September 26, 2023 09:55 — with GitHub Actions Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 82628a2 to de41112 Compare September 26, 2023 09:56
@jelly jelly deployed to npm-update September 26, 2023 09:56 — with GitHub Actions Active
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from de41112 to 3c7d576 Compare September 26, 2023 09:58
@jelly jelly deployed to npm-update September 26, 2023 09:58 — with GitHub Actions Active
@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot rebase

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 26, 2023

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot recreate

@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from d15198b to a15bb77 Compare September 26, 2023 10:27
@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot recreate

@jelly jelly deployed to npm-update September 26, 2023 10:29 — with GitHub Actions Active
@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from a15bb77 to 469ebf2 Compare September 26, 2023 10:30
@jelly jelly force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 469ebf2 to 667a8ec Compare September 26, 2023 10:31
@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot recreate

@dependabot dependabot bot force-pushed the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch from 667a8ec to b7ec7e4 Compare September 26, 2023 10:34
@jelly
Copy link
Owner

jelly commented Sep 26, 2023

@dependabot recreate

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 26, 2023

Looks like this PR is already up-to-date with main, and has been recreated more than 5 times in the last 24 hours!

Dependabot couldn't find the original pull request head commit, 469ebf2.
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 28, 2023

Looks like these dependencies are up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Sep 28, 2023
@dependabot dependabot bot deleted the 146fdependabot/npm_and_yarn/esbuild-66ccf2640e branch September 28, 2023 08:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant