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 devdependencies #2430

Merged
merged 1 commit into from Oct 2, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ~20.7.0 -> ~20.8.0 age adoption passing confidence
cypress ~13.2.0 -> ~13.3.0 age adoption passing confidence
esbuild ~0.19.3 -> ~0.19.4 age adoption passing confidence

Release Notes

cypress-io/cypress (cypress)

v13.3.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-0

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 - "before 4am on Monday" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 requested a review from a team as a code owner October 2, 2023 00:39
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Oct 2, 2023
@codecov
Copy link

codecov bot commented Oct 2, 2023

Codecov Report

Merging #2430 (7d972cd) into next (9c96c0a) will increase coverage by 0.00%.
The diff coverage is n/a.

Additional details and impacted files
@@           Coverage Diff           @@
##             next    #2430   +/-   ##
=======================================
  Coverage   99.60%   99.61%           
=======================================
  Files        2820     2820           
  Lines      253880   253880           
  Branches     1101     1105    +4     
=======================================
+ Hits       252886   252910   +24     
+ Misses        967      943   -24     
  Partials       27       27           

see 1 file with indirect coverage changes

@ST-DDT ST-DDT enabled auto-merge (squash) October 2, 2023 07:21
@ST-DDT ST-DDT added this to the vAnytime milestone Oct 2, 2023
@ST-DDT ST-DDT requested review from a team October 2, 2023 11:05
@ST-DDT ST-DDT merged commit e6d319e into next Oct 2, 2023
21 checks passed
@xDivisionByZerox xDivisionByZerox deleted the renovate/devdependencies branch October 2, 2023 17:11
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.

None yet

2 participants