File tree Expand file tree Collapse file tree 8 files changed +30
-8
lines changed Expand file tree Collapse file tree 8 files changed +30
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.80.1
2
+
3
+ * Fix a bug where repeated deprecation warnings were not automatically limited.
4
+
1
5
## 1.80.0
2
6
3
7
* ` @import ` is now officially deprecated, as are global built-in functions that
Original file line number Diff line number Diff line change @@ -380,6 +380,9 @@ final class AsyncImportCache {
380
380
silenceDeprecations: {...? silenceDeprecations},
381
381
fatalDeprecations: {...? fatalDeprecations},
382
382
futureDeprecations: {...? futureDeprecations},
383
- limitRepetition: false );
383
+ // TODO - sass/dart-sass#2390: We should limit repetition within a given
384
+ // compilation while allowing it across different compilations (such as
385
+ // with `--watch`).
386
+ limitRepetition: true );
384
387
}
385
388
}
Original file line number Diff line number Diff line change 5
5
// DO NOT EDIT. This file was generated from async_import_cache.dart.
6
6
// See tool/grind/synchronize.dart for details.
7
7
//
8
- // Checksum: e043f2a3dafb741a6f053a7c1785b1c9959242f5
8
+ // Checksum: f459089f21fcbfca2d073ba73a5bcf4e98ecab1b
9
9
//
10
10
// ignore_for_file: unused_import
11
11
@@ -375,6 +375,9 @@ final class ImportCache {
375
375
silenceDeprecations: {...? silenceDeprecations},
376
376
fatalDeprecations: {...? fatalDeprecations},
377
377
futureDeprecations: {...? futureDeprecations},
378
- limitRepetition: false );
378
+ // TODO - sass/dart-sass#2390: We should limit repetition within a given
379
+ // compilation while allowing it across different compilations (such as
380
+ // with `--watch`).
381
+ limitRepetition: true );
379
382
}
380
383
}
Original file line number Diff line number Diff line change
1
+ ## 0.3.1
2
+
3
+ * No user-visible changes.
4
+
1
5
## 0.3.0
2
6
3
7
* No user-visible changes.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sass-parser" ,
3
- "version" : " 0.3.0 " ,
3
+ "version" : " 0.3.1 " ,
4
4
"description" : " A PostCSS-compatible wrapper of the official Sass parser" ,
5
5
"repository" : " sass/sass" ,
6
6
"author" : " Google Inc." ,
Original file line number Diff line number Diff line change
1
+ ## 13.1.1
2
+
3
+ * Make ` AsyncImporterCache.wrapLogger() ` and ` ImporterCache.wrapLogger() ` always
4
+ limit the repetition of deprecations. this is unlikely to be the long-term
5
+ behavior, but it's necessary to avoid flooding users with deprecations in the
6
+ short term.
7
+
1
8
## 13.1.0
2
9
3
- * No user-visible changes.
10
+ * Add ` AsyncImporterCache.wrapLogger() ` and ` ImporterCache.wrapLogger() `
11
+ methods, which wrap a given logger to apply deprecation options to it.
4
12
5
13
## 13.0.1
6
14
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ name: sass_api
2
2
# Note: Every time we add a new Sass AST node, we need to bump the *major*
3
3
# version because it's a breaking change for anyone who's implementing the
4
4
# visitor interface(s).
5
- version : 13.1.0
5
+ version : 13.1.1
6
6
description : Additional APIs for Dart Sass.
7
7
homepage : https://github.com/sass/dart-sass
8
8
9
9
environment :
10
10
sdk : " >=3.0.0 <4.0.0"
11
11
12
12
dependencies :
13
- sass : 1.80.0
13
+ sass : 1.80.1
14
14
15
15
dev_dependencies :
16
16
dartdoc : ^8.0.14
Original file line number Diff line number Diff line change 1
1
name : sass
2
- version : 1.80.0
2
+ version : 1.80.1
3
3
description : A Sass implementation in Dart.
4
4
homepage : https://github.com/sass/dart-sass
5
5
You can’t perform that action at this time.
0 commit comments