2020-09-08 15:10:01 by Thomas Klausner | Files touched by this commit (68) |
Log message:
*: improve HOMEPAGE
|
2020-09-07 19:25:17 by Thomas Klausner | Files touched by this commit (2) |  |
Log message:
p5-YAML-PP: update to 0.024.
0.024 2020-08-17 12:07:01+02:00
- Parser: fix flow mappings on one line
- Improve utility tools yamlpp-load(-dump) (add new options --merge,
--perl and --module) #35
- Minor improvements to emitter scalar style output
- Emitter supports flow style
- Support for preserving flow style in Loader/Dumper
- Create preserved nodes from scratch with preserved_* methods
- Minor fixes for the Perl schema and globs
- Update testsuite to data-2020-08-01
0.023 2020-07-09 22:09:50+02:00
- Support loading and dumping typeglobs. Issue #15
- Dumper: Don't use aliases for JSON::PP/boolean.pm booleans, because they
alwas use the same reference. Issue #32
- Fix float comparison in test. Issue #33
- Make aliases in custom tags work
- YAML::PP::Highlight: colorize mapping keys
0.022 2020-05-04 17:40:36+02:00
- Emitter: Also quote if string starts with '...'
- Emitter: Fix bug when emitting complex keys
- Preserve also quoting style of hash keys
- Schema: Fix YAML 1.1 integers (no keading zeros)
- Scripts: Rename yamlpp5- to yamlpp- and symlink
- Scripts: Add options to yamlpp-load-dump
- Tests: Support reporting flow style in testsuite event output
- Tests: Restructure schema tests and outsource test data
- Events: Make version_directive compatible to libyaml
- Docs: Restructure
0.021 2020-02-27 19:04:58+01:00
- Add option 'preserve' for preserving hash key order and quoting
style when loading and dumping
0.020 2020-02-17 15:35:44+01:00
- Change default schema from JSON to Core (this change was supposed
|
2020-09-04 11:29:11 by Thomas Klausner | Files touched by this commit (7) |
Log message:
*: remove references to p5-Encode
Encode has been part of perl since ~forever
|
2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631) |
Log message:
*: bump PKGREVISION for perl-5.32.
|
2020-02-14 06:58:27 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 0.019. From the changelog:
- Important (and possibly breaking) changes:
- Change default schema from JSON to Core.
Reason: This is the recommended Schema for YAML 1.2, and what people
would expect to be the default.
- load* in scalar context returns first document.
Reason: I think this is the most reasonable behaviour, and it
will continue to work the same if you later add documents to a file.
- Empty nodes in YAML 1.2 JSON Schema resolve to '' by default like
before, but now it can be configured
- Fix some control character escaping and encoding issues (issue#16, issue#17)
YAML::PP will now just assume all input data are unicode characters
and won't do an explicit utf8::upgrade
- Fix Core schema resolver for inf: add +.inf, +.Inf, +.INF
- Improve emitter regarding empty lists/hashes (no newline before []/{})
- Spelling and grammar fixes (PR#23 @gregoa)
- Fix YAML::PP::Grammar pod (PR#22 @gregoa)
- Fix yamlpp5-load-dump
- Fix error tokens output
- Update yaml-test-suite to data-2020-02-11
|
2020-01-23 17:14:48 by Amitai Schleier | Files touched by this commit (3) |
Log message:
Initial import of p5-YAML-PP, a modern, modular YAML processor. It aims
to support YAML 1.2 and YAML 1.1.
The YAML::PP frontend will currently load all documents, and return only
the last if called with scalar context.
The YAML backend is implemented in a modular way that allows to add
custom handling of YAML tags, perl objects and data types.
|