Skip to content

Commit 821fe6b

Browse files
committed
Update CHANGELOG
1 parent 99d71f3 commit 821fe6b

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 3.3.0 (2019-xx-xx)
22

3-
DRAFT
3+
v3.3.0 is a minor release that adds new features, including custom templates and support for the new optional chaining and nullish coalescing operators.
44

55
### Custom Templates
66

@@ -41,6 +41,40 @@ We've added support for [numeric separators](https://github.com/tc39/proposal-nu
4141
101_475_938.38; // And this is hundreds of millions
4242
```
4343

44+
### no-unexpected-multiline
45+
46+
We've removed this rule as it is not compatible with Prettier. If you rely on this rule you can re-enable it by [extending our ESLint config](https://create-react-app.dev/docs/setting-up-your-editor/#experimental-extending-the-eslint-config) and adding the following:
47+
48+
```json
49+
{
50+
"extends": "react-app",
51+
"overrides": [
52+
{
53+
"files": ["**/*.{js,ts?(x)}"],
54+
"rules": {
55+
"no-unexpected-multiline": "warn"
56+
}
57+
}
58+
]
59+
}
60+
```
61+
62+
<!-- INSERT LERNA CHANGELOG -->
63+
64+
### Migrating from 3.2.0 to 3.3.0
65+
66+
Inside any created project that has not been ejected, run:
67+
68+
```sh
69+
npm install --save --save-exact react-scripts@3.3.0
70+
```
71+
72+
or
73+
74+
```sh
75+
yarn add --exact react-scripts@3.3.0
76+
```
77+
4478
## 3.2.0 (2019-10-03)
4579

4680
v3.2.0 is a minor release that adds support for production profiling and ignoring TypeScript type errors to make migrating JavaScript projects to TypeScript easier. It also includes other minor bug fixes and documentation updates.

0 commit comments

Comments
 (0)