Skip to content

Commit

Permalink
Release 8.6.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmorgan committed Aug 24, 2023
1 parent 88818ad commit 52a6064
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 51 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

# 8.6.2

- Remove JSON from `DeserializationError` message to prevent data accidentally
leaking into logs. The JSON is still available on the `DeserializationError`
object.
- Fix generation for fields that are `Function` types that are declared
separately, for example in a `mixin` defined in another source file, and use
named or positional parameters.
Expand Down
10 changes: 2 additions & 8 deletions benchmark/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: benchmark
version: 8.6.1
version: 8.6.2
publish_to: none
description: >
Benchmark, not for publishing.
Expand All @@ -14,13 +14,7 @@ dependencies:

dev_dependencies:
build_runner: '>=1.0.0 <3.0.0'
built_value_generator: ^8.6.1
built_value_generator: ^8.6.2
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
6 changes: 1 addition & 5 deletions built_value/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value
version: 8.6.1
version: 8.6.2
description: >
Value types with builders, Dart classes as enums, and serialization.
This library is the runtime dependency.
Expand All @@ -19,7 +19,3 @@ dependencies:
dev_dependencies:
pedantic: ^1.4.0
test: ^1.16.0

dependency_overrides:
built_value_generator:
path: ../built_value_generator
6 changes: 1 addition & 5 deletions built_value_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value_generator
version: 8.6.1
version: 8.6.2
description: >
Value types with builders, Dart classes as enums, and serialization.
This library is the dev dependency.
Expand All @@ -26,7 +26,3 @@ dev_dependencies:
build_runner: '>=1.0.0 <3.0.0'
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
10 changes: 2 additions & 8 deletions built_value_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: built_value_test
version: 8.6.1
version: 8.6.2
description: >
Value types with builders, Dart classes as enums, and serialization.
This library provides test support.
Expand All @@ -21,13 +21,7 @@ dependencies:
quiver: '>=0.21.0 <4.0.0'

dev_dependencies:
built_value_generator: ^8.6.1
built_value_generator: ^8.6.2
build_runner: '>=1.0.0 <3.0.0'
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
10 changes: 2 additions & 8 deletions chat_example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: chat_example
version: 8.6.1
version: 8.6.2
publish_to: none
description: >
Just an example, not for publishing.
Expand All @@ -20,12 +20,6 @@ dev_dependencies:
build_runner: any
build_test: any
build_web_compilers: any
built_value_generator: ^8.6.1
built_value_generator: ^8.6.2
pedantic: ^1.4.0
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
10 changes: 2 additions & 8 deletions end_to_end_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: end_to_end_test
version: 8.6.1
version: 8.6.2
publish_to: none
description: >
Tests, not for publishing.
Expand All @@ -15,14 +15,8 @@ dependencies:
dev_dependencies:
build: '>=1.0.0 <3.0.0'
build_runner: '>=1.0.0 <3.0.0'
built_value_generator: ^8.6.1
built_value_generator: ^8.6.2
fixnum: ^1.0.0
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.16.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator
3 changes: 1 addition & 2 deletions end_to_end_test/test/values_serializer_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ void main() {
];
expect(
() => serializers.deserialize(incorrectSerialized),
throwsA(isErrorContaining(
'Deserializing to '
throwsA(isErrorContaining('Deserializing to '
"'unspecified' failed due to: Deserializing to "
"'ValidatedValue' failed due to: Deserializing to 'int' "
"failed due to: type 'String' is not a subtype of type "
Expand Down
8 changes: 1 addition & 7 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,7 @@ dependencies:

dev_dependencies:
build_runner: '>=1.0.0 <3.0.0'
built_value_generator: ^8.6.1
built_value_generator: ^8.6.2
pedantic: ^1.4.0
quiver: '>=0.21.0 <4.0.0'
test: ^1.0.0

dependency_overrides:
built_value:
path: ../built_value
built_value_generator:
path: ../built_value_generator

0 comments on commit 52a6064

Please sign in to comment.