Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.17.12 -> 0.17.14 age adoption passing confidence

Release Notes

evanw/esbuild

v0.17.14

Compare Source

  • Allow the TypeScript 5.0 const modifier in object type declarations (#​3021)

    The new TypeScript 5.0 const modifier was added to esbuild in version 0.17.5, and works with classes, functions, and arrow expressions. However, support for it wasn't added to object type declarations (e.g. interfaces) due to an oversight. This release adds support for these cases, so the following TypeScript 5.0 code can now be built with esbuild:

    interface Foo { <const T>(): T }
    type Bar = { new <const T>(): T }
  • Implement preliminary lowering for CSS nesting (#​1945)

    Chrome has implemented the new CSS nesting specification in version 112, which is currently in beta but will become stable very soon. So CSS nesting is now a part of the web platform!

    This release of esbuild can now transform nested CSS syntax into non-nested CSS syntax for older browsers. The transformation relies on the :is() pseudo-class in many cases, so the transformation is only guaranteed to work when targeting browsers that support :is() (e.g. Chrome 88+). You'll need to set esbuild's target to the browsers you intend to support to tell esbuild to do this transformation. You will get a warning if you use CSS nesting syntax with a target which includes older browsers that don't support :is().

    The lowering transformation looks like this:

    /* Original input */
    a.btn {
      color: #&#8203;333;
      &:hover { color: #&#8203;444 }
      &:active { color: #&#8203;555 }
    }
    
    /* New output (with --target=chrome88) */
    a.btn {
      color: #&#8203;333;
    }
    a.btn:hover {
      color: #&#8203;444;
    }
    a.btn:active {
      color: #&#8203;555;
    }

    More complex cases may generate the :is() pseudo-class:

    /* Original input */
    div, p {
      .warning, .error {
        padding: 20px;
      }
    }
    
    /* New output (with --target=chrome88) */
    :is(div, p) :is(.warning, .error) {
      padding: 20px;
    }

    In addition, esbuild now has a special warning message for nested style rules that start with an identifier. This isn't allowed in CSS because the syntax would be ambiguous with the existing declaration syntax. The new warning message looks like this:

    ▲ [WARNING] A nested style rule cannot start with "p" because it looks like the start of a declaration [css-syntax-error]
    
        <stdin>:1:7:
          1 │ main { p { margin: auto } }
            │        ^
            ╵        :is(p)
    
      To start a nested style rule with an identifier, you need to wrap the identifier in ":is(...)" to
      prevent the rule from being parsed as a declaration.
    

    Keep in mind that the transformation in this release is a preliminary implementation. CSS has many features that interact in complex ways, and there may be some edge cases that don't work correctly yet.

  • Minification now removes unnecessary & CSS nesting selectors

    This release introduces the following CSS minification optimizations:

    /* Original input */
    a {
      font-weight: bold;
      & {
        color: blue;
      }
      & :hover {
        text-decoration: underline;
      }
    }
    
    /* Old output (with --minify) */
    a{font-weight:700;&{color:#&#8203;00f}& :hover{text-decoration:underline}}
    
    /* New output (with --minify) */
    a{font-weight:700;:hover{text-decoration:underline}color:#&#8203;00f}
  • Minification now removes duplicates from CSS selector lists

    This release introduces the following CSS minification optimization:

    /* Original input */
    div, div { color: red }
    
    /* Old output (with --minify) */
    div,div{color:red}
    
    /* New output (with --minify) */
    div{color:red}

v0.17.13

Compare Source

  • Work around an issue with NODE_PATH and Go's WebAssembly internals (#​3001)

    Go's WebAssembly implementation returns EINVAL instead of ENOTDIR when using the readdir syscall on a file. This messes up esbuild's implementation of node's module resolution algorithm since encountering ENOTDIR causes esbuild to continue its search (since it's a normal condition) while other encountering other errors causes esbuild to fail with an I/O error (since it's an unexpected condition). You can encounter this issue in practice if you use node's legacy NODE_PATH feature to tell esbuild to resolve node modules in a custom directory that was not installed by npm. This release works around this problem by converting EINVAL into ENOTDIR for the readdir syscall.

  • Fix a minification bug with CSS @layer rules that have parsing errors (#​3016)

    CSS at-rules require either a {} block or a semicolon at the end. Omitting both of these causes esbuild to treat the rule as an unknown at-rule. Previous releases of esbuild had a bug that incorrectly removed unknown at-rules without any children during minification if the at-rule token matched an at-rule that esbuild can handle. Specifically cssnano can generate @layer rules with parsing errors, and empty @layer rules cannot be removed because they have side effects (@layer didn't exist when esbuild's CSS support was added, so esbuild wasn't written to handle this). This release changes esbuild to no longer discard @layer rules with parsing errors when minifying (the rule @layer c has a parsing error):

    /* Original input */
    @&#8203;layer a {
      @&#8203;layer b {
        @&#8203;layer c
      }
    }
    
    /* Old output (with --minify) */
    @&#8203;layer a.b;
    
    /* New output (with --minify) */
    @&#8203;layer a.b.c;
  • Unterminated strings in CSS are no longer an error

    The CSS specification provides rules for handling parsing errors. One of those rules is that user agents must close strings upon reaching the end of a line (i.e., before an unescaped line feed, carriage return or form feed character), but then drop the construct (declaration or rule) in which the string was found. For example:

    p {
      color: green;
      font-family: 'Courier New Times
      color: red;
      color: green;
    }

    ...would be treated the same as:

    p { color: green; color: green; }

    ...because the second declaration (from font-family to the semicolon after color: red) is invalid and is dropped.

    Previously using this CSS with esbuild failed to build due to a syntax error, even though the code can be interpreted by a browser. With this release, the code now produces a warning instead of an error, and esbuild prints the invalid CSS such that it stays invalid in the output:

    /* esbuild's new non-minified output: */
    p {
      color: green;
      font-family: 'Courier New Times
      color: red;
      color: green;
    }
    /* esbuild's new minified output: */
    p{font-family:'Courier New Times
    color: red;color:green}

Configuration

📅 Schedule: Branch creation - "after 01:00 on sunday" (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependency Dependency Upgrade label Mar 26, 2023
@github-actions
Copy link
Contributor

Size Change: 0 B

Total Size: 8.66 MB

ℹ️ View Unchanged
Filename Size Change
./dist/bin 4.1 kB 0 B
./dist/bin/prettier.cjs 2.14 kB 0 B
./dist/doc.d.ts 6.85 kB 0 B
./dist/doc.js 56.2 kB 0 B
./dist/doc.mjs 52.5 kB 0 B
./dist/index.cjs 38 kB 0 B
./dist/index.d.ts 25.4 kB 0 B
./dist/index.mjs 710 kB 0 B
./dist/internal 4.1 kB 0 B
./dist/internal/cli.mjs 220 kB 0 B
./dist/internal/third-party.mjs 227 kB 0 B
./dist/LICENSE 247 kB 0 B
./dist/package.json 6.19 kB 0 B
./dist/plugins 4.1 kB 0 B
./dist/plugins/acorn.d.ts 109 B 0 B
./dist/plugins/acorn.js 146 kB 0 B
./dist/plugins/acorn.mjs 146 kB 0 B
./dist/plugins/angular.d.ts 177 B 0 B
./dist/plugins/angular.js 43.5 kB 0 B
./dist/plugins/angular.mjs 42.8 kB 0 B
./dist/plugins/babel.d.ts 402 B 0 B
./dist/plugins/babel.js 310 kB 0 B
./dist/plugins/babel.mjs 310 kB 0 B
./dist/plugins/estree.d.ts 0 B 0 B 🆕
./dist/plugins/estree.js 185 kB 0 B
./dist/plugins/estree.mjs 185 kB 0 B
./dist/plugins/flow.d.ts 90 B 0 B
./dist/plugins/flow.js 728 kB 0 B
./dist/plugins/flow.mjs 728 kB 0 B
./dist/plugins/glimmer.d.ts 93 B 0 B
./dist/plugins/glimmer.js 134 kB 0 B
./dist/plugins/glimmer.mjs 134 kB 0 B
./dist/plugins/graphql.d.ts 93 B 0 B
./dist/plugins/graphql.js 43.6 kB 0 B
./dist/plugins/graphql.mjs 42.9 kB 0 B
./dist/plugins/html.d.ts 139 B 0 B
./dist/plugins/html.js 139 kB 0 B
./dist/plugins/html.mjs 138 kB 0 B
./dist/plugins/markdown.d.ts 127 B 0 B
./dist/plugins/markdown.js 152 kB 0 B
./dist/plugins/markdown.mjs 152 kB 0 B
./dist/plugins/meriyah.d.ts 93 B 0 B
./dist/plugins/meriyah.js 121 kB 0 B
./dist/plugins/meriyah.mjs 121 kB 0 B
./dist/plugins/postcss.d.ts 121 B 0 B
./dist/plugins/postcss.js 154 kB 0 B
./dist/plugins/postcss.mjs 153 kB 0 B
./dist/plugins/typescript.d.ts 96 B 0 B
./dist/plugins/typescript.js 1.16 MB 0 B
./dist/plugins/typescript.mjs 1.16 MB 0 B
./dist/plugins/yaml.d.ts 90 B 0 B
./dist/plugins/yaml.js 124 kB 0 B
./dist/plugins/yaml.mjs 124 kB 0 B
./dist/README.md 4.01 kB 0 B
./dist/standalone.d.ts 1.42 kB 0 B
./dist/standalone.js 86.1 kB 0 B
./dist/standalone.mjs 85.7 kB 0 B

compressed-size-action

@fisker fisker merged commit 99ce2d8 into next Mar 27, 2023
@fisker fisker deleted the renovate/esbuild-0.x branch March 27, 2023 01:27
medikoo pushed a commit to medikoo/prettier-elastic that referenced this pull request Feb 13, 2024
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependency Dependency Upgrade

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants