Skip to content

Commit d804b37

Browse files
authored
Update deprecation messages for interpolation near operators. (#1142)
1 parent c60c0d2 commit d804b37

File tree

47 files changed

+3036
-2119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+3036
-2119
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
DEPRECATION WARNING on line 5 of /sass/spec/basic/23_basic_value_interpolation/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 5 of /sass/spec/basic/23_basic_value_interpolation/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote("123")
56

6-
DEPRECATION WARNING on line 7 of /sass/spec/basic/23_basic_value_interpolation/input.scss: #{} interpolation near operators will be simplified
7-
in a future version of Sass. To preserve the current behavior, use quotes:
7+
DEPRECATION WARNING on line 7 of /sass/spec/basic/23_basic_value_interpolation/input.scss:
8+
#{} interpolation near operators will be simplified in a future version of Sass.
9+
To preserve the current behavior, use quotes:
810

911
unquote("#{12 + 111}")

spec/libsass-closed-issues/issue_1333/error

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
DEPRECATION WARNING on line 6 of /sass/spec/libsass-issues/issue_1333/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 6 of /sass/spec/libsass-issues/issue_1333/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote('#{baz()}" !important"')
56

spec/libsass-closed-issues/issue_1396/error

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
DEPRECATION WARNING on line 2 of /sass/spec/libsass-issues/issue_1396/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 2 of /sass/spec/libsass-issues/issue_1396/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote("#{foo "bar"}baz")
56

+87-71
Original file line numberDiff line numberDiff line change
@@ -1,175 +1,191 @@
1-
DEPRECATION WARNING on line 2 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 2 of /sass/spec/libsass-issues/issue_1413/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote('"A"B')
56

67
You can use the sass-convert command to automatically fix most cases.
78

8-
DEPRECATION WARNING on line 4 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
9-
in a future version of Sass. To preserve the current behavior, use quotes:
9+
DEPRECATION WARNING on line 4 of /sass/spec/libsass-issues/issue_1413/input.scss:
10+
#{} interpolation near operators will be simplified in a future version of Sass.
11+
To preserve the current behavior, use quotes:
1012

1113
unquote('"A"B"C"')
1214

1315
You can use the sass-convert command to automatically fix most cases.
1416

15-
DEPRECATION WARNING on line 7 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
16-
in a future version of Sass. To preserve the current behavior, use quotes:
17+
DEPRECATION WARNING on line 7 of /sass/spec/libsass-issues/issue_1413/input.scss:
18+
#{} interpolation near operators will be simplified in a future version of Sass.
19+
To preserve the current behavior, use quotes:
1720

1821
unquote('"A"BC')
1922

2023
You can use the sass-convert command to automatically fix most cases.
2124

22-
DEPRECATION WARNING on line 9 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
23-
in a future version of Sass. To preserve the current behavior, use quotes:
25+
DEPRECATION WARNING on line 9 of /sass/spec/libsass-issues/issue_1413/input.scss:
26+
#{} interpolation near operators will be simplified in a future version of Sass.
27+
To preserve the current behavior, use quotes:
2428

2529
unquote('"A"B#{C "D"}')
2630

2731
You can use the sass-convert command to automatically fix most cases.
2832

29-
DEPRECATION WARNING on line 10 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
30-
in a future version of Sass. To preserve the current behavior, use quotes:
31-
32-
unquote("#{"A" B}C#{D "E"}")
33-
34-
You can use the sass-convert command to automatically fix most cases.
35-
36-
DEPRECATION WARNING on line 11 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
37-
in a future version of Sass. To preserve the current behavior, use quotes:
33+
DEPRECATION WARNING on line 11 of /sass/spec/libsass-issues/issue_1413/input.scss:
34+
#{} interpolation near operators will be simplified in a future version of Sass.
35+
To preserve the current behavior, use quotes:
3836

3937
unquote("#{A "B"}C#{D "E"}")
4038

4139
You can use the sass-convert command to automatically fix most cases.
4240

43-
DEPRECATION WARNING on line 16 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
44-
in a future version of Sass. To preserve the current behavior, use quotes:
41+
DEPRECATION WARNING on line 16 of /sass/spec/libsass-issues/issue_1413/input.scss:
42+
#{} interpolation near operators will be simplified in a future version of Sass.
43+
To preserve the current behavior, use quotes:
4544

4645
unquote('"A"B')
4746

4847
You can use the sass-convert command to automatically fix most cases.
4948

50-
DEPRECATION WARNING on line 18 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
51-
in a future version of Sass. To preserve the current behavior, use quotes:
49+
DEPRECATION WARNING on line 18 of /sass/spec/libsass-issues/issue_1413/input.scss:
50+
#{} interpolation near operators will be simplified in a future version of Sass.
51+
To preserve the current behavior, use quotes:
5252

5353
unquote('"A"B"C"')
5454

5555
You can use the sass-convert command to automatically fix most cases.
5656

57-
DEPRECATION WARNING on line 21 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
58-
in a future version of Sass. To preserve the current behavior, use quotes:
57+
DEPRECATION WARNING on line 21 of /sass/spec/libsass-issues/issue_1413/input.scss:
58+
#{} interpolation near operators will be simplified in a future version of Sass.
59+
To preserve the current behavior, use quotes:
5960

6061
unquote('"A"BC')
6162

6263
You can use the sass-convert command to automatically fix most cases.
6364

64-
DEPRECATION WARNING on line 23 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
65-
in a future version of Sass. To preserve the current behavior, use quotes:
65+
DEPRECATION WARNING on line 23 of /sass/spec/libsass-issues/issue_1413/input.scss:
66+
#{} interpolation near operators will be simplified in a future version of Sass.
67+
To preserve the current behavior, use quotes:
6668

6769
unquote('"A"B#{C "D"}')
6870

6971
You can use the sass-convert command to automatically fix most cases.
7072

71-
DEPRECATION WARNING on line 24 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
72-
in a future version of Sass. To preserve the current behavior, use quotes:
73-
74-
unquote("#{"A" B}C#{D "E"}")
75-
76-
You can use the sass-convert command to automatically fix most cases.
77-
78-
DEPRECATION WARNING on line 25 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
79-
in a future version of Sass. To preserve the current behavior, use quotes:
73+
DEPRECATION WARNING on line 25 of /sass/spec/libsass-issues/issue_1413/input.scss:
74+
#{} interpolation near operators will be simplified in a future version of Sass.
75+
To preserve the current behavior, use quotes:
8076

8177
unquote("#{A "B"}C#{D "E"}")
8278

8379
You can use the sass-convert command to automatically fix most cases.
8480

85-
DEPRECATION WARNING on line 30 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
86-
in a future version of Sass. To preserve the current behavior, use quotes:
81+
DEPRECATION WARNING on line 30 of /sass/spec/libsass-issues/issue_1413/input.scss:
82+
#{} interpolation near operators will be simplified in a future version of Sass.
83+
To preserve the current behavior, use quotes:
8784

8885
unquote('"A"B')
8986

9087
You can use the sass-convert command to automatically fix most cases.
9188

92-
DEPRECATION WARNING on line 32 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
93-
in a future version of Sass. To preserve the current behavior, use quotes:
89+
DEPRECATION WARNING on line 32 of /sass/spec/libsass-issues/issue_1413/input.scss:
90+
#{} interpolation near operators will be simplified in a future version of Sass.
91+
To preserve the current behavior, use quotes:
9492

9593
unquote('"A"B"C"')
9694

9795
You can use the sass-convert command to automatically fix most cases.
9896

99-
DEPRECATION WARNING on line 35 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
100-
in a future version of Sass. To preserve the current behavior, use quotes:
97+
DEPRECATION WARNING on line 35 of /sass/spec/libsass-issues/issue_1413/input.scss:
98+
#{} interpolation near operators will be simplified in a future version of Sass.
99+
To preserve the current behavior, use quotes:
101100

102101
unquote('"A"BC')
103102

104103
You can use the sass-convert command to automatically fix most cases.
105104

106-
DEPRECATION WARNING on line 37 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
107-
in a future version of Sass. To preserve the current behavior, use quotes:
105+
DEPRECATION WARNING on line 37 of /sass/spec/libsass-issues/issue_1413/input.scss:
106+
#{} interpolation near operators will be simplified in a future version of Sass.
107+
To preserve the current behavior, use quotes:
108108

109109
unquote('"A"B#{C "D"}')
110110

111111
You can use the sass-convert command to automatically fix most cases.
112112

113-
DEPRECATION WARNING on line 38 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
114-
in a future version of Sass. To preserve the current behavior, use quotes:
115-
116-
unquote("#{"A" B}C#{D "E"}")
117-
118-
You can use the sass-convert command to automatically fix most cases.
119-
120-
DEPRECATION WARNING on line 39 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
121-
in a future version of Sass. To preserve the current behavior, use quotes:
113+
DEPRECATION WARNING on line 39 of /sass/spec/libsass-issues/issue_1413/input.scss:
114+
#{} interpolation near operators will be simplified in a future version of Sass.
115+
To preserve the current behavior, use quotes:
122116

123117
unquote("#{A "B"}C#{D "E"}")
124118

125119
You can use the sass-convert command to automatically fix most cases.
126120

127-
DEPRECATION WARNING on line 17 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
128-
in a future version of Sass. To preserve the current behavior, use quotes:
121+
DEPRECATION WARNING on line 17 of /sass/spec/libsass-issues/issue_1413/input.scss:
122+
#{} interpolation near operators will be simplified in a future version of Sass.
123+
To preserve the current behavior, use quotes:
129124

130125
unquote('A"B"')
131126

132-
DEPRECATION WARNING on line 19 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
133-
in a future version of Sass. To preserve the current behavior, use quotes:
127+
DEPRECATION WARNING on line 19 of /sass/spec/libsass-issues/issue_1413/input.scss:
128+
#{} interpolation near operators will be simplified in a future version of Sass.
129+
To preserve the current behavior, use quotes:
134130

135131
unquote('A"B"C')
136132

137-
DEPRECATION WARNING on line 20 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
138-
in a future version of Sass. To preserve the current behavior, use quotes:
133+
DEPRECATION WARNING on line 20 of /sass/spec/libsass-issues/issue_1413/input.scss:
134+
#{} interpolation near operators will be simplified in a future version of Sass.
135+
To preserve the current behavior, use quotes:
139136

140137
unquote('AB"C"')
141138

142-
DEPRECATION WARNING on line 22 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
143-
in a future version of Sass. To preserve the current behavior, use quotes:
139+
DEPRECATION WARNING on line 22 of /sass/spec/libsass-issues/issue_1413/input.scss:
140+
#{} interpolation near operators will be simplified in a future version of Sass.
141+
To preserve the current behavior, use quotes:
144142

145143
unquote("A#{B "C"}")
146144

147-
DEPRECATION WARNING on line 26 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
148-
in a future version of Sass. To preserve the current behavior, use quotes:
145+
DEPRECATION WARNING on line 24 of /sass/spec/libsass-issues/issue_1413/input.scss:
146+
#{} interpolation near operators will be simplified in a future version of Sass.
147+
To preserve the current behavior, use quotes:
148+
149+
unquote("#{"A" B}C#{D "E"}")
150+
151+
DEPRECATION WARNING on line 26 of /sass/spec/libsass-issues/issue_1413/input.scss:
152+
#{} interpolation near operators will be simplified in a future version of Sass.
153+
To preserve the current behavior, use quotes:
149154

150155
unquote("A#{"B" C "D" "E"}")
151156

152-
DEPRECATION WARNING on line 31 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
153-
in a future version of Sass. To preserve the current behavior, use quotes:
157+
DEPRECATION WARNING on line 31 of /sass/spec/libsass-issues/issue_1413/input.scss:
158+
#{} interpolation near operators will be simplified in a future version of Sass.
159+
To preserve the current behavior, use quotes:
154160

155161
unquote('A"B"')
156162

157-
DEPRECATION WARNING on line 33 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
158-
in a future version of Sass. To preserve the current behavior, use quotes:
163+
DEPRECATION WARNING on line 33 of /sass/spec/libsass-issues/issue_1413/input.scss:
164+
#{} interpolation near operators will be simplified in a future version of Sass.
165+
To preserve the current behavior, use quotes:
159166

160167
unquote('A"B"C')
161168

162-
DEPRECATION WARNING on line 34 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
163-
in a future version of Sass. To preserve the current behavior, use quotes:
169+
DEPRECATION WARNING on line 34 of /sass/spec/libsass-issues/issue_1413/input.scss:
170+
#{} interpolation near operators will be simplified in a future version of Sass.
171+
To preserve the current behavior, use quotes:
164172

165173
unquote('AB"C"')
166174

167-
DEPRECATION WARNING on line 36 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
168-
in a future version of Sass. To preserve the current behavior, use quotes:
175+
DEPRECATION WARNING on line 36 of /sass/spec/libsass-issues/issue_1413/input.scss:
176+
#{} interpolation near operators will be simplified in a future version of Sass.
177+
To preserve the current behavior, use quotes:
169178

170179
unquote("A#{B "C"}")
171180

172-
DEPRECATION WARNING on line 40 of /sass/spec/libsass-issues/issue_1413/input.scss: #{} interpolation near operators will be simplified
173-
in a future version of Sass. To preserve the current behavior, use quotes:
181+
DEPRECATION WARNING on line 38 of /sass/spec/libsass-issues/issue_1413/input.scss:
182+
#{} interpolation near operators will be simplified in a future version of Sass.
183+
To preserve the current behavior, use quotes:
184+
185+
unquote("#{"A" B}C#{D "E"}")
186+
187+
DEPRECATION WARNING on line 40 of /sass/spec/libsass-issues/issue_1413/input.scss:
188+
#{} interpolation near operators will be simplified in a future version of Sass.
189+
To preserve the current behavior, use quotes:
174190

175191
unquote("A#{"B" C "D" "E"}")

spec/libsass-closed-issues/issue_152/error

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
DEPRECATION WARNING on line 5 of /sass/spec/libsass-issues/issue_152/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 5 of /sass/spec/libsass-issues/issue_152/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote("10% 100%")
56

67
You can use the sass-convert command to automatically fix most cases.
78

8-
DEPRECATION WARNING on line 6 of /sass/spec/libsass-issues/issue_152/input.scss: #{} interpolation near operators will be simplified
9-
in a future version of Sass. To preserve the current behavior, use quotes:
9+
DEPRECATION WARNING on line 6 of /sass/spec/libsass-issues/issue_152/input.scss:
10+
#{} interpolation near operators will be simplified in a future version of Sass.
11+
To preserve the current behavior, use quotes:
1012

1113
unquote("10 % 100%")
1214

1315
You can use the sass-convert command to automatically fix most cases.
1416

15-
DEPRECATION WARNING on line 7 of /sass/spec/libsass-issues/issue_152/input.scss: #{} interpolation near operators will be simplified
16-
in a future version of Sass. To preserve the current behavior, use quotes:
17+
DEPRECATION WARNING on line 7 of /sass/spec/libsass-issues/issue_152/input.scss:
18+
#{} interpolation near operators will be simplified in a future version of Sass.
19+
To preserve the current behavior, use quotes:
1720

1821
unquote("10 %100%")
1922

spec/libsass-closed-issues/issue_1709/error

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
DEPRECATION WARNING on line 14 of /sass/spec/libsass-issues/issue_1709/input.scss: #{} interpolation near operators will be simplified
2-
in a future version of Sass. To preserve the current behavior, use quotes:
1+
DEPRECATION WARNING on line 14 of /sass/spec/libsass-issues/issue_1709/input.scss:
2+
#{} interpolation near operators will be simplified in a future version of Sass.
3+
To preserve the current behavior, use quotes:
34

45
unquote("#{$prefix}#{$transition}")
56

0 commit comments

Comments
 (0)