The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl module YAML::PP

0.018_001 2020-02-13 12:14:24+01:00

    - 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)
        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

0.018 2019-07-06 19:40:10+02:00

    - Turn scalar style constants into numbers
    - Deprecate YAML_QUOTED_SCALAR_STYLE

0.017 2019-06-29 14:34:17+02:00

    - Add Include plugin
    - Allow to only bless specific classes for Perl Schema
    - YAML::PP accepts existing schema in constructor
    - subschema can be an object
    - Switch the order of 'equals' and regex tag resolvers

0.016 2019-05-20 12:37:01+02:00

    - Change load methods to return the last document in scalar context for
      compatibility with other YAML loaders
    - Fix Lexer/Emitter (allowing/forbidding special characters in plain scalars)
    - Custom representer must fill $node->{data}
    - Dump: uptf8::upgrade input value (so it can store binary data)

0.015 2019-05-14 21:00:59+02:00

    - Support Mac \r and Win \r\n line endings
    - Add options header and footer
    - Add support for merge keys

0.014 2019-05-07 21:46:56+02:00

    - Change tagtype option in Perl Schema (e.g. tag=!perl+!!perl)
    - Change on_data handler to pass a reference

0.013 2019-04-30 16:02:52+02:00

    - Add option "indent" for dumping
    - Support both !perl/ and !!perl/ tags
    - Change default schema from Core to JSON
    - Add YAML::PP::Schema::Binary for representing binary data

0.012 2019-04-14 14:02:36+02:00

    - Fix bug in emitter (strings starting with % must be quoted)
    - Implement loading of schema classes not prefixed with YAML::PP::Schema
      (PR#8 @pplu)
    - Implement loading of perl objects
    - Fix line number of multiline tokens
    - Refactor parser/lexer. All tokens (except indentation) are now
      parsed by the grammar.
    - Change arguments of resolver callback
    - Add a catchall resolver for scalars

0.011 2019-03-23 12:03:12+01:00

    - Add YAML::PP::Common; use constants for YAML styles
    - Add YAML::PP::Schema::Perl - Dump perl objects, coderefs etc.
    - Add YAML::PP::Schema::Tie::IxHash - keep order of hashes
    - Add YAML::PP::Schema::YAML1_1
    - Add class_isa representer (PR#7 @pplu)
    - Add exceptions in tests for broken inf
    - Refactor schema testing
    - Fix indent bugs in emitter (aliases, empty lists/mappings)
    - Fix bug in emitter for values starting with '? ' or '- '
    - Add missing resolvers to Core and YAML1_1 Schema

0.010 2018-11-02 12:53:41+01:00

    - Fix regex for start of plain scalars
    - Large refactoring of lexer/parser.
    - Adjacent flow mapping values are now supported (JSON compat:
      `{"foo":23}`)
    - Empty flow mapping values are now supported
    - Fix nested flow collections

0.009 2018-09-30 14:10:15+02:00

    - Fix yamlpp5-highlight bug from v0.008
    - load_file(), LoadFile(), dump_file() and DumpFile() can take filehandles

0.008 2018-09-24 21:49:42+02:00

    - Support perl 5.8
    - Fix bug in folded block scalar parsing
    - Support multiple document end markers without content
    - Allow tabs at the beginning of line for flow nodes
    - Optimize reading input with many lines
    - Some internal changes
    - Refactor test suite
    - Add YAML::PP::Highlight::Dump()

0.007 2018-06-20 21:36:26+02:00

    - Support .inf/.nan
    - Always output decimal point when dumping floats
    - YAML directive needs space
    - Improve emitter
    - Output multiline strings as literal block scalars
    - Fix regex for integers in Core Schema
    - Fix dumping of dualvars
    - Fix emitting of empty strings
    - Improve emitter scalar styles
    - Allow zero indented sequences for complex mapping keys/values
    - Fix parsing empty quoted strings


0.006 2018-04-01 22:59:31+02:00

    - Support YAML Failsafe, JSON and Core Schema
    - Add dump_file, DumpFile
    - Add YAML::PP::Writer
    - Add YAML::PP::Representer
    - Detect cyclic references when loading
    - perl boolean false is now the empty string instead of 0
    - Add column numbers to error messages
    - Fixed various bugs in Emitter
    - Can now emit empty collections like [], {}

0.005 2017-11-23 17:09:55+01:00
    - Support reading files
    - Replace load() with load_string(), dump() with dump_string()
    - Support legacy interface functions Load, LoadFile, Dump
    - ... and --- are now correctly invalid in quoted scalars
    - Improve block scalar handling, passing two more tests
    - Improve multiline plain handling, passing another test
    - Partial implementation of flow style collections
    - Allow unicode in alias/anchor names
    - Document header at the end is now recognized
    - Support all valid escapes in double quotes
    - ...and forbid invalid ones
    - Multiline quoted strings must be indented
    - Forbid sequence or mapping as a mapping value on the same line
    - Forbit sequence after an anchor/tag on the same line

0.004 2017-09-15 13:30:50+02:00
    - Improve regex for plain scalars
    - Support literal unicode characters
    - Reject undefined tag shorthand handles
    - Fix JSON test
    - Update yaml-test-suite

0.003_002 2017-09-09 16:27:28+02:00
    - Lots of refactoring
    - Lots of little bugfixes
    - Split Loader into Constructor
    - Add yaml-test-suite to release tarball
    - Add a Lexer
    - Better error messages
    - Add a highlighter for HTML and ANSI colors
    - Dumper can dump aliases/anchors now

0.003_001 2017-08-07 23:29:51+02:00
    - Fix some parsing bugs for quoted strings
    - Add Dumper and Emitter

0.003 2017-05-31 23:35:44+02:00
    - Changes for new Loader API

0.002 2017-04-30 19:07:48+02:00
    - Loader: Support stringification of complex mapping keys
    - Improve regexes for mapping keys, tags, anchors/aliases
    - Improve number support (int, float, oct, hex)
    - Reserved directives generate a warning now
    - Support Carriage Return as line break
    - Support missing final line break
    - Make JSON::PP optional in test
    - Fix bug for perl <= 5.22

0.001 Thu Apr 20 20:46:43 2017 +0200
    - First Release