Skip to content

Commit e30a199

Browse files
author
GitHub Action
committed
v8.0.0
1 parent 4ccafa5 commit e30a199

File tree

20 files changed

+176
-20
lines changed

20 files changed

+176
-20
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **commitlint:** v9 ([2709cb8](https://github.com/spotify/web-scripts/commit/2709cb81e3e4efe4f75ef1f8ec954a9c8dd3b023))
12+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
13+
* **eslint-plugin-jest:** minor bump ([e1fef3b](https://github.com/spotify/web-scripts/commit/e1fef3b1859a91c82e5d13db909919605df170d7))
14+
* **jest:** v26 ([14c37a8](https://github.com/spotify/web-scripts/commit/14c37a82361095a2c3fc5ecac27ef94552a7d38a))
15+
* **jest-junit:** v11 ([1ef34c4](https://github.com/spotify/web-scripts/commit/1ef34c4373234e8682f50ce10f3ace05b16f61d3))
16+
* **semantic-release:** minor bump ([ded14f4](https://github.com/spotify/web-scripts/commit/ded14f46ff128737f5a4beb19e8af9d921433aad))
17+
* **typescript-eslint:** upgrade to latest to support type export syntax ([688324b](https://github.com/spotify/web-scripts/commit/688324b2702dbf393f058bed6fa55f26bce99bac))
18+
* **typescript-eslint/eslint-plugin:** v3.4.0 ([195400a](https://github.com/spotify/web-scripts/commit/195400a6082a35db59544d39b156d09d470661c7))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* **commitlint:** 'improvement' type will now be rejected by this config.
24+
* **eslint:** see release notes for eslint v7
25+
* **jest-junit:** see jest-junit 11 release notes
26+
* **jest:** See jest 26 release notes
27+
* **typescript-eslint:** The camelcase rule was deprecated in typescript-eslint. I've tried to replace it
28+
with an equivalent naming-convention rule config. I question if we should have this at all.
29+
30+
31+
32+
33+
634
## [7.0.2](https://github.com/spotify/web-scripts/compare/v7.0.1...v7.0.2) (2020-05-27)
735

836

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "7.0.2",
7+
"version": "8.0.0",
88
"command": {
99
"publish": {
1010
"ignoreChanges": [

packages/create-web-scripts-library/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
**Note:** Version bump only for package @spotify/create-web-scripts-library
9+
10+
11+
12+
13+
614
## [7.0.2](https://github.com/spotify/web-scripts/compare/v7.0.1...v7.0.2) (2020-05-27)
715

816
**Note:** Version bump only for package @spotify/create-web-scripts-library

packages/create-web-scripts-library/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/create-web-scripts-library",
3-
"version": "7.0.2",
3+
"version": "8.0.0",
44
"description": "Project scaffolding script for @spotify/web-scripts libraries",
55
"author": "Paul Marbach <[email protected]>",
66
"homepage": "https://github.com/spotify/web-scripts#readme",
@@ -41,7 +41,7 @@
4141
"read-pkg-up": "^7.0.1"
4242
},
4343
"devDependencies": {
44-
"@spotify/web-scripts": "^7.0.2",
44+
"@spotify/web-scripts": "^8.0.0",
4545
"@types/fs-extra": "^9.0.1",
4646
"tempy": "^0.5.0"
4747
},

packages/eslint-config-base/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **eslint:** see release notes for eslint v7
17+
18+
19+
20+
21+
622
# [7.0.0](https://github.com/spotify/web-scripts/compare/v6.2.0...v7.0.0) (2020-04-28)
723

824

packages/eslint-config-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/eslint-config-base",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's base ESLint config",
66
"main": "index.js",

packages/eslint-config-react/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **eslint:** see release notes for eslint v7
17+
18+
19+
20+
21+
622
## [7.0.1](https://github.com/spotify/web-scripts/compare/v7.0.0...v7.0.1) (2020-05-15)
723

824
**Note:** Version bump only for package @spotify/eslint-config-react

packages/eslint-config-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/eslint-config-react",
3-
"version": "7.0.1",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's ESLint config for React projects",
66
"repository": {

packages/eslint-config-typescript/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
12+
* **typescript-eslint:** upgrade to latest to support type export syntax ([688324b](https://github.com/spotify/web-scripts/commit/688324b2702dbf393f058bed6fa55f26bce99bac))
13+
* **typescript-eslint/eslint-plugin:** v3.4.0 ([195400a](https://github.com/spotify/web-scripts/commit/195400a6082a35db59544d39b156d09d470661c7))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* **eslint:** see release notes for eslint v7
19+
* **typescript-eslint:** The camelcase rule was deprecated in typescript-eslint. I've tried to replace it
20+
with an equivalent naming-convention rule config. I question if we should have this at all.
21+
22+
23+
24+
25+
626
# [7.0.0](https://github.com/spotify/web-scripts/compare/v6.2.0...v7.0.0) (2020-04-28)
727

828

packages/eslint-config-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/eslint-config-typescript",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's ESLint config for TypeScript",
66
"repository": {

packages/eslint-config/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
12+
* **eslint-plugin-jest:** minor bump ([e1fef3b](https://github.com/spotify/web-scripts/commit/e1fef3b1859a91c82e5d13db909919605df170d7))
13+
* **typescript-eslint:** upgrade to latest to support type export syntax ([688324b](https://github.com/spotify/web-scripts/commit/688324b2702dbf393f058bed6fa55f26bce99bac))
14+
* **typescript-eslint/eslint-plugin:** v3.4.0 ([195400a](https://github.com/spotify/web-scripts/commit/195400a6082a35db59544d39b156d09d470661c7))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* **eslint:** see release notes for eslint v7
20+
* **typescript-eslint:** The camelcase rule was deprecated in typescript-eslint. I've tried to replace it
21+
with an equivalent naming-convention rule config. I question if we should have this at all.
22+
23+
24+
25+
26+
627
## [7.0.1](https://github.com/spotify/web-scripts/compare/v7.0.0...v7.0.1) (2020-05-15)
728

829
**Note:** Version bump only for package @spotify/eslint-config

packages/eslint-config/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/eslint-config",
3-
"version": "7.0.1",
3+
"version": "8.0.0",
44
"description": "Combined ESLint config for Spotify",
55
"author": "Paul Marbach <[email protected]>",
66
"homepage": "https://github.com/spotify/web-scripts#readme",
@@ -18,10 +18,10 @@
1818
},
1919
"scripts": {},
2020
"dependencies": {
21-
"@spotify/eslint-config-base": "^7.0.0",
22-
"@spotify/eslint-config-react": "^7.0.1",
23-
"@spotify/eslint-config-typescript": "^7.0.0",
24-
"@spotify/web-scripts-utils": "^7.0.0",
21+
"@spotify/eslint-config-base": "^8.0.0",
22+
"@spotify/eslint-config-react": "^8.0.0",
23+
"@spotify/eslint-config-typescript": "^8.0.0",
24+
"@spotify/web-scripts-utils": "^8.0.0",
2525
"@typescript-eslint/eslint-plugin": "^3.4.0",
2626
"@typescript-eslint/parser": "^3.4.0",
2727
"eslint-config-prettier": "^6.0.0",

packages/prettier-config/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
**Note:** Version bump only for package @spotify/prettier-config
9+
10+
11+
12+
13+
614
# [7.0.0](https://github.com/spotify/web-scripts/compare/v6.2.0...v7.0.0) (2020-04-28)
715

816

packages/prettier-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/prettier-config",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Spotify's base Prettier config",
66
"repository": {

packages/tsconfig/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
**Note:** Version bump only for package @spotify/tsconfig
9+
10+
11+
12+
13+
614
# [7.0.0](https://github.com/spotify/web-scripts/compare/v6.2.0...v7.0.0) (2020-04-28)
715

816

packages/tsconfig/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/tsconfig",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Common tsconfigs to be used as your base configurations",
66
"repository": {

packages/web-scripts-utils/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
**Note:** Version bump only for package @spotify/web-scripts-utils
9+
10+
11+
12+
13+
614
# [7.0.0](https://github.com/spotify/web-scripts/compare/v6.2.0...v7.0.0) (2020-04-28)
715

816
**Note:** Version bump only for package @spotify/web-scripts-utils

packages/web-scripts-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/web-scripts-utils",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "Private package which contains re-used utils within web-scripts projects",
55
"repository": {
66
"type": "git",
@@ -28,7 +28,7 @@
2828
"read-pkg-up": "^7.0.1"
2929
},
3030
"devDependencies": {
31-
"@spotify/tsconfig": "^7.0.0",
31+
"@spotify/tsconfig": "^8.0.0",
3232
"@types/jest": "^26.0.0"
3333
},
3434
"publishConfig": {

packages/web-scripts/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.0.0](https://github.com/spotify/web-scripts/compare/v7.0.2...v8.0.0) (2020-06-23)
7+
8+
9+
### Features
10+
11+
* **commitlint:** v9 ([2709cb8](https://github.com/spotify/web-scripts/commit/2709cb81e3e4efe4f75ef1f8ec954a9c8dd3b023))
12+
* **eslint:** v7 ([55ebb7f](https://github.com/spotify/web-scripts/commit/55ebb7f402546e9c8d7c7372cafbd6f49f17790c))
13+
* **jest:** v26 ([14c37a8](https://github.com/spotify/web-scripts/commit/14c37a82361095a2c3fc5ecac27ef94552a7d38a))
14+
* **jest-junit:** v11 ([1ef34c4](https://github.com/spotify/web-scripts/commit/1ef34c4373234e8682f50ce10f3ace05b16f61d3))
15+
* **semantic-release:** minor bump ([ded14f4](https://github.com/spotify/web-scripts/commit/ded14f46ff128737f5a4beb19e8af9d921433aad))
16+
17+
18+
### BREAKING CHANGES
19+
20+
* **commitlint:** 'improvement' type will now be rejected by this config.
21+
* **eslint:** see release notes for eslint v7
22+
* **jest-junit:** see jest-junit 11 release notes
23+
* **jest:** See jest 26 release notes
24+
25+
26+
27+
28+
629
## [7.0.2](https://github.com/spotify/web-scripts/compare/v7.0.1...v7.0.2) (2020-05-27)
730

831

packages/web-scripts/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spotify/web-scripts",
3-
"version": "7.0.2",
3+
"version": "8.0.0",
44
"license": "Apache-2.0",
55
"description": "Build, lint, test, format, and release your JS/TS library.",
66
"repository": {
@@ -32,10 +32,10 @@
3232
"dependencies": {
3333
"@commitlint/cli": "^9.0.1",
3434
"@commitlint/config-conventional": "^9.0.1",
35-
"@spotify/eslint-config": "^7.0.1",
36-
"@spotify/prettier-config": "^7.0.0",
37-
"@spotify/tsconfig": "^7.0.0",
38-
"@spotify/web-scripts-utils": "^7.0.0",
35+
"@spotify/eslint-config": "^8.0.0",
36+
"@spotify/prettier-config": "^8.0.0",
37+
"@spotify/tsconfig": "^8.0.0",
38+
"@spotify/web-scripts-utils": "^8.0.0",
3939
"@types/cross-spawn": "^6.0.0",
4040
"@types/debug": "^4.1.2",
4141
"@types/jest": "^26.0.0",

0 commit comments

Comments
 (0)