Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: yaml/pyyaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.1
Choose a base ref
...
head repository: yaml/pyyaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.2
Choose a head ref
  • 12 commits
  • 11 files changed
  • 3 contributors

Commits on Jun 6, 2019

  1. changes for 5.1.1 release

    nitzmahone committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    5986257 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2019

  1. changes for 5.1.2 release

    nitzmahone committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    0f64cbf View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2019

  1. Fix logic for quoting special characters (#276)

    * Fix logic for quoting special characters
    
    * Remove has_ucs4 from condition
    
    on systems with `sys.maxunicode <= 0xffff` the comparison
    (u'\U00010000' <= ch < u'\U0010ffff') can't be true anyway I think
    perlpunk committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    31f2279 View commit details
    Browse the repository at this point in the history
  2. Update CHANGES for 5.1 (#280)

    * Update CHANGES
    
    Some PRs were forgotten, and some were listed that weren't merged.
    perlpunk committed Nov 18, 2019
    Configuration menu
    Copy the full SHA
    8a7d0ed View commit details
    Browse the repository at this point in the history
  3. Change default loader for yaml.add_constructor (#287)

    * Change default loader for yaml.add_constructor
    
    If the Loader parameter is not given, add constructor to
    all three loaders
    perlpunk committed Nov 18, 2019
    1 Configuration menu
    Copy the full SHA
    8d7a780 View commit details
    Browse the repository at this point in the history
  4. Add custom constructors to multiple loaders

    When someone writes a subclass of the YAMLObject class, the constructors
    will now be added to all 3 (non-safe) loaders.
    
    Furthermore, we support the class variable `yaml_loader` being a list,
    offering more control of which loaders are affected.
    
    To support safe_load in your custom class you could add this:
    
        yaml_loader = yaml.SafeLoader
    
        yaml_loader = yaml.YAMLObject.yaml_loader
        yaml_loader.append(yaml.SafeLoader)
    ingydotnet authored and perlpunk committed Nov 18, 2019
    1 Configuration menu
    Copy the full SHA
    a5394c0 View commit details
    Browse the repository at this point in the history
  5. Change default loader for add_implicit_resolver, add_path_resolver

    If the Loader parameter is not given, add constructor to
    all three loaders
    perlpunk committed Nov 18, 2019
    1 Configuration menu
    Copy the full SHA
    4a31b16 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2019

  1. 1 Configuration menu
    Copy the full SHA
    8c5e47f View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2019

  1. bump version to 5.2b1

    nitzmahone authored and perlpunk committed Nov 25, 2019
    1 Configuration menu
    Copy the full SHA
    3f3c373 View commit details
    Browse the repository at this point in the history
  2. Changes for 5.2b1

    perlpunk committed Nov 25, 2019
    1 Configuration menu
    Copy the full SHA
    f813bc0 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2019

  1. Windows build tweaks

    * centralized error handling on native commands
    * ensure that errors from native commands will fail build
    * use image-included Python 3.8
    * drop Python 3.4 wheel builds
    nitzmahone authored and perlpunk committed Nov 27, 2019
    1 Configuration menu
    Copy the full SHA
    f4fd3fb View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2019

  1. Version 5.2

    perlpunk committed Dec 2, 2019
    1 Configuration menu
    Copy the full SHA
    a5c2a04 View commit details
    Browse the repository at this point in the history
Loading