Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.

Commit d426ab8

Browse files
committed
Update Dart Sass version and release
1 parent 8bde248 commit d426ab8

File tree

3 files changed

+70
-43
lines changed

3 files changed

+70
-43
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 1.57.1
2+
3+
* No user-visible changes.
4+
5+
## 1.57.0
6+
7+
* Add a `split($string, $separator, $limit: null)` function to `sass:string`
8+
that splits a string into separate substrings based on a separator string.
9+
10+
### JavaScript API
11+
12+
* **Potentially breaking bug fix**: Custom functions in both the modern and
13+
legacy API now properly reject signatures with whitespace between the function
14+
name and parentheses.
15+
16+
* Custom functions in the legacy API now allow signatures with whitespace before
17+
the function name, to match a bug in Node Sass.
18+
19+
### Dart API
20+
21+
* **Potentially breaking bug fix**: `Callable.fromSignature()` and
22+
`AsyncCallable.fromSignature()` now reject signatures with whitespace between
23+
the function name and parentheses.
24+
125
## 1.56.2
226

327
### Embedded Sass

pubspec.lock

Lines changed: 44 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "48.0.0"
10+
version: "51.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "5.0.0"
17+
version: "5.3.1"
1818
archive:
1919
dependency: transitive
2020
description:
2121
name: archive
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "3.3.1"
24+
version: "3.3.5"
2525
args:
2626
dependency: transitive
2727
description:
@@ -35,14 +35,14 @@ packages:
3535
name: async
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "2.9.0"
38+
version: "2.10.0"
3939
boolean_selector:
4040
dependency: transitive
4141
description:
4242
name: boolean_selector
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "2.1.0"
45+
version: "2.1.1"
4646
charcode:
4747
dependency: transitive
4848
description:
@@ -63,7 +63,7 @@ packages:
6363
name: cli_pkg
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "2.1.6"
66+
version: "2.1.9"
6767
cli_repl:
6868
dependency: transitive
6969
description:
@@ -84,14 +84,14 @@ packages:
8484
name: collection
8585
url: "https://pub.dartlang.org"
8686
source: hosted
87-
version: "1.16.0"
87+
version: "1.17.0"
8888
convert:
8989
dependency: transitive
9090
description:
9191
name: convert
9292
url: "https://pub.dartlang.org"
9393
source: hosted
94-
version: "3.0.2"
94+
version: "3.1.1"
9595
coverage:
9696
dependency: transitive
9797
description:
@@ -133,14 +133,14 @@ packages:
133133
name: frontend_server_client
134134
url: "https://pub.dartlang.org"
135135
source: hosted
136-
version: "3.0.0"
136+
version: "3.2.0"
137137
glob:
138138
dependency: transitive
139139
description:
140140
name: glob
141141
url: "https://pub.dartlang.org"
142142
source: hosted
143-
version: "2.1.0"
143+
version: "2.1.1"
144144
grinder:
145145
dependency: "direct dev"
146146
description:
@@ -168,7 +168,7 @@ packages:
168168
name: http_parser
169169
url: "https://pub.dartlang.org"
170170
source: hosted
171-
version: "4.0.1"
171+
version: "4.0.2"
172172
io:
173173
dependency: transitive
174174
description:
@@ -182,7 +182,7 @@ packages:
182182
name: js
183183
url: "https://pub.dartlang.org"
184184
source: hosted
185-
version: "0.6.4"
185+
version: "0.6.5"
186186
json_annotation:
187187
dependency: transitive
188188
description:
@@ -196,21 +196,21 @@ packages:
196196
name: lints
197197
url: "https://pub.dartlang.org"
198198
source: hosted
199-
version: "2.0.0"
199+
version: "2.0.1"
200200
logging:
201201
dependency: transitive
202202
description:
203203
name: logging
204204
url: "https://pub.dartlang.org"
205205
source: hosted
206-
version: "1.0.2"
206+
version: "1.1.0"
207207
matcher:
208208
dependency: transitive
209209
description:
210210
name: matcher
211211
url: "https://pub.dartlang.org"
212212
source: hosted
213-
version: "0.12.12"
213+
version: "0.12.14"
214214
meta:
215215
dependency: "direct main"
216216
description:
@@ -224,7 +224,7 @@ packages:
224224
name: mime
225225
url: "https://pub.dartlang.org"
226226
source: hosted
227-
version: "1.0.2"
227+
version: "1.0.3"
228228
node_interop:
229229
dependency: transitive
230230
description:
@@ -252,14 +252,21 @@ packages:
252252
name: path
253253
url: "https://pub.dartlang.org"
254254
source: hosted
255-
version: "1.8.2"
255+
version: "1.8.3"
256256
petitparser:
257257
dependency: transitive
258258
description:
259259
name: petitparser
260260
url: "https://pub.dartlang.org"
261261
source: hosted
262-
version: "5.0.0"
262+
version: "5.1.0"
263+
pointycastle:
264+
dependency: transitive
265+
description:
266+
name: pointycastle
267+
url: "https://pub.dartlang.org"
268+
source: hosted
269+
version: "3.6.2"
263270
pool:
264271
dependency: transitive
265272
description:
@@ -287,18 +294,18 @@ packages:
287294
name: pub_semver
288295
url: "https://pub.dartlang.org"
289296
source: hosted
290-
version: "2.1.1"
297+
version: "2.1.3"
291298
pubspec_parse:
292299
dependency: "direct dev"
293300
description:
294301
name: pubspec_parse
295302
url: "https://pub.dartlang.org"
296303
source: hosted
297304
version: "1.2.1"
298-
quiver:
305+
retry:
299306
dependency: transitive
300307
description:
301-
name: quiver
308+
name: retry
302309
url: "https://pub.dartlang.org"
303310
source: hosted
304311
version: "3.1.0"
@@ -308,13 +315,13 @@ packages:
308315
name: sass
309316
url: "https://pub.dartlang.org"
310317
source: hosted
311-
version: "1.56.2"
318+
version: "1.57.1"
312319
sass_analysis:
313320
dependency: "direct dev"
314321
description:
315322
path: analysis
316323
ref: HEAD
317-
resolved-ref: a65e504b484eeacfff5219a24ad4b89e5ee1f87f
324+
resolved-ref: "5522c17a7bf88f07ddef02ae97caf15c779196de"
318325
url: "https://github.com/sass/dart-sass.git"
319326
source: git
320327
version: "0.0.0"
@@ -324,7 +331,7 @@ packages:
324331
name: sass_api
325332
url: "https://pub.dartlang.org"
326333
source: hosted
327-
version: "4.1.2"
334+
version: "4.2.1"
328335
shelf:
329336
dependency: transitive
330337
description:
@@ -352,21 +359,21 @@ packages:
352359
name: shelf_web_socket
353360
url: "https://pub.dartlang.org"
354361
source: hosted
355-
version: "1.0.2"
362+
version: "1.0.3"
356363
source_map_stack_trace:
357364
dependency: transitive
358365
description:
359366
name: source_map_stack_trace
360367
url: "https://pub.dartlang.org"
361368
source: hosted
362-
version: "2.1.0"
369+
version: "2.1.1"
363370
source_maps:
364371
dependency: transitive
365372
description:
366373
name: source_maps
367374
url: "https://pub.dartlang.org"
368375
source: hosted
369-
version: "0.10.10"
376+
version: "0.10.11"
370377
source_span:
371378
dependency: "direct main"
372379
description:
@@ -380,7 +387,7 @@ packages:
380387
name: stack_trace
381388
url: "https://pub.dartlang.org"
382389
source: hosted
383-
version: "1.10.0"
390+
version: "1.11.0"
384391
stream_channel:
385392
dependency: "direct main"
386393
description:
@@ -394,14 +401,14 @@ packages:
394401
name: stream_transform
395402
url: "https://pub.dartlang.org"
396403
source: hosted
397-
version: "2.0.0"
404+
version: "2.1.0"
398405
string_scanner:
399406
dependency: transitive
400407
description:
401408
name: string_scanner
402409
url: "https://pub.dartlang.org"
403410
source: hosted
404-
version: "1.1.1"
411+
version: "1.2.0"
405412
term_glyph:
406413
dependency: "direct main"
407414
description:
@@ -415,42 +422,42 @@ packages:
415422
name: test
416423
url: "https://pub.dartlang.org"
417424
source: hosted
418-
version: "1.21.6"
425+
version: "1.22.1"
419426
test_api:
420427
dependency: transitive
421428
description:
422429
name: test_api
423430
url: "https://pub.dartlang.org"
424431
source: hosted
425-
version: "0.4.14"
432+
version: "0.4.17"
426433
test_core:
427434
dependency: transitive
428435
description:
429436
name: test_core
430437
url: "https://pub.dartlang.org"
431438
source: hosted
432-
version: "0.4.18"
439+
version: "0.4.21"
433440
test_descriptor:
434441
dependency: "direct dev"
435442
description:
436443
name: test_descriptor
437444
url: "https://pub.dartlang.org"
438445
source: hosted
439-
version: "2.0.0"
446+
version: "2.0.1"
440447
test_process:
441448
dependency: transitive
442449
description:
443450
name: test_process
444451
url: "https://pub.dartlang.org"
445452
source: hosted
446-
version: "2.0.2"
453+
version: "2.0.3"
447454
tuple:
448455
dependency: transitive
449456
description:
450457
name: tuple
451458
url: "https://pub.dartlang.org"
452459
source: hosted
453-
version: "2.0.0"
460+
version: "2.0.1"
454461
typed_data:
455462
dependency: "direct main"
456463
description:
@@ -471,7 +478,7 @@ packages:
471478
name: watcher
472479
url: "https://pub.dartlang.org"
473480
source: hosted
474-
version: "1.0.1"
481+
version: "1.0.2"
475482
web_socket_channel:
476483
dependency: transitive
477484
description:

pubspec.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
11
name: sass_embedded
2-
version: 1.56.2
2+
version: 1.57.1
33
description: An implementation of the Sass embedded protocol using Dart Sass.
44
homepage: https://github.com/sass/dart-sass-embedded
5-
65
environment:
76
sdk: '>=2.12.0 <3.0.0'
8-
97
executables:
108
dart-sass-embedded: dart_sass_embedded
11-
129
dependencies:
1310
async: ">=1.13.0 <3.0.0"
1411
meta: ^1.1.0
1512
path: ^1.6.0
1613
protobuf: ^2.0.0
17-
sass: 1.56.2
14+
sass: 1.57.1
1815
sass_api: ^4.0.0
1916
source_span: ^1.1.0
2017
stack_trace: ^1.6.0
2118
stream_channel: ">=1.6.0 <3.0.0"
2219
term_glyph: ^1.0.0
2320
typed_data: ^1.1.0
24-
2521
dev_dependencies:
2622
cli_pkg: ^2.1.0
2723
grinder: ^0.9.0

0 commit comments

Comments
 (0)