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: nodeca/js-yaml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.4.1
Choose a base ref
...
head repository: nodeca/js-yaml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.4.2
Choose a head ref
  • 4 commits
  • 8 files changed
  • 3 contributors

Commits on Sep 8, 2015

  1. fixed broken serialization of duplicated entries in sequences

    For example, with the following code
    
    ```
    var obj = { test: 'canary' };
    var array = [ 0, 1 ];
    var arrayWithRefs = [ obj, obj, array, array ];
    ```
    
    `arrayWithRefs` was serialized as
    
    ```
    - &ref_0test: canary
    - *ref0
    - &ref_1- 0
      - 1
    - *ref1
    ```
    
    which is incorrect.
    vogelsgesang committed Sep 8, 2015
    Configuration menu
    Copy the full SHA
    f25843d View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2015

  1. Merge pull request #205 from vogelsgesang/fix_duplicate_serialization

    fixed broken serialization of duplicated entries in sequences
    dervus committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    3cf7be8 View commit details
    Browse the repository at this point in the history
  2. Browser files rebuild

    Vitaly Puzrin committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    37072a0 View commit details
    Browse the repository at this point in the history
  3. 3.4.2 released

    Vitaly Puzrin committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    cab39bb View commit details
    Browse the repository at this point in the history
Loading