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

chore(deps): update dependency esbuild to v0.18.15 #8945

Merged
merged 1 commit into from
Jul 20, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.18.14 -> 0.18.15 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.18.15

Compare Source

  • Add the --serve-fallback= option (#​2904)

    The web server built into esbuild serves the latest in-memory results of the configured build. If the requested path doesn't match any in-memory build result, esbuild also provides the --servedir= option to tell esbuild to serve the requested path from that directory instead. And if the requested path doesn't match either of those things, esbuild will either automatically generate a directory listing (for directories) or return a 404 error.

    Starting with this release, that last step can now be replaced with telling esbuild to serve a specific HTML file using the --serve-fallback= option. This can be used to provide a "not found" page for missing URLs. It can also be used to implement a single-page app that mutates the current URL and therefore requires the single app entry point to be served when the page is loaded regardless of whatever the current URL is.

  • Use the tsconfig field in package.json during extends resolution (#​3247)

    This release adds a feature from TypeScript 3.2 where if a tsconfig.json file specifies a package name in the extends field and that package's package.json file has a tsconfig field, the contents of that field are used in the search for the base tsconfig.json file.

  • Implement CSS nesting without :is() when possible (#​1945)

    Previously esbuild would always produce a warning when transforming nested CSS for a browser that doesn't support the :is() pseudo-class. This was because the nesting transform needs to generate an :is() in some complex cases which means the transformed CSS would then not work in that browser. However, the CSS nesting transform can often be done without generating an :is(). So with this release, esbuild will no longer warn when targeting browsers that don't support :is() in the cases where an :is() isn't needed to represent the nested CSS.

    In addition, esbuild's nested CSS transform has been updated to avoid generating an :is() in cases where an :is() is preferable but there's a longer alternative that is also equivalent. This update means esbuild can now generate a combinatorial explosion of CSS for complex CSS nesting syntax when targeting browsers that don't support :is(). This combinatorial explosion is necessary to accurately represent the original semantics. For example:

    /* Original code */
    .first,
    .second,
    .third {
      & > & {
        color: red;
      }
    }
    
    /* Old output (with --target=chrome80) */
    :is(.first, .second, .third) > :is(.first, .second, .third) {
      color: red;
    }
    
    /* New output (with --target=chrome80) */
    .first > .first,
    .first > .second,
    .first > .third,
    .second > .first,
    .second > .second,
    .second > .third,
    .third > .first,
    .third > .second,
    .third > .third {
      color: red;
    }

    This change means you can now use CSS nesting with esbuild when targeting an older browser that doesn't support :is(). You'll now only get a warning from esbuild if you use complex CSS nesting syntax that esbuild can't represent in that older browser without using :is(). There are two such cases:

    /* Case 1 */
    a b {
      .foo & {
        color: red;
      }
    }
    
    /* Case 2 */
    a {
      > b& {
        color: red;
      }
    }

    These two cases still need to use :is(), both for different reasons, and cannot be used when targeting an older browser that doesn't support :is():

    /* Case 1 */
    .foo :is(a b) {
      color: red;
    }
    
    /* Case 2 */
    a > a:is(b) {
      color: red;
    }
  • Automatically lower inset in CSS for older browsers

    With this release, esbuild will now automatically expand the inset property to the top, right, bottom, and left properties when esbuild's target is set to a browser that doesn't support inset:

    /* Original code */
    .app {
      position: absolute;
      inset: 10px 20px;
    }
    
    /* Old output (with --target=chrome80) */
    .app {
      position: absolute;
      inset: 10px 20px;
    }
    
    /* New output (with --target=chrome80) */
    .app {
      position: absolute;
      top: 10px;
      right: 20px;
      bottom: 10px;
      left: 20px;
    }
  • Add support for the new @starting-style CSS rule (#​3249)

    This at rule allow authors to start CSS transitions on first style update. That is, you can now make the transition take effect when the display property changes from none to block.

    /* Original code */
    @​starting-style {
      h1 {
        background-color: transparent;
      }
    }
    
    /* Output */
    @​starting-style{h1{background-color:transparent}}

    This was contributed by @​yisibl.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 enabled auto-merge (squash) July 20, 2023 18:42
@jtoar jtoar added the release:fix This PR is a fix label Jul 20, 2023
@jtoar jtoar modified the milestones: chore, v6.0.0 Jul 20, 2023
@jtoar jtoar added release:chore This PR is a chore (means nothing for users) and removed release:fix This PR is a fix labels Jul 20, 2023
@renovate renovate bot merged commit 9db9666 into main Jul 20, 2023
32 of 38 checks passed
@renovate renovate bot deleted the renovate/esbuild-0.x branch July 20, 2023 19:57
jtoar pushed a commit that referenced this pull request Jul 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [esbuild](https://togithub.com/evanw/esbuild) | [`0.18.14` ->
`0.18.15`](https://renovatebot.com/diffs/npm/esbuild/0.18.14/0.18.15) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.18.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.18.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.18.14/0.18.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.18.14/0.18.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>evanw/esbuild (esbuild)</summary>

###
[`v0.18.15`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01815)

[Compare
Source](https://togithub.com/evanw/esbuild/compare/v0.18.14...v0.18.15)

- Add the `--serve-fallback=` option
([#&#8203;2904](https://togithub.com/evanw/esbuild/issues/2904))

The web server built into esbuild serves the latest in-memory results of
the configured build. If the requested path doesn't match any in-memory
build result, esbuild also provides the `--servedir=` option to tell
esbuild to serve the requested path from that directory instead. And if
the requested path doesn't match either of those things, esbuild will
either automatically generate a directory listing (for directories) or
return a 404 error.

Starting with this release, that last step can now be replaced with
telling esbuild to serve a specific HTML file using the
`--serve-fallback=` option. This can be used to provide a "not found"
page for missing URLs. It can also be used to implement a [single-page
app](https://en.wikipedia.org/wiki/Single-page_application) that mutates
the current URL and therefore requires the single app entry point to be
served when the page is loaded regardless of whatever the current URL
is.

- Use the `tsconfig` field in `package.json` during `extends` resolution
([#&#8203;3247](https://togithub.com/evanw/esbuild/issues/3247))

This release adds a feature from [TypeScript
3.2](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-2.html#tsconfigjson-inheritance-via-nodejs-packages)
where if a `tsconfig.json` file specifies a package name in the
`extends` field and that package's `package.json` file has a `tsconfig`
field, the contents of that field are used in the search for the base
`tsconfig.json` file.

- Implement CSS nesting without `:is()` when possible
([#&#8203;1945](https://togithub.com/evanw/esbuild/issues/1945))

Previously esbuild would always produce a warning when transforming
nested CSS for a browser that doesn't support the `:is()` pseudo-class.
This was because the nesting transform needs to generate an `:is()` in
some complex cases which means the transformed CSS would then not work
in that browser. However, the CSS nesting transform can often be done
without generating an `:is()`. So with this release, esbuild will no
longer warn when targeting browsers that don't support `:is()` in the
cases where an `:is()` isn't needed to represent the nested CSS.

In addition, esbuild's nested CSS transform has been updated to avoid
generating an `:is()` in cases where an `:is()` is preferable but
there's a longer alternative that is also equivalent. This update means
esbuild can now generate a combinatorial explosion of CSS for complex
CSS nesting syntax when targeting browsers that don't support `:is()`.
This combinatorial explosion is necessary to accurately represent the
original semantics. For example:

    ```css
    /* Original code */
    .first,
    .second,
    .third {
      & > & {
        color: red;
      }
    }

    /* Old output (with --target=chrome80) */
    :is(.first, .second, .third) > :is(.first, .second, .third) {
      color: red;
    }

    /* New output (with --target=chrome80) */
    .first > .first,
    .first > .second,
    .first > .third,
    .second > .first,
    .second > .second,
    .second > .third,
    .third > .first,
    .third > .second,
    .third > .third {
      color: red;
    }
    ```

This change means you can now use CSS nesting with esbuild when
targeting an older browser that doesn't support `:is()`. You'll now only
get a warning from esbuild if you use complex CSS nesting syntax that
esbuild can't represent in that older browser without using `:is()`.
There are two such cases:

    ```css
    /* Case 1 */
    a b {
      .foo & {
        color: red;
      }
    }

    /* Case 2 */
    a {
      > b& {
        color: red;
      }
    }
    ```

These two cases still need to use `:is()`, both for different reasons,
and cannot be used when targeting an older browser that doesn't support
`:is()`:

    ```css
    /* Case 1 */
    .foo :is(a b) {
      color: red;
    }

    /* Case 2 */
    a > a:is(b) {
      color: red;
    }
    ```

-   Automatically lower `inset` in CSS for older browsers

With this release, esbuild will now automatically expand the `inset`
property to the `top`, `right`, `bottom`, and `left` properties when
esbuild's `target` is set to a browser that doesn't support `inset`:

    ```css
    /* Original code */
    .app {
      position: absolute;
      inset: 10px 20px;
    }

    /* Old output (with --target=chrome80) */
    .app {
      position: absolute;
      inset: 10px 20px;
    }

    /* New output (with --target=chrome80) */
    .app {
      position: absolute;
      top: 10px;
      right: 20px;
      bottom: 10px;
      left: 20px;
    }
    ```

- Add support for the new
[`@starting-style`](https://drafts.csswg.org/css-transitions-2/#defining-before-change-style-the-starting-style-rule)
CSS rule ([#&#8203;3249](https://togithub.com/evanw/esbuild/pull/3249))

This at rule allow authors to start CSS transitions on first style
update. That is, you can now make the transition take effect when the
`display` property changes from `none` to `block`.

    ```css
    /* Original code */
    @&#8203;starting-style {
      h1 {
        background-color: transparent;
      }
    }

    /* Output */
    @&#8203;starting-style{h1{background-color:transparent}}
    ```

This was contributed by [@&#8203;yisibl](https://togithub.com/yisibl).

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

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

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/redwoodjs/redwood).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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
release:chore This PR is a chore (means nothing for users)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant