Skip to content

Commit 9a77a9a

Browse files
authored
Include deprecation IDs in deprecation messages (#2042)
1 parent c2a780e commit 9a77a9a

File tree

344 files changed

+1442
-1432
lines changed

Some content is hidden

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

344 files changed

+1442
-1432
lines changed

spec/core_functions/color/adjust/global.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> legacy/warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -29,7 +29,7 @@ a {
2929
}
3030

3131
<===> non_legacy/warning
32-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
32+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
3333
Use color.change instead.
3434

3535
More info and automated migrator: https://sass-lang.com/d/import

spec/core_functions/color/adjust/units.hrx

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ a {
3030
}
3131

3232
<===> hue/unknown/warning
33-
DEPRECATION WARNING: $hue: Passing a unit other than deg (60in) is deprecated.
33+
DEPRECATION WARNING [function-units]: $hue: Passing a unit other than deg (60in) is deprecated.
3434

3535
To preserve current behavior: calc($hue / 1in)
3636

@@ -76,7 +76,7 @@ a {
7676
}
7777

7878
<===> saturation/unitless/warning
79-
DEPRECATION WARNING: $saturation: Passing a number without unit % (-10) is deprecated.
79+
DEPRECATION WARNING [function-units]: $saturation: Passing a number without unit % (-10) is deprecated.
8080

8181
To preserve current behavior: $saturation * 1%
8282

@@ -100,7 +100,7 @@ a {
100100
}
101101

102102
<===> saturation/unknown/warning
103-
DEPRECATION WARNING: $saturation: Passing a number without unit % (-10in) is deprecated.
103+
DEPRECATION WARNING [function-units]: $saturation: Passing a number without unit % (-10in) is deprecated.
104104

105105
To preserve current behavior: calc($saturation / 1in * 1%)
106106

@@ -135,7 +135,7 @@ a {
135135
}
136136

137137
<===> lightness/unitless/warning
138-
DEPRECATION WARNING: $lightness: Passing a number without unit % (10) is deprecated.
138+
DEPRECATION WARNING [function-units]: $lightness: Passing a number without unit % (10) is deprecated.
139139

140140
To preserve current behavior: $lightness * 1%
141141

@@ -159,7 +159,7 @@ a {
159159
}
160160

161161
<===> lightness/unknown/warning
162-
DEPRECATION WARNING: $lightness: Passing a number without unit % (10in) is deprecated.
162+
DEPRECATION WARNING [function-units]: $lightness: Passing a number without unit % (10in) is deprecated.
163163

164164
To preserve current behavior: calc($lightness / 1in * 1%)
165165

@@ -194,7 +194,7 @@ a {
194194
}
195195

196196
<===> alpha/percent/warning
197-
DEPRECATION WARNING: $alpha: Passing a number with unit % is deprecated.
197+
DEPRECATION WARNING [function-units]: $alpha: Passing a number with unit % is deprecated.
198198

199199
To preserve current behavior: calc($alpha / 1%)
200200

@@ -218,7 +218,7 @@ a {
218218
}
219219

220220
<===> alpha/unknown/warning
221-
DEPRECATION WARNING: $alpha: Passing a number with unit px is deprecated.
221+
DEPRECATION WARNING [function-units]: $alpha: Passing a number with unit px is deprecated.
222222

223223
To preserve current behavior: calc($alpha / 1px)
224224

spec/core_functions/color/adjust_hue/above_max.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 540deg)
2424

spec/core_functions/color/adjust_hue/alpha.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 359deg)
2424

spec/core_functions/color/adjust_hue/error.hrx

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Error: Only 2 arguments allowed, but 3 were passed.
3636
a {b: adjust-hue(1, 2)}
3737

3838
<===> type/color/error
39-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
39+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
4040
Use color.adjust instead.
4141

4242
More info and automated migrator: https://sass-lang.com/d/import
@@ -60,7 +60,7 @@ Error: $color: 1 is not a color.
6060
a {b: adjust-hue(red, blue)}
6161

6262
<===> type/hue/error
63-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
63+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
6464
Use color.adjust instead.
6565

6666
More info and automated migrator: https://sass-lang.com/d/import
@@ -84,7 +84,7 @@ Error: $degrees: blue is not a number.
8484
a {b: adjust-hue(lch(0% 0 0deg), 10deg)}
8585

8686
<===> non_legacy/error
87-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
87+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
8888
Use color.adjust instead.
8989

9090
More info and automated migrator: https://sass-lang.com/d/import

spec/core_functions/color/adjust_hue/fraction.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 0.5deg)
2424

spec/core_functions/color/adjust_hue/max.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 359deg)
2424

spec/core_functions/color/adjust_hue/middle.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 123deg)
2424

spec/core_functions/color/adjust_hue/min.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 0deg)
2424

spec/core_functions/color/adjust_hue/named.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 123deg)
2424

spec/core_functions/color/adjust_hue/negative.hrx

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: -180deg)
2424

spec/core_functions/color/adjust_hue/units.hrx

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a {
77
}
88

99
<===> deg/warning
10-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
10+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
1111
Use color.adjust instead.
1212

1313
More info and automated migrator: https://sass-lang.com/d/import
@@ -18,7 +18,7 @@ More info and automated migrator: https://sass-lang.com/d/import
1818
'
1919
input.scss 1:7 root stylesheet
2020

21-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
21+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
2222

2323
color.adjust($color, $hue: 60deg)
2424

@@ -41,7 +41,7 @@ a {
4141
}
4242

4343
<===> unitless/warning
44-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
44+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
4545
Use color.adjust instead.
4646

4747
More info and automated migrator: https://sass-lang.com/d/import
@@ -52,7 +52,7 @@ More info and automated migrator: https://sass-lang.com/d/import
5252
'
5353
input.scss 1:7 root stylesheet
5454

55-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
55+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
5656

5757
color.adjust($color, $hue: 60deg)
5858

@@ -75,7 +75,7 @@ a {
7575
}
7676

7777
<===> unknown/warning
78-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
78+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
7979
Use color.adjust instead.
8080

8181
More info and automated migrator: https://sass-lang.com/d/import
@@ -86,7 +86,7 @@ More info and automated migrator: https://sass-lang.com/d/import
8686
'
8787
input.scss 1:7 root stylesheet
8888

89-
DEPRECATION WARNING: $degrees: Passing a unit other than deg (60in) is deprecated.
89+
DEPRECATION WARNING [function-units]: $degrees: Passing a unit other than deg (60in) is deprecated.
9090

9191
To preserve current behavior: calc($degrees / 1in)
9292

@@ -98,7 +98,7 @@ See https://sass-lang.com/d/function-units
9898
'
9999
input.scss 1:7 root stylesheet
100100

101-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
101+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
102102

103103
color.adjust($color, $hue: 60deg)
104104

@@ -121,7 +121,7 @@ a {
121121
}
122122

123123
<===> angle/warning
124-
DEPRECATION WARNING: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
124+
DEPRECATION WARNING [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0.
125125
Use color.adjust instead.
126126

127127
More info and automated migrator: https://sass-lang.com/d/import
@@ -132,7 +132,7 @@ More info and automated migrator: https://sass-lang.com/d/import
132132
'
133133
input.scss 1:7 root stylesheet
134134

135-
DEPRECATION WARNING: adjust-hue() is deprecated. Suggestion:
135+
DEPRECATION WARNING [color-functions]: adjust-hue() is deprecated. Suggestion:
136136

137137
color.adjust($color, $hue: 3437.7467707849deg)
138138

spec/core_functions/color/alpha.hrx

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ a {
7373
}
7474

7575
<===> filter/space_before_equals/warning
76-
DEPRECATION WARNING: Using color.alpha() for a Microsoft filter is deprecated.
76+
DEPRECATION WARNING [color-module-compat]: Using color.alpha() for a Microsoft filter is deprecated.
7777

7878
Recommendation: alpha(c = d)
7979

@@ -158,7 +158,7 @@ a {
158158
}
159159

160160
<===> css_overloads/alpha/one_arg/warning
161-
DEPRECATION WARNING: Using color.alpha() for a Microsoft filter is deprecated.
161+
DEPRECATION WARNING [color-module-compat]: Using color.alpha() for a Microsoft filter is deprecated.
162162

163163
Recommendation: alpha(c=d)
164164

@@ -180,7 +180,7 @@ a {
180180
}
181181

182182
<===> css_overloads/alpha/multi_arg/warning
183-
DEPRECATION WARNING: Using color.alpha() for a Microsoft filter is deprecated.
183+
DEPRECATION WARNING [color-module-compat]: Using color.alpha() for a Microsoft filter is deprecated.
184184

185185
Recommendation: alpha(c=d, e=f, g=h)
186186

@@ -202,7 +202,7 @@ a {
202202
}
203203

204204
<===> css_overloads/opacity/warning
205-
DEPRECATION WARNING: Passing a number (1 to color.opacity() is deprecated.
205+
DEPRECATION WARNING [color-module-compat]: Passing a number (1 to color.opacity() is deprecated.
206206

207207
Recommendation: opacity(1)
208208

0 commit comments

Comments
 (0)