Skip to content

Releases: google/built_value.dart

Require `analyzer 13.0.0`

Choose a tag to compare

@davidmorgan davidmorgan released this 30 Apr 10:00
e5b9355
  • Require analyzer 13.0.0.

Allow analyzer 11 and 12

Choose a tag to compare

@davidmorgan davidmorgan released this 25 Mar 09:56
b06f665
  • Allow analyzer 11.0.0 and analyzer 12.0.0.

Reduced dynamic calls

Choose a tag to compare

@davidmorgan davidmorgan released this 20 Feb 11:10
416e896
  • Reduce use of dynamic calls in generated operator== when there are
    functions: only use dynamic calls if the class also has type parameters.

Require `analyzer ^10.0.0`

Choose a tag to compare

@davidmorgan davidmorgan released this 15 Jan 08:54
97c5920
  • Require analyzer ^10.0.0, stop using removed and deprecated methods from
    earlier versions.

Allow analyzer 10.0.0

Choose a tag to compare

@davidmorgan davidmorgan released this 13 Jan 10:53
5701511
  • Allow analyzer 10.0.0.

Allow `analyzer 9.0.0`

Choose a tag to compare

@davidmorgan davidmorgan released this 21 Nov 09:41
fb35e5d
  • Allow analyzer 9.0.0.

Update dependencies

Choose a tag to compare

@davidmorgan davidmorgan released this 04 Sep 09:34
b6a07f5
  • Require analyzer ^8.0.0.
  • Allow built_value_generator to use build 4.0.0.
  • Allow built_value_generator to use source_gen 4.0.0.

Use `build 3.0.0`

Choose a tag to compare

@davidmorgan davidmorgan released this 18 Jul 08:15
e650eda
  • Use build ^3.0.0.
  • Use source_gen ^3.0.0.

Use `build ^3.0.0-dev`

Pre-release

Choose a tag to compare

@davidmorgan davidmorgan released this 08 Jul 10:44
3aa5d69
  • Use build ^3.0.0-dev.
  • Use source_gen ^3.0.0-dev.

Serialize mutable collections

Choose a tag to compare

@davidmorgan davidmorgan released this 28 May 08:22
8060463
  • Add mutable collection serializers so built_value can serialize List,
    Set and Map. It's still recommended to avoid mutable collections inside
    value types as they break hashing, comparison and caching; the intended use
    case is that you have one top level mutable collection of your immutable
    value types.