Skip to content

Commit e216415

Browse files
committed
update changelog
1 parent 7671b01 commit e216415

9 files changed

Lines changed: 25 additions & 9 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: dart-lang/setup-dart@v1.3
1818
with:
19-
sdk: 3.6.0
19+
sdk: 3.8.0
2020

2121
- name: Bootstrap
2222
run: |

examples/fic_mappable/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: fic_mappable
22

33
environment:
4-
sdk: '>=3.6.0 <4.0.0'
4+
sdk: '>=3.7.0 <4.0.0'
55

66
dependencies:
77
dart_mappable: any
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: freezed_mappable
22

33
environment:
4-
sdk: '>=3.6.0 <4.0.0'
4+
sdk: '>=3.7.0 <4.0.0'
55

66
dependencies:
77
dart_mappable: any
8-
freezed_annotation: ^2.4.4
8+
freezed_annotation: ^3.1.0
99

1010
dev_dependencies:
1111
build_runner: ^2.4.14
1212
dart_mappable_builder: any
13-
freezed: ^2.5.8
13+
freezed: ^3.2.0
1414
lints: ^5.1.1

examples/package_comparison/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: package_comparison
22

33
environment:
4-
sdk: ">=3.0.0 <4.0.0"
4+
sdk: ">=3.7.0 <4.0.0"
55

66
dependencies:
77
dart_json_mapper: ^2.2.7+5

examples/polymorph_copywith/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: polymorph_copywith
22

33
environment:
4-
sdk: '>=3.6.0 <4.0.0'
4+
sdk: '>=3.7.0 <4.0.0'
55

66
dependencies:
77
dart_mappable: any

packages/dart_mappable/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 4.6.0
2+
3+
- Add support for self-referencing generics (e.g. `T extends Comparable<T>`)
4+
- Fix handling of nullable function fields.
5+
- Disable formatting of generated files through `// dart format off`.
6+
- Require `sdk: >=3.7.0`.
7+
18
# 4.5.0
29

310
- Added `shallowEncoding` option to `@MappableClass()`.

packages/dart_mappable/pubspec.yaml

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

2424
dev_dependencies:
2525
build_runner: ^2.4.14
26-
dart_mappable_builder: ^4.5.0
26+
dart_mappable_builder: ^4.6.0
2727
lints: ^5.0.0
2828
test: ^1.25.10
2929

packages/dart_mappable_builder/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 4.6.0
2+
3+
- Migrate to new `element2` analyzer model.
4+
Bump `analyzer` to `>=7.5.9`, `build` to 3.0.0 and `source_gen` to 3.0.0.
5+
- Add support for self-referencing generics (e.g. `T extends Comparable<T>`)
6+
- Fix handling of nullable function fields.
7+
- Disable formatting of generated files through `// dart format off`.
8+
- Require `sdk: >=3.7.0`.
9+
110
# 4.5.0
211

312
- Added support for `shallowEncoding` and `includeTypeId` options of `@MappableClass()`.

packages/dart_mappable_builder/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
ansicolor: ^2.0.1
1515
build: ^3.0.0
1616
collection: ^1.15.0
17-
dart_mappable: ^4.5.0
17+
dart_mappable: ^4.6.0
1818
dart_style: ^3.0.1
1919
glob: ^2.1.0
2020
path: ^1.8.0

0 commit comments

Comments
 (0)