Change Log
All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
11.0.0 (2021-07-15)
Features
- rest: upgrade to ajv@8.x (d3b20ed)
BREAKING CHANGES
- rest: We upgrade to ajv@8.x, which contains breaking changes for validations. See https://github.com/ajv-validator/ajv/blob/master/docs/v6-to-v8-migration.md.
Signed-off-by: Raymond Feng enjoyjava@gmail.com
10.2.1 (2021-06-10)
Note: Version bump only for package @loopback/eslint-config
10.2.0 (2021-05-03)
Features
- support node v16 (ac99415)
10.1.1 (2021-04-06)
Note: Version bump only for package @loopback/eslint-config
10.1.0 (2021-03-18)
Bug Fixes
- no need to import prettier extensions anymore (0b13d35)
Features
10.0.5 (2021-01-21)
Note: Version bump only for package @loopback/eslint-config
10.0.4 (2020-12-07)
Note: Version bump only for package @loopback/eslint-config
10.0.3 (2020-11-18)
Note: Version bump only for package @loopback/eslint-config
10.0.2 (2020-11-05)
Note: Version bump only for package @loopback/eslint-config
10.0.1 (2020-10-07)
Note: Version bump only for package @loopback/eslint-config
10.0.0 (2020-09-15)
Features
- eslint-config: update rules to be compatible with typescript-eslint 4.x (595951c)
- update typescript-eslint monorepo to v4 (5767e22)
BREAKING CHANGES
-
eslint-config: typescript-eslint 4.x introduces some breaking changes. The following are impacted:
- decorator functions are correctly honored as usage of defined variables
- @typescript-eslint/no-shadow replaces no-shadow
Signed-off-by: Raymond Feng enjoyjava@gmail.com
9.0.2 (2020-08-27)
Note: Version bump only for package @loopback/eslint-config
9.0.1 (2020-08-19)
Note: Version bump only for package @loopback/eslint-config
9.0.0 (2020-08-05)
Features
- eslint-config: disable
createDefaultProgram(13dbaf2)
BREAKING CHANGES
- eslint-config: We are no longer telling eslint to create a default
program for files not included in
tsconfig.json. If you start receiving linter errors after upgrade, you can either addcreateDefaultProgramto your eslint config manually, modify yourtsconfigfile to include all files checked by eslint, or exclude the problematic files from linting by adding them to.eslintignorefile.
In projects scaffolded via lb4 app, we recommend to add .eslintrc.js
file to .eslintignore list.
Signed-off-by: Miroslav Bajtoš mbajtoss@gmail.com
8.0.4 (2020-07-20)
Note: Version bump only for package @loopback/eslint-config
8.0.3 (2020-06-30)
Note: Version bump only for package @loopback/eslint-config
8.0.2 (2020-06-23)
Bug Fixes
- set node version to >=10.16 to support events.once (e39da1c)
8.0.1 (2020-06-11)
Note: Version bump only for package @loopback/eslint-config
8.0.0 (2020-05-28)
Features
- eslint-config: add naming convention rules (c8e2143)
- eslint-config: disable ‘warning Missing return type on function’ for now (1b3494e)
BREAKING CHANGES
- eslint-config: @typescript-eslint/typescript-eslint v3.0.0 introduces a list of breaking changes. Existing code might violate the new or changed rules. Manual fixes may be required.
See more details at: https://github.com/typescript-eslint/typescript-eslint/releases/tag/v3.0.0
7.0.1 (2020-05-20)
Note: Version bump only for package @loopback/eslint-config
7.0.0 (2020-05-19)
Features
- replace eslint rule
no-invalid-thiswith TypeScript-aware one (b2f21f7) - eslint-config: upgrade to ESLint 7.x (5c3e3c2)
BREAKING CHANGES
- In code accessing
thisvariable, eslint-ignore comment forno-invalid-thiswill no longer work. You can either change those comments to disable@typescript-eslint/no-invalid-this, or better tell TypeScript what is the type ofthisin your function.
A TypeScript example:
describe('my mocha suite', function(this: Mocha.Suite) {
this.timeout(1000);
it('is slow', function(this: Mocha.Context) {
this.timeout(2000);
});
})
A JavaScript example:
describe('my mocha suite', /** @this {Mocha.Suite} */ function() {
this.timeout(1000);
it('is slow', /** @this {Mocha.Context} */ function() {
this.timeout(2000);
});
})
Signed-off-by: Miroslav Bajtoš mbajtoss@gmail.com
- eslint-config: ESLint 7.x changes how plugins references in the shared config are resolved. The following is quoted from https://eslint.org/blog/2020/05/eslint-v7.0.0-released:
ESLint will now resolve plugins relative to the entry configuration file. This means that shared configuration files that are located outside the project can now be colocated with the plugins they require. Starting in ESLint v7, configuration files and ignore files passed to ESLint using the –config path/to/a-config and –ignore-path path/to/a-ignore CLI flags, respectively, will resolve from the current working directory rather than the file location. This allows for users to utilize shared plugins without having to install them directly in their project.
6.0.6 (2020-05-07)
Note: Version bump only for package @loopback/eslint-config
6.0.5 (2020-04-29)
Note: Version bump only for package @loopback/eslint-config
6.0.4 (2020-04-22)
Note: Version bump only for package @loopback/eslint-config
6.0.3 (2020-04-08)
Note: Version bump only for package @loopback/eslint-config
6.0.2 (2020-03-24)
Note: Version bump only for package @loopback/eslint-config
6.0.1 (2020-03-17)
Note: Version bump only for package @loopback/eslint-config
6.0.0 (2020-03-05)
chore
- remove support for Node.js v8.x (4281d9d)
Features
BREAKING CHANGES
- eslint-config: eslint rule
@typescript-eslint/no-non-null-asserted-optional-chainis set toerrorwhich may break existing lint tests. - Node.js v8.x is now end of life. Please upgrade to version 10 and above. See https://nodejs.org/en/about/releases.
5.0.3 (2020-02-05)
Note: Version bump only for package @loopback/eslint-config
5.0.2 (2020-01-27)
Note: Version bump only for package @loopback/eslint-config
5.0.1 (2020-01-07)
Note: Version bump only for package @loopback/eslint-config
5.0.0 (2019-12-09)
Features
- eslint-config: add @typescript-eslint/prefer-nullish-coalescing rule (b608120)
- eslint-config: add typescript-eslint/prefer-optional-chain rule (bd1252a)
- eslint-config: enable no-extra-non-null-assertion (d74a688)
- eslint-config: enable return-await (be6b38b)
BREAKING CHANGES
- eslint-config: The linter will reject code using
return awaitouside oftryblocks or forgetting toawaitbefore returning from inside atryblock. Migration guide: usereturnoutside oftryblocks andreturn awaitinsidetryblocks.
Signed-off-by: Miroslav Bajtoš mbajtoss@gmail.com
- eslint-config: the
@typescript-eslint/prefer-nullish-coalescingrule prefers nullish coalescing, for example,ttl ?? 5000overttl || 5000.
See https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#nullish-coalescing
- eslint-config: the
@typescript-eslint/prefer-optional-chainrule will report violations if optional chaining is not used. For example, it prefersoptions?.ttloveroptions && options.ttl.
See https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#optional-chaining
4.1.5 (2019-11-25)
Note: Version bump only for package @loopback/eslint-config
4.1.4 (2019-11-12)
Note: Version bump only for package @loopback/eslint-config
4.1.3 (2019-10-24)
Note: Version bump only for package @loopback/eslint-config
4.1.2 (2019-10-07)
Note: Version bump only for package @loopback/eslint-config
4.1.1 (2019-09-27)
Note: Version bump only for package @loopback/eslint-config
4.1.0 (2019-09-17)
Features
- eslint-config: enable “no-misused-promises” rule (88d5494)
4.0.2 (2019-09-03)
Note: Version bump only for package @loopback/eslint-config
4.0.1 (2019-08-19)
Note: Version bump only for package @loopback/eslint-config
4.0.0 (2019-08-15)
Features
- eslint-config: upgrade to @typescript-eslint/eslint-plugin 2.0.0 (1ec5b2f)
BREAKING CHANGES
- eslint-config: @typescript-eslint/parser and @typescript-eslint/eslint-plugin 2.0.0 may have introduced breaking changes for recommended rules and configuration
3.0.0 (2019-07-31)
Features
- eslint-config: enable “no-return-await” rule (e28a3c3)
BREAKING CHANGES
- eslint-config: “return await” is no longer allowed, just return the promise without awaiting its resolution.
2.0.2 (2019-07-26)
Note: Version bump only for package @loopback/eslint-config
2.0.1 (2019-07-17)
Note: Version bump only for package @loopback/eslint-config
2.0.0 (2019-06-28)
Features
- eslint-config: enable “no-floating-promises” rule (256e3e8)
- eslint-config: upgrade eslint to v6 (b52a40c)
BREAKING CHANGES
- eslint-config: We require eslint version 6.0 as a peer dependency now. To upgrade your project using our eslint-config, bump up eslint version in your package.json file to “^6.0.0”.
The new eslint version added new recommended rules, most notably “require-atomic-updates” and “no-prototype-builtins”. You may get new linting errors after upgrade, fix them by changing your code or adding eslint-ignore comments as needed.
1.1.2 (2019-06-17)
Note: Version bump only for package @loopback/eslint-config
1.1.1 (2019-06-06)
Note: Version bump only for package @loopback/eslint-config
1.1.0 (2019-06-03)
Features
1.0.0-3 (2019-05-31)
Note: Version bump only for package @loopback/eslint-config
1.0.0-2 (2019-05-30)
Features
- build: add eslint scripts and default configs (a6abe86)