You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix [#400](https://github.com/biojppm/rapidyaml/issues/400) ([PR#506](https://github.com/biojppm/rapidyaml/pull/506)): clear anchors after resolving.
5
+
- Fix [#484](https://github.com/biojppm/rapidyaml/issues/484) ([PR#506](https://github.com/biojppm/rapidyaml/pull/506)): fix merge key order for last element to be overriden.
6
+
-[PR#503](https://github.com/biojppm/rapidyaml/pull/503): ensure parse error on `a: b: c` and similar cases containing nested maps opening on the same line.
7
+
-[PR#502](https://github.com/biojppm/rapidyaml/pull/502): fix parse errors or missing tags:
8
+
- missing tags in empty documents:
9
+
```yaml
10
+
!yamlscript/v0/bare
11
+
--- !code
12
+
42
13
+
```
14
+
- trailing empty keys or vals:
15
+
```yaml
16
+
a:
17
+
:
18
+
```
19
+
- missing tags in trailing empty keys or vals:
20
+
```yaml
21
+
a: !tag
22
+
!tag : !tag
23
+
```
24
+
- missing tags in complex maps:
25
+
```yaml
26
+
? a: !tag
27
+
!tag : !tag
28
+
:
29
+
!tag : !tag
30
+
```
31
+
- [PR#501](https://github.com/biojppm/rapidyaml/pull/501): fix missing tag in `- !!seq []`.
32
+
- [PR#508](https://github.com/biojppm/rapidyaml/pull/508): fix build with cmake 4.
33
+
- [PR#517](https://github.com/biojppm/rapidyaml/pull/517) (fixes [#516](https://github.com/biojppm/rapidyaml/issues/516)): fix python wheels for windows and macosx.
34
+
- Fix [#120](https://github.com/biojppm/rapidyaml/issues/120) (again): add workaround for #define emit in Qt
- Fix [#400](https://github.com/biojppm/rapidyaml/issues/400) ([PR#506](https://github.com/biojppm/rapidyaml/pull/506)): clear anchors after resolving.
5
-
- Fix [#484](https://github.com/biojppm/rapidyaml/issues/484) ([PR#506](https://github.com/biojppm/rapidyaml/pull/506)): fix merge key order for last element to be overriden.
6
-
-[PR#503](https://github.com/biojppm/rapidyaml/pull/503): ensure parse error on `a: b: c` and similar cases containing nested maps opening on the same line.
7
-
-[PR#502](https://github.com/biojppm/rapidyaml/pull/502): fix parse errors or missing tags:
8
-
- missing tags in empty documents:
9
-
```yaml
10
-
!yamlscript/v0/bare
11
-
--- !code
12
-
42
13
-
```
14
-
- trailing empty keys or vals:
15
-
```yaml
16
-
a:
17
-
:
18
-
```
19
-
- missing tags in trailing empty keys or vals:
20
-
```yaml
21
-
a: !tag
22
-
!tag : !tag
23
-
```
24
-
- missing tags in complex maps:
25
-
```yaml
26
-
? a: !tag
27
-
!tag : !tag
28
-
:
29
-
!tag : !tag
30
-
```
31
-
- [PR#501](https://github.com/biojppm/rapidyaml/pull/501): fix missing tag in `- !!seq []`.
32
-
- [PR#508](https://github.com/biojppm/rapidyaml/pull/508): fix build with cmake 4.
33
-
- [PR#517](https://github.com/biojppm/rapidyaml/pull/517) (fixes [#516](https://github.com/biojppm/rapidyaml/issues/516)): fix python wheels for windows and macosx.
34
-
- Fix [#120](https://github.com/biojppm/rapidyaml/issues/120) (again): add workaround for #define emit in Qt
0 commit comments