Skip to content

Commit 4b3e454

Browse files
Merge pull request #3 from styled-components/upgrades
Updates
2 parents a8502e3 + 80484c0 commit 4b3e454

9 files changed

+307
-273
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v2
1717
- name: Install Node.js
18-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v3
1919
with:
20-
node-version: 14.x
20+
node-version: 18
2121
- run: npm install
2222
- name: Linting
2323
run: npm run lint
@@ -28,9 +28,9 @@ jobs:
2828
- name: Checkout
2929
uses: actions/checkout@v2
3030
- name: Install Node.js
31-
uses: actions/setup-node@v1
31+
uses: actions/setup-node@v3
3232
with:
33-
node-version: 14.x
33+
node-version: 18
3434
- run: npm install
3535
- name: Compiling
3636
run: npm run compile
@@ -41,9 +41,9 @@ jobs:
4141
- name: Checkout
4242
uses: actions/checkout@v2
4343
- name: Install Node.js
44-
uses: actions/setup-node@v1
44+
uses: actions/setup-node@v3
4545
with:
46-
node-version: 14.x
46+
node-version: 18
4747
- run: npm install
4848
- name: Compiling
4949
run: npm run compile
@@ -55,9 +55,9 @@ jobs:
5555
- name: Checkout
5656
uses: actions/checkout@v2
5757
- name: Install Node.js
58-
uses: actions/setup-node@v1
58+
uses: actions/setup-node@v3
5959
with:
60-
node-version: 14.x
60+
node-version: 18
6161
- run: npm install
6262
- run: npm install
6363
working-directory: ./e2e

CHANGELOG.md

+88-47
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,163 @@
11
# Changelog
22

3+
## 0.20.0 - December 01, 2022
4+
5+
- Forked into @styled
6+
37
## 0.18.2 - December 06, 2021
4-
- Include completion spans in responses. Thanks @jasonwilliams!
5-
- Don't trigger completions when opening template tags. Thanks @jasonwilliams!
8+
9+
- Include completion spans in responses. Thanks @jasonwilliams!
10+
- Don't trigger completions when opening template tags. Thanks @jasonwilliams!
611

712
## 0.18.1 - August 05, 2021
8-
- Update emmet. Thanks @jasonwilliams!
13+
14+
- Update emmet. Thanks @jasonwilliams!
915

1016
## 0.18.0 - June 03, 2021
11-
- Enable IntelliSense in `keyframes`. Thanks @jasonwilliams!
17+
18+
- Enable IntelliSense in `keyframes`. Thanks @jasonwilliams!
1219

1320
## 0.17.0 - May 07, 2021
14-
- Apply in `keyframes` by default. Thanks @jasonwilliams!
21+
22+
- Apply in `keyframes` by default. Thanks @jasonwilliams!
1523

1624
## 0.16.0 - April 28, 2021
17-
- Pick up new language service version. Thanks @hantatsang and @jasonwilliams!
25+
26+
- Pick up new language service version. Thanks @hantatsang and @jasonwilliams!
1827

1928
## 0.15.0 - October 16, 2019
20-
- Pick up new language service version. Thanks @apust!
29+
30+
- Pick up new language service version. Thanks @apust!
2131

2232
## 0.14.0 - February 26, 2019
23-
- Pick up new language service version.
24-
- Support for dynamically changing configuration.
25-
- Only enable plugin for TS 3.0+ in order to support automatically enabling plugin for workspace TS versions.
33+
34+
- Pick up new language service version.
35+
- Support for dynamically changing configuration.
36+
- Only enable plugin for TS 3.0+ in order to support automatically enabling plugin for workspace TS versions.
2637

2738
## 0.13.0 - November 8, 2018
28-
- Mark color completions with the `'color'` `kindModifier`. This allows editors to render the color previews inline.
29-
- Fix more false positive errors.
39+
40+
- Mark color completions with the `'color'` `kindModifier`. This allows editors to render the color previews inline.
41+
- Fix more false positive errors.
3042

3143
## 0.12.0 - October 15, 2018
32-
- Pick up new decorator library version to fix a possible state corruption error.
44+
45+
- Pick up new decorator library version to fix a possible state corruption error.
3346

3447
## 0.11.0 - September 11, 2018
35-
- Fixed some false positive errors when using a placeholder in a contexual selector. Thanks @lukyth!
36-
- Apply in `injectGlobal` or `createGlobalStyle` by default. Thanks @scf4!
48+
49+
- Fixed some false positive errors when using a placeholder in a contexual selector. Thanks @lukyth!
50+
- Apply in `injectGlobal` or `createGlobalStyle` by default. Thanks @scf4!
3751

3852
## 0.10.0 - July 10, 2018
39-
- Add folding support.
53+
54+
- Add folding support.
4055

4156
## 0.9.2 - July 9, 2018
42-
- Remove TS as peerDep.
57+
58+
- Remove TS as peerDep.
4359

4460
## 0.9.1 - July 9, 2018
45-
- Allow language service to be consumed by other libraries.
61+
62+
- Allow language service to be consumed by other libraries.
4663

4764
## 0.8.1 - July 2, 2018
48-
- Fix some false error reports around creative uses of placeholders.
65+
66+
- Fix some false error reports around creative uses of placeholders.
4967

5068
## 0.8.0 - July 2, 2018
51-
- Support for emotion style typescript declarations.
69+
70+
- Support for emotion style typescript declarations.
5271

5372
## 0.7.0 - June 25, 2018
54-
- Picked up new CSS version. Brings improved suggestions and better documentation.
73+
74+
- Picked up new CSS version. Brings improved suggestions and better documentation.
5575

5676
## 0.6.3 - April 20, 2018
57-
- Fixed `width: ${1}%;` incorrectly reported as an error.
77+
78+
- Fixed `width: ${1}%;` incorrectly reported as an error.
5879

5980
## 0.6.2 - April 18, 2018
60-
- Fixed case where a placeholder that looked like a mixin was incorrectly reported as an error.
81+
82+
- Fixed case where a placeholder that looked like a mixin was incorrectly reported as an error.
6183

6284
## 0.6.1 - April 16, 2018
63-
- Fixed some cases where placeholder usage was incorrectly reported as an error.
85+
86+
- Fixed some cases where placeholder usage was incorrectly reported as an error.
6487

6588
## 0.6.0 - February 16, 2018
66-
- Added emmet suggestions. Thanks @ramya-rao-a!
89+
90+
- Added emmet suggestions. Thanks @ramya-rao-a!
6791

6892
## 0.5.1 - February 13, 2018
69-
- Small fix for suggestions inside of nested selectors.
93+
94+
- Small fix for suggestions inside of nested selectors.
7095

7196
## 0.5.0 - February 12, 2018
72-
- Add quick fixes for misspelled property names.
97+
98+
- Add quick fixes for misspelled property names.
7399

74100
## 0.4.1 - February 12, 2018
75-
- Fixed false error when placeholder is used as a selector.
101+
102+
- Fixed false error when placeholder is used as a selector.
76103

77104
## 0.4.0 - January 16, 2018
78-
- Fix suggestions inside of nested selectors. Thanks @aczekajski!
105+
106+
- Fix suggestions inside of nested selectors. Thanks @aczekajski!
79107

80108
## 0.3.1 - January 11, 2018
81-
- Cache completion entries so we don't recompute them as often.
109+
110+
- Cache completion entries so we don't recompute them as often.
82111

83112
## 0.3.0 - January 9, 2018
84-
- Added basic support for completion entry details
113+
114+
- Added basic support for completion entry details
85115

86116
## 0.2.2 - November 29, 2017
87-
- Fix auto import completions not showing up when using plugin with TS 2.6.2+
117+
118+
- Fix auto import completions not showing up when using plugin with TS 2.6.2+
88119

89120
## 0.2.1 - November 27, 2017
90-
- Fix cases where placeholder is followed by a trailing semicolon. Thanks @kingdaro!
121+
122+
- Fix cases where placeholder is followed by a trailing semicolon. Thanks @kingdaro!
91123

92124
## 0.2.0 - November 9, 2017
93-
- Do not take runtime dependecy on TypeScript.
125+
126+
- Do not take runtime dependecy on TypeScript.
94127

95128
## 0.1.2 — October 24, 2017
96-
- Fix bug that could cause errors not to be reported when on the last line of a block.
129+
130+
- Fix bug that could cause errors not to be reported when on the last line of a block.
97131

98132
## 0.1.1 — October 24, 2017
99-
- Compile to ES5 to support regular Visual Studio
133+
134+
- Compile to ES5 to support regular Visual Studio
100135

101136
## 0.1.0
102-
- Support for nested classes. Thanks @asvetliakov!
103-
- Support for styled properties, such as `MyButton.extend...`. Thanks @asvetliakov!
104-
- Fix a bug that could cause errors to stop being reported.
137+
138+
- Support for nested classes. Thanks @asvetliakov!
139+
- Support for styled properties, such as `MyButton.extend...`. Thanks @asvetliakov!
140+
- Fix a bug that could cause errors to stop being reported.
105141

106142
### 0.0.5 - September 29, 2017
107-
- Fix empty value error being showing when using placeholder for value in multiline template strings.
143+
144+
- Fix empty value error being showing when using placeholder for value in multiline template strings.
108145

109146
### 0.0.4 - September 29, 2017
110-
- Fix multiline strings with placeholders.
147+
148+
- Fix multiline strings with placeholders.
111149

112150
### 0.0.3 - September 29, 2017
113-
- Initial support for strings with placeholders.
151+
152+
- Initial support for strings with placeholders.
114153

115154
### 0.0.2 - September 29, 2017
116-
- Disable empty ruleset lint error by default
117-
- Fix styled completions showing on character immediately before start of string
118-
- Supprt `css` tag by default.
119-
- Remove a bunch of files from published npm package.
155+
156+
- Disable empty ruleset lint error by default
157+
- Fix styled completions showing on character immediately before start of string
158+
- Supprt `css` tag by default.
159+
- Remove a bunch of files from published npm package.
120160

121161
### 0.0.1 - September 28, 2017
122-
- Initial release
162+
163+
- Initial release

0 commit comments

Comments
 (0)