Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 19, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ~0.14.22 -> ~0.14.23 age adoption passing confidence

Release Notes

evanw/esbuild

v0.14.23

Compare Source

  • Update feature database to indicate that node 16.14+ supports import assertions (#​2030)

    Node versions 16.14 and above now support import assertions according to these release notes. This release updates esbuild's internal feature compatibility database with this information, so esbuild no longer strips import assertions with --target=node16.14:

    // Original code
    import data from './package.json' assert { type: 'json' }
    console.log(data)
    
    // Old output (with --target=node16.14)
    import data from "./package.json";
    console.log(data);
    
    // New output (with --target=node16.14)
    import data from "./package.json" assert { type: "json" };
    console.log(data);
  • Basic support for CSS @layer rules (#​2027)

    This adds basic parsing support for a new CSS feature called @layer that changes how the CSS cascade works. Adding parsing support for this rule to esbuild means esbuild can now minify the contents of @layer rules:

    /* Original code */
    @​layer a {
      @​layer b {
        div {
          color: yellow;
          margin: 0.0px;
        }
      }
    }
    
    /* Old output (with --minify) */
    @​layer a{@​layer b {div {color: yellow; margin: 0px;}}}
    
    /* New output (with --minify) */
    @​layer a.b{div{color:#ff0;margin:0}}

    You can read more about @layer here:

    Note that the support added in this release is only for parsing and printing @layer rules. The bundler does not yet know about these rules and bundling with @layer may result in behavior changes since these new rules have unusual ordering constraints that behave differently than all other CSS rules. Specifically the order is derived from the first instance while with every other CSS rule, the order is derived from the last instance.


Configuration

📅 Schedule: "before 2am" (UTC).

🚦 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, click this checkbox.

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

@renovate renovate bot requested a review from a team as a code owner February 19, 2022 00:18
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Feb 19, 2022
@codecov
Copy link

codecov bot commented Feb 19, 2022

Codecov Report

Merging #509 (d621813) into main (b016f5e) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #509   +/-   ##
=======================================
  Coverage   99.34%   99.34%           
=======================================
  Files        1919     1919           
  Lines      176333   176333           
  Branches      903      903           
=======================================
  Hits       175176   175176           
  Misses       1101     1101           
  Partials       56       56           

Shinigami92
Shinigami92 previously approved these changes Feb 19, 2022
@Shinigami92 Shinigami92 requested a review from a team February 19, 2022 10:07
ST-DDT
ST-DDT previously approved these changes Feb 19, 2022
@renovate renovate bot dismissed stale reviews from ST-DDT and Shinigami92 via d621813 February 19, 2022 10:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5526a1e to d621813 Compare February 19, 2022 10:26
@Shinigami92 Shinigami92 merged commit 431c108 into main Feb 19, 2022
@Shinigami92 Shinigami92 deleted the renovate/all-minor-patch branch February 19, 2022 10:54
demipel8 pushed a commit to demipel8/faker that referenced this pull request Mar 11, 2022
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

c: dependencies Pull requests that adds/updates a dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants