Skip to content

Commit baa048f

Browse files
committed
Bump analyzer version. Release 8.6.3.
1 parent e5c263d commit baa048f

File tree

10 files changed

+26
-22
lines changed

10 files changed

+26
-22
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
# 8.6.3
4+
5+
- Bump version of `analyzer`.
6+
37
# 8.6.2
48

59
- Remove JSON from `DeserializationError` message to prevent data accidentally

benchmark/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: benchmark
2-
version: 8.6.2
2+
version: 8.6.3
33
publish_to: none
44
description: >
55
Benchmark, not for publishing.
@@ -14,7 +14,7 @@ dependencies:
1414

1515
dev_dependencies:
1616
build_runner: '>=1.0.0 <3.0.0'
17-
built_value_generator: ^8.6.2
17+
built_value_generator: ^8.6.3
1818
pedantic: ^1.4.0
1919
quiver: '>=0.21.0 <4.0.0'
2020
test: ^1.0.0

built_value/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value
2-
version: 8.6.2
2+
version: 8.6.3
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the runtime dependency.

built_value_generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_generator
2-
version: 8.6.2
2+
version: 8.6.3
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library is the dev dependency.
@@ -13,7 +13,7 @@ environment:
1313
sdk: '>=3.0.0 <4.0.0'
1414

1515
dependencies:
16-
analyzer: '>=5.2.0 <6.0.0'
16+
analyzer: '>=5.2.0 <7.0.0'
1717
build: '>=1.0.0 <3.0.0'
1818
build_config: '>=0.3.1 <2.0.0'
1919
built_collection: ^5.0.0

built_value_generator/test/built_value_generator_test.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ part 'value.g.dart';
218218
abstract class Value implements Built<Value, ValueBuilder> {
219219
Value._();
220220
factory Value([void Function(ValueBuilder) updates]) = _\$Value;
221-
221+
222222
@nullable
223223
int get x;
224224
}'''),
@@ -866,7 +866,7 @@ part 'value.g.dart';
866866
abstract class Value implements Built<Value, ValueBuilder> {
867867
Value._();
868868
factory Value([void Function(ValueBuilder) updates]) = _\$Value;
869-
869+
870870
@BuiltValueField(nestedBuilder: true)
871871
NestedValue get nestedValue;
872872
}
@@ -946,12 +946,12 @@ class BuiltValue {
946946
final bool comparableBuilders;
947947
final bool instantiable;
948948
final bool nestedBuilders;
949-
final String wireName;
949+
final String? wireName;
950950
951951
const BuiltValue({
952-
this.comparableBuilders: false,
953-
this.instantiable: true,
954-
this.nestedBuilders: true,
952+
this.comparableBuilders = false,
953+
this.instantiable = true,
954+
this.nestedBuilders = true,
955955
this.wireName});
956956
}
957957
@@ -975,7 +975,7 @@ class BuiltValueHook {
975975
final bool finalizeBuilder;
976976
977977
const BuiltValueHook(
978-
{this.initializeBuilder,
979-
this.finalizeBuilder});
978+
{this.initializeBuilder = false,
979+
this.finalizeBuilder = false});
980980
}
981981
''';

built_value_generator/test/enum_class_generator_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,8 @@ class EnumClass {
651651
}
652652
653653
class BuiltValueEnumConst {
654-
final String wireName;
655-
final String wireNumber;
654+
final String? wireName;
655+
final int? wireNumber;
656656
final bool fallback;
657657
658658
const BuiltValueEnumConst({

built_value_test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: built_value_test
2-
version: 8.6.2
2+
version: 8.6.3
33
description: >
44
Value types with builders, Dart classes as enums, and serialization.
55
This library provides test support.
@@ -21,7 +21,7 @@ dependencies:
2121
quiver: '>=0.21.0 <4.0.0'
2222

2323
dev_dependencies:
24-
built_value_generator: ^8.6.2
24+
built_value_generator: ^8.6.3
2525
build_runner: '>=1.0.0 <3.0.0'
2626
pedantic: ^1.4.0
2727
test: ^1.0.0

chat_example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: chat_example
2-
version: 8.6.2
2+
version: 8.6.3
33
publish_to: none
44
description: >
55
Just an example, not for publishing.
@@ -20,6 +20,6 @@ dev_dependencies:
2020
build_runner: any
2121
build_test: any
2222
build_web_compilers: any
23-
built_value_generator: ^8.6.2
23+
built_value_generator: ^8.6.3
2424
pedantic: ^1.4.0
2525
test: ^1.0.0

end_to_end_test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: end_to_end_test
2-
version: 8.6.2
2+
version: 8.6.3
33
publish_to: none
44
description: >
55
Tests, not for publishing.
@@ -15,7 +15,7 @@ dependencies:
1515
dev_dependencies:
1616
build: '>=1.0.0 <3.0.0'
1717
build_runner: '>=1.0.0 <3.0.0'
18-
built_value_generator: ^8.6.2
18+
built_value_generator: ^8.6.3
1919
fixnum: ^1.0.0
2020
pedantic: ^1.4.0
2121
quiver: '>=0.21.0 <4.0.0'

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313

1414
dev_dependencies:
1515
build_runner: '>=1.0.0 <3.0.0'
16-
built_value_generator: ^8.6.2
16+
built_value_generator: ^8.6.3
1717
pedantic: ^1.4.0
1818
quiver: '>=0.21.0 <4.0.0'
1919
test: ^1.0.0

0 commit comments

Comments
 (0)