Skip to content

Commit d2a1507

Browse files
committed
1 parent a890307 commit d2a1507

File tree

17 files changed

+130
-16
lines changed

17 files changed

+130
-16
lines changed

CHANGELOG.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,76 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2025-09-03
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`dogs_built` - `v3.1.5-dev.6`](#dogs_built---v315-dev6)
19+
- [`dogs_cbor` - `v2.3.5-dev.6`](#dogs_cbor---v235-dev6)
20+
- [`dogs_core` - `v10.0.0-dev.6`](#dogs_core---v1000-dev6)
21+
- [`dogs_flutter` - `v0.0.1-dev.8`](#dogs_flutter---v001-dev8)
22+
- [`dogs_generator` - `v7.0.0-dev.6`](#dogs_generator---v700-dev6)
23+
- [`dogs_toml` - `v2.3.5-dev.6`](#dogs_toml---v235-dev6)
24+
- [`dogs_yaml` - `v2.3.5-dev.6`](#dogs_yaml---v235-dev6)
25+
- [`dogs_firestore` - `v0.3.0-dev.6`](#dogs_firestore---v030-dev6)
26+
27+
Packages with dependency updates only:
28+
29+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
30+
31+
- `dogs_firestore` - `v0.3.0-dev.6`
32+
33+
---
34+
35+
#### `dogs_built` - `v3.1.5-dev.6`
36+
37+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
38+
39+
#### `dogs_cbor` - `v2.3.5-dev.6`
40+
41+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
42+
43+
#### `dogs_core` - `v10.0.0-dev.6`
44+
45+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
46+
- **FIX**: enhance describe method to support TypeTree for converter retrieval, reformat.
47+
- **FIX**: make describe usable in schema passes.
48+
- **FEAT**: add a parseSchema function to convert a JSON string to SchemaType.
49+
- **FEAT**: add DogNativeMapReader and ConverterHelperExtensions for improved deserialization.
50+
- **FEAT**: add DogLinkable.
51+
- **DOCS**: add missing documentation comments for public members.
52+
53+
#### `dogs_flutter` - `v0.0.1-dev.8`
54+
55+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
56+
- **FIX**: enhance describe method to support TypeTree for converter retrieval, reformat.
57+
- **FEAT**: add new converters for BoxConstraints, Alignment, and Matrix4.
58+
- **FEAT**: add DogNativeMapReader and ConverterHelperExtensions for improved deserialization.
59+
- **FEAT**: add MetadataMixin to improve auto layout state capabilities.
60+
- **FEAT**: make the section theme configurable and simplify theme resolution.
61+
62+
#### `dogs_generator` - `v7.0.0-dev.6`
63+
64+
- **REFACTOR**: improve code formatting and readability.
65+
- **FEAT**: add DogLinkable.
66+
67+
#### `dogs_toml` - `v2.3.5-dev.6`
68+
69+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
70+
71+
#### `dogs_yaml` - `v2.3.5-dev.6`
72+
73+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
74+
75+
676
## 2025-09-01
777

878
### Changes

formats/dogs_cbor/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.3.5-dev.6
2+
3+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
4+
15
## 2.3.5-dev.5
26

37
- **REFACTOR**: backport the new element model to the aliased version and update to melos 7.0.0.

formats/dogs_cbor/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dogs_cbor
22
description: Cbor serializer for the dogs graph serializer
3-
version: 2.3.5-dev.5
3+
version: 2.3.5-dev.6
44
repository: https://github.com/DarwinFramework/dogs
55

66
environment:
@@ -10,7 +10,7 @@ resolution: workspace
1010

1111
dependencies:
1212
cbor: ^5.1.2
13-
dogs_core: ^10.0.0-dev.5
13+
dogs_core: ^10.0.0-dev.6
1414

1515
dev_dependencies:
1616
lints: ^5.1.1

formats/dogs_toml/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.3.5-dev.6
2+
3+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
4+
15
## 2.3.5-dev.5
26

37
- **REFACTOR**: backport the new element model to the aliased version and update to melos 7.0.0.

formats/dogs_toml/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dogs_toml
22
description: Toml serializer for the dogs graph serializer
3-
version: 2.3.5-dev.5
3+
version: 2.3.5-dev.6
44
repository: https://github.com/DarwinFramework/dogs
55

66
environment:
@@ -9,7 +9,7 @@ environment:
99
resolution: workspace
1010

1111
dependencies:
12-
dogs_core: ^10.0.0-dev.5
12+
dogs_core: ^10.0.0-dev.6
1313
toml: ^0.15.0
1414

1515
dev_dependencies:

formats/dogs_yaml/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.3.5-dev.6
2+
3+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
4+
15
## 2.3.5-dev.5
26

37
- **REFACTOR**: backport the new element model to the aliased version and update to melos 7.0.0.

formats/dogs_yaml/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dogs_yaml
22
description: Yaml serializer for the dogs graph serializer
3-
version: 2.3.5-dev.5
3+
version: 2.3.5-dev.6
44
repository: https://github.com/DarwinFramework/dogs
55

66
environment:
@@ -9,7 +9,7 @@ environment:
99
resolution: workspace
1010

1111
dependencies:
12-
dogs_core: ^10.0.0-dev.5
12+
dogs_core: ^10.0.0-dev.6
1313
yaml: ^3.1.2
1414
json2yaml: ^3.0.1
1515

packages/dogs_built/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.1.5-dev.6
2+
3+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
4+
15
## 3.1.5-dev.5
26

37
- **REFACTOR**: backport the new element model to the aliased version and update to melos 7.0.0.

packages/dogs_built/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dogs_built
22
description: Adds a basic interop for built_value serializers to dogs_core.
3-
version: 3.1.5-dev.5
3+
version: 3.1.5-dev.6
44
repository: https://github.com/DarwinFramework/dogs
55

66
environment:
@@ -11,7 +11,7 @@ resolution: workspace
1111
dependencies:
1212
built_collection: ^5.1.1
1313
built_value: ^8.6.2
14-
dogs_core: ^10.0.0-dev.5
14+
dogs_core: ^10.0.0-dev.6
1515

1616
dev_dependencies:
1717
lints: ^5.1.1

packages/dogs_core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 10.0.0-dev.6
2+
3+
- **REFACTOR**: remove library names for consistency across files and reformat the workspace.
4+
- **FIX**: enhance describe method to support TypeTree for converter retrieval, reformat.
5+
- **FIX**: make describe usable in schema passes.
6+
- **FEAT**: add a parseSchema function to convert a JSON string to SchemaType.
7+
- **FEAT**: add DogNativeMapReader and ConverterHelperExtensions for improved deserialization.
8+
- **FEAT**: add DogLinkable.
9+
- **DOCS**: add missing documentation comments for public members.
10+
111
## 10.0.0-dev.5
212

313
> Note: This release has breaking changes.

0 commit comments

Comments
 (0)