Skip to content

Commit

Permalink
chore(deps): update dependency esbuild to v0.18.11 (#8819)
Browse files Browse the repository at this point in the history
[![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.10` ->
`0.18.11`](https://renovatebot.com/diffs/npm/esbuild/0.18.10/0.18.11) |
[![age](https://badges.renovateapi.com/packages/npm/esbuild/0.18.11/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/esbuild/0.18.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/esbuild/0.18.11/compatibility-slim/0.18.10)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/esbuild/0.18.11/confidence-slim/0.18.10)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v0.18.11`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;01811)

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

- Fix a TypeScript code generation edge case
([#&#8203;3199](https://togithub.com/evanw/esbuild/issues/3199))

This release fixes a regression in version 0.18.4 where using a
TypeScript `namespace` that exports a `class` declaration combined with
`--keep-names` and a `--target` of `es2021` or earlier could cause
esbuild to export the class from the namespace using an incorrect name
(notice the assignment to `X2._Y` vs. `X2.Y`):

    ```ts
    // Original code

    // Old output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
      const _Y = class _Y {
      };
      __name(_Y, "Y");
      let Y = _Y;
      X2._Y = _Y;
    })(X || (X = {}));

    // New output (with --keep-names --target=es2021)
    var X;
    ((X2) => {
      const _Y = class _Y {
      };
      __name(_Y, "Y");
      let Y = _Y;
      X2.Y = _Y;
    })(X || (X = {}));
    ```

</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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNDQuMiIsInVwZGF0ZWRJblZlciI6IjM1LjE0NC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored and jtoar committed Jul 5, 2023
1 parent 9c8760e commit 1dbc080
Show file tree
Hide file tree
Showing 10 changed files with 111 additions and 111 deletions.
2 changes: 1 addition & 1 deletion packages/cli-packages/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"devDependencies": {
"@types/yargs": "17.0.24",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"fast-glob": "3.2.12",
"jest": "29.5.0",
"typescript": "5.1.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "5.0.1",
"dotenv-webpack": "8.0.1",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"fast-glob": "3.2.12",
"file-loader": "6.2.0",
"graphql": "16.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-redwood-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@babel/core": "7.22.5",
"@babel/plugin-transform-typescript": "7.22.5",
"@types/babel__core": "7.20.1",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"jest": "29.5.0",
"klaw-sync": "6.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@types/eslint": "8",
"@types/estree": "1.0.1",
"@typescript-eslint/parser": "5.60.1",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"fast-glob": "3.2.12",
"glob": "10.3.1",
"typescript": "5.1.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@types/aws-lambda": "8.10.119",
"@types/lodash": "4.14.195",
"@types/qs": "6.9.7",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"typescript": "5.1.3"
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
Expand Down
2 changes: 1 addition & 1 deletion packages/internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"chalk": "4.1.2",
"core-js": "3.31.0",
"deepmerge": "4.3.1",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"fast-glob": "3.2.12",
"fs-extra": "11.1.1",
"graphql": "16.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/project-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"string-env-interpolation": "1.0.1"
},
"devDependencies": {
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"jest": "29.5.0",
"rimraf": "5.0.1",
"typescript": "5.1.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@babel/cli": "7.22.5",
"@babel/core": "7.22.5",
"@prisma/internals": "4.16.2",
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"jest": "29.5.0"
},
"gitHead": "3905ed045508b861b495f8d5630d76c7a157d8f1"
Expand Down
2 changes: 1 addition & 1 deletion packages/tui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"stdout-update": "1.6.8"
},
"devDependencies": {
"esbuild": "0.18.10",
"esbuild": "0.18.11",
"jest": "29.5.0",
"typescript": "5.1.3"
}
Expand Down
Loading

0 comments on commit 1dbc080

Please sign in to comment.