chore(deps): update all non-major dependencies
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@rollup/plugin-babel | devDependencies | patch | 5.2.2 -> 5.2.3 |
@rollup/plugin-commonjs | devDependencies | minor | 17.0.0 -> 17.1.0 |
@rollup/plugin-node-resolve | devDependencies | patch | 11.1.0 -> 11.1.1 |
eslint (source) | devDependencies | minor | 7.18.0 -> 7.19.0 |
eslint-plugin-jsdoc | devDependencies | minor | 31.0.6 -> 31.6.0 |
i18next (source) | dependencies | patch | 19.8.4 -> 19.8.5 |
karma (source) | devDependencies | patch | 6.0.0 -> 6.0.3 |
rollup (source) | devDependencies | minor | 2.36.2 -> 2.38.2 |
Release Notes
eslint/eslint
v7.19.0
-
ce7f061
Update: add shadowed variable loc to message in no-shadow (fixes #13646) (#13841) (t-mangoe) -
c60e23f
Update: fixlet
logic in for-in and for-of loops in no-extra-parens (#14011) (Milos Djermanovic) -
d76e8f6
Fix: no-useless-rename invalid autofix with parenthesized identifiers (#14032) (Milos Djermanovic) -
5800d92
Docs: Clarify stylistic rule update policy (#14052) (Brandon Mills) -
0ccf6d2
Docs: remove configuring.md (#14036) (Milos Djermanovic) -
65bb0ab
Chore: Clean up new issue workflow (#14040) (Nicholas C. Zakas) -
e1da90f
Fix: nested indenting for offsetTernaryExpressions: true (fixes #13971) (#13972) (Chris Brody) -
1a078b9
Update: check ternary:
even if?
was reported in space-infix-ops (#13963) (Milos Djermanovic) -
fb27422
Fix: extend prefer-const fixer range to whole declaration (fixes #13899) (#14033) (Nitin Kumar) -
e0b05c7
Docs: add a correct example to no-unsafe-optional-chaining (refs #14029) (#14050) (armin yahya) -
46e836d
Sponsors: Sync README with website (ESLint Jenkins) -
3fc4fa4
Docs: update configuring links (#14038) (Milos Djermanovic) -
8561c21
Docs: fix broken links in configuring/README.md (#14046) (Milos Djermanovic) -
1c309eb
Update: fix no-invalid-regexp false negatives with no flags specified (#14018) (Milos Djermanovic) -
f6602d5
Docs: Reorganize Configuration Documentation (#13837) (klkhan) -
c753b44
Sponsors: Sync README with website (ESLint Jenkins) -
a4fdb70
Docs: Fixed Typo (#14007) (Yash Singh) -
f7ca481
Docs: Explain why we disable lock files (refs eslint/tsc-meetings#234) (#14006) (Brandon Mills)
gajus/eslint-plugin-jsdoc
v31.6.0
Bug Fixes
-
require-returns
,require-yields
: support more AST checking (6fd8a07) -
require-yields
: avoid checking nested generators (as with functions) (b9058e4) -
return-yields
,return-yields-check
: allow generator detection on exported; handle more AST types; fixes #682 (4e768aa)
Features
-
require-returns-check
: addexemptAsync
option (0ed24c0)
v31.5.0
Bug Fixes
-
require-returns
: check labeled statements (51f37f1) -
require-throws
: check labeled statements (ceadcfe) -
require-yields
: checktest
part of if expression and check conditionals (db001be) -
require-yields
: check labeled statements (aceb7a0)
Features
-
require-returns
: if function returns a Promise whose executor resolves with undefined, avoid need to document unlessforceReturnsWithAsync
is set; fixes #550 (565fdbd)
v31.4.0
Bug Fixes
-
check-line-alignment
: escape user tag name in regex (c0ae4cb)
Features
-
check-line-alignment
: allowtags
option to configure which tags should be aligned. (780b8b5)
v31.3.3
Bug Fixes
-
check-line-alignment
: apply alignment to return tags and avoid possibility for "never" option to insert extra space withreturns
/return
as well as handle missing type (cb39556)
v31.3.2
Bug Fixes
- while a fix provided for decorator detection and useful for inserting empty jsdoc blocks when fixers are enabled, it appears to have a 25% or so degradation in performance when tested with a large repository, so reverting. (e08d889)
Reverts
- Revert "optimize: ensure with new fix that we avoid checking back too far" (0fc4663)
v31.3.1
Bug Fixes
- bug with false positive decorator detection (evident sans semi-colons); e.g.,
require-jsdoc
fixer (6bda6b4)
v31.3.0
Features
-
check-param-names
: add optionsdisableExtraPropertyReporting
to allow extra properties to be documented without error (as long as there are no siblings destructured as for such cases, they will still be expected since the function is not using them) (8b2d143)
v31.2.3
Bug Fixes
-
require-param
,check-param-names
: add optionuseDefaultObjectProperties
for expecting documentation or avoiding reporting of documented; addresses part of #676 (a36faf2)
v31.2.2
Bug Fixes
-
check-tag-names
: should have previously auto-allowedsettings.jsdoc.structuredTags
tags (5f586fd)
v31.2.1
Bug Fixes
- caps issue with require-yields-check rule (6b8d0d8)
v31.2.0
Features
-
require-yields-check
: add rule to check thatyield
(of proper form) is present in the function body; fixes #354 (acf9529)
v31.1.0
Features
-
require-yields
: add new rule to check thatyield
has documentation; for #354 (e06fddd) -
require-yields
: add options to check thatnext
has documentation (15daa12)
v31.0.8
Bug Fixes
-
no-undefined-types
: supporttrue
andfalse
literals (b8cb394)
v31.0.7
Bug Fixes
i18next/i18next
v19.8.5
- fix potential prototype pollution when backend plugin resolves a malicious language value
- use fallbackLng as default lng
rollup/rollup
v2.38.2
2021-01-31
Bug Fixes
- Do not generate invalid code for partially tree-shaken declarations in for loops (#3943)
- Always include function bodies of functions in side-effect-free modules (#3944)
Merge Requests
- #3943: Do not partially tree-shake unused declarations in for loops (@lukastaegert)
- #3944: Correctly include functions with side effects from side-effect-free modules (@lukastaegert)
v2.38.1
2021-01-28
Bug Fixes
- Fix internal error when resolving a missing entry point in the browser build (#3935)
Merge Requests
- #3935: fix: remove isolated resolve() for compat with browser distribution (@cmorten and @lukastaegert)
- #3936: Ensure test after() callback is always executed (@Benjamin-Dobell)
- #3937: Modernize references to other software (@ludofischer)
v2.38.0
2021-01-22
Features
- Entirely remove declared variables that only have an initializer side effect (#3933)
Merge Requests
- #3933: Tree-shake unused declarations while keeping initializer side-effects (@lukastaegert)
v2.37.1
2021-01-20
Merge Requests
- #3929: Deduplicate acorn import (@lukastaegert)
v2.37.0
2021-01-19
Features
- Always check modules for side effects that only indirectly reexport a used variable (#3840)
- Warn if a circular dependency would cause wrong execution order when preserving modules (#3840)
Bug Fixes
- Allow consuming synthetic exports via modules that reexport a namespace (#3894)
- Do not crash for circular default reexports (#3840)
- Do not crash for circular synthetic namespaces (#3840)
- Improve circular dependency execution order in certain scenarios (#3840)
Merge Requests
- #3840: Improve circular dependency execution order (@lukastaegert)
- #3894: Always respect synthetic namespaces in namespace reexport (@lukastaegert)
Renovate configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.