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.19.12 #1673

Merged
merged 1 commit into from
Jan 25, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.19.11 -> 0.19.12 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.19.12

Compare Source

  • The "preserve" JSX mode now preserves JSX text verbatim (#​3605)

    The JSX specification deliberately doesn't specify how JSX text is supposed to be interpreted and there is no canonical way to interpret JSX text. Two most popular interpretations are Babel and TypeScript. Yes they are different (esbuild deliberately follows TypeScript by the way).

    Previously esbuild normalized text to the TypeScript interpretation when the "preserve" JSX mode is active. However, "preserve" should arguably reproduce the original JSX text verbatim so that whatever JSX transform runs after esbuild is free to interpret it however it wants. So with this release, esbuild will now pass JSX text through unmodified:

    // Original code
    let el =
      <a href={'/'} title='&apos;&quot;'> some text
        {foo}
          more text </a>
    
    // Old output (with --loader=jsx --jsx=preserve)
    let el = <a href="/" title={`'"`}>
      {" some text"}
      {foo}
      {"more text "}
    </a>;
    
    // New output (with --loader=jsx --jsx=preserve)
    let el = <a href={"/"} title='&apos;&quot;'> some text
        {foo}
          more text </a>;
  • Allow JSX elements as JSX attribute values

    JSX has an obscure feature where you can use JSX elements in attribute position without surrounding them with {...}. It looks like this:

    let el = <div data-ab=<><a/><b/></>/>;

    I think I originally didn't implement it even though it's part of the JSX specification because it previously didn't work in TypeScript (and potentially also in Babel?). However, support for it was silently added in TypeScript 4.8 without me noticing and Babel has also since fixed their bugs regarding this feature. So I'm adding it to esbuild too now that I know it's widely supported.

    Keep in mind that there is some ongoing discussion about removing this feature from JSX. I agree that the syntax seems out of place (it does away with the elegance of "JSX is basically just XML with {...} escapes" for something arguably harder to read, which doesn't seem like a good trade-off), but it's in the specification and TypeScript and Babel both implement it so I'm going to have esbuild implement it too. However, I reserve the right to remove it from esbuild if it's ever removed from the specification in the future. So use it with caution.

  • Fix a bug with TypeScript type parsing (#​3574)

    This release fixes a bug with esbuild's TypeScript parser where a conditional type containing a union type that ends with an infer type that ends with a constraint could fail to parse. This was caused by the "don't parse a conditional type" flag not getting passed through the union type parser. Here's an example of valid TypeScript code that previously failed to parse correctly:

    type InferUnion<T> = T extends { a: infer U extends number } | infer U extends number ? U : never

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 dependencies Pull requests that update a dependency file label Jan 23, 2024
@JellyBrick JellyBrick merged commit adf3e31 into master Jan 25, 2024
8 checks passed
@JellyBrick JellyBrick deleted the renovate/esbuild-0.x branch January 25, 2024 15:13
EdiBOI25 added a commit to EdiBOI25/youtube-music-edi-custom that referenced this pull request Jan 27, 2024
* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 85.7% (289 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 32.6% (110 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(deps): update dependency vite to v5.0.12 [security] (th-ch#1659)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-alpha.11 (th-ch#1656)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/dependency-review-action action to v4 (th-ch#1654)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.18 (th-ch#1662)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update playwright monorepo to v1.41.1 (th-ch#1660)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 92.5% (312 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/zh_Hans/

* chore(i18n): Translated using Weblate (French)

Currently translated at 83.6% (282 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/fr/

* chore(i18n): Translated using Weblate (Thai)

Currently translated at 18.3% (62 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/th/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 52.5% (177 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore: Update issue templates (th-ch#1661)

* Update bug_report.yml

* Update feature_request.yml

* Update bug_report.yml

* fix(deps): update dependency @electron/remote to v2.1.2 (th-ch#1676)

* chore(deps): update dependency esbuild to v0.19.12 (th-ch#1673)

* chore(deps): update dependency vite-plugin-inspect to v0.8.3 (th-ch#1672)

* chore(deps): update pnpm to v8.14.3 (th-ch#1668)

* chore(deps): update dependency @typescript-eslint/eslint-plugin to v6.19.1 (th-ch#1669)

* fix(deps): update dependency i18next to v23.7.19 (th-ch#1680)

* chore(deps): update dependency electron to v29.0.0-beta.1 (th-ch#1670)

* chore(i18n): Translated using Weblate (Italian)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/it/

* chore(deps): update dependency rollup to v4.9.6 (th-ch#1663)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.2 (th-ch#1681)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.3 (th-ch#1683)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.20 (th-ch#1684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: 今颯太郎 <[email protected]>
Co-authored-by: Ahmad Rosi Ali <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raymond Nee <[email protected]>
Co-authored-by: Pierre Touzeau <[email protected]>
Co-authored-by: นฤเบศ ไชยปิ่น <[email protected]>
Co-authored-by: I Wayan Endra Setiawan Suastika <[email protected]>
Co-authored-by: タマツチ <[email protected]>
Co-authored-by: inson1 <[email protected]>
Co-authored-by: Stefano <[email protected]>
EdiBOI25 added a commit to EdiBOI25/youtube-music-edi-custom that referenced this pull request Jan 27, 2024
* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 85.7% (289 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 32.6% (110 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(deps): update dependency vite to v5.0.12 [security] (th-ch#1659)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-alpha.11 (th-ch#1656)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/dependency-review-action action to v4 (th-ch#1654)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.18 (th-ch#1662)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update playwright monorepo to v1.41.1 (th-ch#1660)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 92.5% (312 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/zh_Hans/

* chore(i18n): Translated using Weblate (French)

Currently translated at 83.6% (282 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/fr/

* chore(i18n): Translated using Weblate (Thai)

Currently translated at 18.3% (62 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/th/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 52.5% (177 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore: Update issue templates (th-ch#1661)

* Update bug_report.yml

* Update feature_request.yml

* Update bug_report.yml

* fix(deps): update dependency @electron/remote to v2.1.2 (th-ch#1676)

* chore(deps): update dependency esbuild to v0.19.12 (th-ch#1673)

* chore(deps): update dependency vite-plugin-inspect to v0.8.3 (th-ch#1672)

* chore(deps): update pnpm to v8.14.3 (th-ch#1668)

* chore(deps): update dependency @typescript-eslint/eslint-plugin to v6.19.1 (th-ch#1669)

* fix(deps): update dependency i18next to v23.7.19 (th-ch#1680)

* chore(deps): update dependency electron to v29.0.0-beta.1 (th-ch#1670)

* chore(i18n): Translated using Weblate (Italian)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/it/

* chore(deps): update dependency rollup to v4.9.6 (th-ch#1663)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.2 (th-ch#1681)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.3 (th-ch#1683)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.20 (th-ch#1684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: 今颯太郎 <[email protected]>
Co-authored-by: Ahmad Rosi Ali <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raymond Nee <[email protected]>
Co-authored-by: Pierre Touzeau <[email protected]>
Co-authored-by: นฤเบศ ไชยปิ่น <[email protected]>
Co-authored-by: I Wayan Endra Setiawan Suastika <[email protected]>
Co-authored-by: タマツチ <[email protected]>
Co-authored-by: inson1 <[email protected]>
Co-authored-by: Stefano <[email protected]>
EdiBOI25 added a commit to EdiBOI25/youtube-music-edi-custom that referenced this pull request Jan 27, 2024
* sync branch

* Sync th-ch to edi-version (#2)

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 85.7% (289 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 32.6% (110 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(deps): update dependency vite to v5.0.12 [security] (th-ch#1659)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-alpha.11 (th-ch#1656)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/dependency-review-action action to v4 (th-ch#1654)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.18 (th-ch#1662)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update playwright monorepo to v1.41.1 (th-ch#1660)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 92.5% (312 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/zh_Hans/

* chore(i18n): Translated using Weblate (French)

Currently translated at 83.6% (282 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/fr/

* chore(i18n): Translated using Weblate (Thai)

Currently translated at 18.3% (62 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/th/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 52.5% (177 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore: Update issue templates (th-ch#1661)

* Update bug_report.yml

* Update feature_request.yml

* Update bug_report.yml

* fix(deps): update dependency @electron/remote to v2.1.2 (th-ch#1676)

* chore(deps): update dependency esbuild to v0.19.12 (th-ch#1673)

* chore(deps): update dependency vite-plugin-inspect to v0.8.3 (th-ch#1672)

* chore(deps): update pnpm to v8.14.3 (th-ch#1668)

* chore(deps): update dependency @typescript-eslint/eslint-plugin to v6.19.1 (th-ch#1669)

* fix(deps): update dependency i18next to v23.7.19 (th-ch#1680)

* chore(deps): update dependency electron to v29.0.0-beta.1 (th-ch#1670)

* chore(i18n): Translated using Weblate (Italian)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/it/

* chore(deps): update dependency rollup to v4.9.6 (th-ch#1663)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.2 (th-ch#1681)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.3 (th-ch#1683)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.20 (th-ch#1684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: 今颯太郎 <[email protected]>
Co-authored-by: Ahmad Rosi Ali <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raymond Nee <[email protected]>
Co-authored-by: Pierre Touzeau <[email protected]>
Co-authored-by: นฤเบศ ไชยปิ่น <[email protected]>
Co-authored-by: I Wayan Endra Setiawan Suastika <[email protected]>
Co-authored-by: タマツチ <[email protected]>
Co-authored-by: inson1 <[email protected]>
Co-authored-by: Stefano <[email protected]>

* sync branch from th-ch master (#3)

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 85.7% (289 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 32.6% (110 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(deps): update dependency vite to v5.0.12 [security] (th-ch#1659)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-alpha.11 (th-ch#1656)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update actions/dependency-review-action action to v4 (th-ch#1654)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.18 (th-ch#1662)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update playwright monorepo to v1.41.1 (th-ch#1660)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 92.5% (312 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore(i18n): Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/zh_Hans/

* chore(i18n): Translated using Weblate (French)

Currently translated at 83.6% (282 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/fr/

* chore(i18n): Translated using Weblate (Thai)

Currently translated at 18.3% (62 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/th/

* chore(i18n): Translated using Weblate (Indonesian)

Currently translated at 52.5% (177 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/id/

* chore(i18n): Translated using Weblate (Japanese)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/ja/

* chore: Update issue templates (th-ch#1661)

* Update bug_report.yml

* Update feature_request.yml

* Update bug_report.yml

* fix(deps): update dependency @electron/remote to v2.1.2 (th-ch#1676)

* chore(deps): update dependency esbuild to v0.19.12 (th-ch#1673)

* chore(deps): update dependency vite-plugin-inspect to v0.8.3 (th-ch#1672)

* chore(deps): update pnpm to v8.14.3 (th-ch#1668)

* chore(deps): update dependency @typescript-eslint/eslint-plugin to v6.19.1 (th-ch#1669)

* fix(deps): update dependency i18next to v23.7.19 (th-ch#1680)

* chore(deps): update dependency electron to v29.0.0-beta.1 (th-ch#1670)

* chore(i18n): Translated using Weblate (Italian)

Currently translated at 100.0% (337 of 337 strings)

Translation: th-ch/youtube-music/i18n
Translate-URL: https://hosted.weblate.org/projects/youtube-music/i18n/it/

* chore(deps): update dependency rollup to v4.9.6 (th-ch#1663)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.2 (th-ch#1681)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency electron to v29.0.0-beta.3 (th-ch#1683)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency i18next to v23.7.20 (th-ch#1684)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: 今颯太郎 <[email protected]>
Co-authored-by: Ahmad Rosi Ali <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raymond Nee <[email protected]>
Co-authored-by: Pierre Touzeau <[email protected]>
Co-authored-by: นฤเบศ ไชยปิ่น <[email protected]>
Co-authored-by: I Wayan Endra Setiawan Suastika <[email protected]>
Co-authored-by: タマツチ <[email protected]>
Co-authored-by: inson1 <[email protected]>
Co-authored-by: Stefano <[email protected]>

* changed which items are covered by ambient light

---------

Co-authored-by: 今颯太郎 <[email protected]>
Co-authored-by: Ahmad Rosi Ali <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raymond Nee <[email protected]>
Co-authored-by: Pierre Touzeau <[email protected]>
Co-authored-by: นฤเบศ ไชยปิ่น <[email protected]>
Co-authored-by: I Wayan Endra Setiawan Suastika <[email protected]>
Co-authored-by: タマツチ <[email protected]>
Co-authored-by: inson1 <[email protected]>
Co-authored-by: Stefano <[email protected]>
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant