chore(deps): update dependency esbuild to v0.17.3 #2976

Merged
konrad merged 1 commits from renovate/esbuild-0.x into main 2023-01-18 20:47:16 +00:00
Member

This PR contains the following updates:

Package Type Update Change
esbuild devDependencies patch 0.17.2 -> 0.17.3

Release Notes

evanw/esbuild

v0.17.3

Compare Source

  • Fix incorrect CSS minification for certain rules (#​2838)

    Certain rules such as @media could previously be minified incorrectly. Due to a typo in the duplicate rule checker, two known @-rules that share the same hash code were incorrectly considered to be equal. This problem was made worse by the rule hashing code considering two unknown declarations (such as CSS variables) to have the same hash code, which also isn't optimal from a performance perspective. Both of these issues have been fixed:

    /* Original input */
    @​media (prefers-color-scheme: dark) { body { --VAR-1: #​000; } }
    @​media (prefers-color-scheme: dark) { body { --VAR-2: #​000; } }
    
    /* Old output (with --minify) */
    @​media (prefers-color-scheme: dark){body{--VAR-2: #​000}}
    
    /* New output (with --minify) */
    @​media (prefers-color-scheme: dark){body{--VAR-1: #​000}}@​media (prefers-color-scheme: dark){body{--VAR-2: #​000}}
    

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 this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.17.2` -> `0.17.3`](https://renovatebot.com/diffs/npm/esbuild/0.17.2/0.17.3) | --- ### Release Notes <details> <summary>evanw/esbuild</summary> ### [`v0.17.3`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#&#8203;0173) [Compare Source](https://github.com/evanw/esbuild/compare/v0.17.2...v0.17.3) - Fix incorrect CSS minification for certain rules ([#&#8203;2838](https://github.com/evanw/esbuild/issues/2838)) Certain rules such as `@media` could previously be minified incorrectly. Due to a typo in the duplicate rule checker, two known `@`-rules that share the same hash code were incorrectly considered to be equal. This problem was made worse by the rule hashing code considering two unknown declarations (such as CSS variables) to have the same hash code, which also isn't optimal from a performance perspective. Both of these issues have been fixed: ```css /* Original input */ @&#8203;media (prefers-color-scheme: dark) { body { --VAR-1: #&#8203;000; } } @&#8203;media (prefers-color-scheme: dark) { body { --VAR-2: #&#8203;000; } } /* Old output (with --minify) */ @&#8203;media (prefers-color-scheme: dark){body{--VAR-2: #&#8203;000}} /* New output (with --minify) */ @&#8203;media (prefers-color-scheme: dark){body{--VAR-1: #&#8203;000}}@&#8203;media (prefers-color-scheme: dark){body{--VAR-2: #&#8203;000}} ``` </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 this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDAuMiIsInVwZGF0ZWRJblZlciI6IjMyLjI0MC4yIn0=-->
renovate added the
dependencies
label 2023-01-18 20:03:53 +00:00
renovate added 1 commit 2023-01-18 20:03:53 +00:00
continuous-integration/drone/pr Build is passing Details
f18c6e0e3c
chore(deps): update dependency esbuild to v0.17.3
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://2976-renovate-esbuild-0-x--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://2976-renovate-esbuild-0-x--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit 0414352b02 into main 2023-01-18 20:47:16 +00:00
konrad deleted branch renovate/esbuild-0.x 2023-01-18 20:47:16 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.