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

bump(deps): update dependency esbuild to ^0.19.4 #622

Merged
merged 1 commit into from
Sep 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ^0.19.3 -> ^0.19.4 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.19.4

Compare Source

  • Fix printing of JavaScript decorators in tricky cases (#​3396)

    This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:

    // Original code
    import { constant } from './constants.js'
    import { imported } from 'external'
    import { undef } from './empty.js'
    class Foo {
      @​constant()
      @​imported()
      @​undef()
      foo
    }
    
    // Old output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​123()
      @​(0, import_external.imported)()
      @​(void 0)()
      foo;
    };
    
    // New output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​(123())
      @​((0, import_external.imported)())
      @​((void 0)())
      foo;
    };
  • Allow pre-release versions to be passed to target (#​3388)

    People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's target setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to target and do something reasonable with them.


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.

@netlify
Copy link

netlify bot commented Sep 28, 2023

Deploy Preview for contented ready!

Name Link
🔨 Latest commit eb3f3e3
🔍 Latest deploy log https://app.netlify.com/sites/contented/deploys/651562c41e1e760008c9c3f6
😎 Deploy Preview https://deploy-preview-622--contented.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions github-actions bot added area/jest-preset kind/dependencies Pull requests that update a dependency file labels Sep 28, 2023
@codecov
Copy link

codecov bot commented Sep 28, 2023

Codecov Report

Merging #622 (eb3f3e3) into main (0551e1b) will increase coverage by 6.32%.
Report is 65 commits behind head on main.
The diff coverage is 96.74%.

@@            Coverage Diff             @@
##             main     #622      +/-   ##
==========================================
+ Coverage   85.00%   91.32%   +6.32%     
==========================================
  Files          10       13       +3     
  Lines         420      519      +99     
  Branches       73      100      +27     
==========================================
+ Hits          357      474     +117     
+ Misses         63       45      -18     
Files Coverage Δ
...ented-pipeline-jest-md/src/JestMarkdownPipeline.ts 100.00% <100.00%> (ø)
...ages/contented-pipeline-md/src/MarkdownPipeline.ts 85.29% <100.00%> (ø)
...ages/contented-pipeline-md/src/UnifiedProcessor.ts 87.09% <100.00%> (-0.41%) ⬇️
...contented-pipeline-md/src/plugins/RehypeHeading.ts 93.54% <ø> (+6.45%) ⬆️
...contented-pipeline-md/src/plugins/RehypeMermaid.ts 93.75% <ø> (+50.00%) ⬆️
...ntented-pipeline-md/src/plugins/RemarkCodeblock.ts 100.00% <100.00%> (ø)
...d-pipeline-md/src/plugins/RemarkDirectiveRehype.ts 100.00% <100.00%> (ø)
...es/contented-pipeline-md/src/plugins/RemarkLink.ts 100.00% <100.00%> (+28.57%) ⬆️
...ages/contented-processor/src/ContentedProcessor.ts 88.46% <100.00%> (+2.04%) ⬆️
...s/contented-pipeline-md/src/plugins/RehypeShiki.ts 96.77% <96.77%> (ø)
... and 2 more

@renovate renovate bot force-pushed the renovate/esbuild-0.x branch from cb66090 to eb3f3e3 Compare September 28, 2023 11:25
@fuxingloh fuxingloh merged commit 7fa1acf into main Sep 28, 2023
12 checks passed
@fuxingloh fuxingloh deleted the renovate/esbuild-0.x branch September 28, 2023 11:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant