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 #1481

Merged
merged 1 commit into from Oct 24, 2022
Merged

chore(deps): update devdependencies #1481

merged 1 commit into from Oct 24, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 24, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/validator (source) ~13.7.8 -> ~13.7.9 age adoption passing confidence
esbuild ~0.15.11 -> ~0.15.12 age adoption passing confidence
eslint (source) ~8.25.0 -> ~8.26.0 age adoption passing confidence
eslint-define-config ~1.7.0 -> ~1.8.0 age adoption passing confidence
eslint-plugin-jsdoc ~39.3.6 -> ~39.3.23 age adoption passing confidence
simple-git-hooks ~2.8.0 -> ~2.8.1 age adoption passing confidence
tsx ~3.10.1 -> ~3.11.0 age adoption passing confidence

Release Notes

evanw/esbuild

v0.15.12

Compare Source

  • Fix minifier correctness bug with single-use substitutions (#​2619)

    When minification is enabled, esbuild will attempt to eliminate variables that are only used once in certain cases. For example, esbuild minifies this code:

    function getEmailForUser(name) {
      let users = db.table('users');
      let user = users.find({ name });
      let email = user?.get('email');
      return email;
    }

    into this code:

    function getEmailForUser(e){return db.table("users").find({name:e})?.get("email")}

    However, this transformation had a bug where esbuild did not correctly consider the "read" part of binary read-modify-write assignment operators. For example, it's incorrect to minify the following code into bar += fn() because the call to fn() might modify bar:

    const foo = fn();
    bar += foo;

    In addition to fixing this correctness bug, this release also improves esbuild's output in the case where all values being skipped over are primitives:

    function toneMapLuminance(r, g, b) {
      let hdr = luminance(r, g, b)
      let decay = 1 / (1 + hdr)
      return 1 - decay
    }

    Previous releases of esbuild didn't substitute these single-use variables here, but esbuild will now minify this to the following code starting with this release:

    function toneMapLuminance(e,n,a){return 1-1/(1+luminance(e,n,a))}
eslint/eslint

v8.26.0

Compare Source

Features

  • 4715787 feat: check Object.create() in getter-return (#​16420) (Yuki Hirasawa)
  • 28d1902 feat: no-implicit-globals supports exported block comment (#​16343) (Sosuke Suzuki)
  • e940be7 feat: Use ESLINT_USE_FLAT_CONFIG environment variable for flat config (#​16356) (Tomer Aberbach)
  • dd0c58f feat: Swap out Globby for custom globbing solution. (#​16369) (Nicholas C. Zakas)

Bug Fixes

  • df77409 fix: use baseConfig constructor option in FlatESLint (#​16432) (Milos Djermanovic)
  • 33668ee fix: Ensure that glob patterns are matched correctly. (#​16449) (Nicholas C. Zakas)
  • 740b208 fix: ignore messages without a ruleId in getRulesMetaForResults (#​16409) (Francesco Trotta)
  • 8f9759e fix: --ignore-pattern in flat config mode should be relative to cwd (#​16425) (Milos Djermanovic)
  • 325ad37 fix: make getRulesMetaForResults return a plain object in trivial case (#​16438) (Francesco Trotta)
  • a2810bc fix: Ensure that directories can be unignored. (#​16436) (Nicholas C. Zakas)
  • 35916ad fix: Ensure unignore and reignore work correctly in flat config. (#​16422) (Nicholas C. Zakas)

Documentation

  • 651649b docs: Core concepts page (#​16399) (Ben Perlmutter)
  • 631cf72 docs: note --ignore-path not supported with flat config (#​16434) (Andy Edwards)
  • 1692840 docs: fix syntax in examples for new config files (#​16427) (Milos Djermanovic)
  • d336cfc docs: Document extending plugin with new config (#​16394) (Ben Perlmutter)

Chores

Shinigami92/eslint-define-config

v1.8.0

Compare Source

diff

  • Add support for Flat ESLint Config (#​122)
gajus/eslint-plugin-jsdoc

v39.3.23

Compare Source

Bug Fixes
  • require-returns-check: allow implicit-return finally if other try-catch branches returning; fixes #​926 (12da503)

v39.3.22

Compare Source

Bug Fixes
  • valid-types: report problems with name parsing (e247d67)

v39.3.21

Compare Source

Bug Fixes
  • require-param: do not cache by comment node; fixes #​901 (867edc3)

v39.3.20

Compare Source

Bug Fixes
  • require-returns-check: allow for missing catch or finalizer and missing case contents; fixes #​924 (4fabdd6)

v39.3.19

Compare Source

Bug Fixes
  • require-param: be tolerant if this is not included as [@param](https://togithub.com/param); fixes #​919 (c1f21f8)

v39.3.18

Compare Source

Bug Fixes
  • require-returns-check: check child nodes of consequents; fixes #​923 (dc1f875)

v39.3.17

Compare Source

Bug Fixes
  • require-returns-check: throw statements to be exempted from final check if elsewhere in function; fixes #​892 (87c1c2a)

v39.3.16

Compare Source

Bug Fixes
  • check-param-names: tolerate documented "this" param; fixes #​919 (5d20bdf)

v39.3.15

Compare Source

Bug Fixes
  • require-returns-check: checks that all branches of final node return; fixes #​892 (bdd6af2)

v39.3.14

Compare Source

Bug Fixes

v39.3.13

Compare Source

Bug Fixes
  • check-param-names: properly handle index offset (0729508)

v39.3.12

Compare Source

Bug Fixes
esbuild-kit/tsx

v3.11.0

Compare Source

Features

v3.10.4

Compare Source

Bug Fixes

v3.10.3

Compare Source

Bug Fixes

v3.10.2

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 3am 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, click this checkbox.

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 24, 2022 01:15
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Oct 24, 2022
@codecov
Copy link

codecov bot commented Oct 24, 2022

Codecov Report

Merging #1481 (a769a23) into next (0772887) will not change coverage.
The diff coverage is n/a.

Additional details and impacted files
@@           Coverage Diff           @@
##             next    #1481   +/-   ##
=======================================
  Coverage   99.62%   99.62%           
=======================================
  Files        2165     2165           
  Lines      237132   237132           
  Branches     1013     1013           
=======================================
  Hits       236242   236242           
  Misses        869      869           
  Partials       21       21           

import-brain
import-brain previously approved these changes Oct 24, 2022
import-brain
import-brain previously approved these changes Oct 24, 2022
@ST-DDT ST-DDT enabled auto-merge (squash) October 24, 2022 11:33
@ST-DDT ST-DDT merged commit 532e91c into next Oct 24, 2022
@Shinigami92 Shinigami92 deleted the renovate/devdependencies branch October 24, 2022 12:06
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
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

3 participants