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: uuidjs/uuid
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.1.0
Choose a base ref
...
head repository: uuidjs/uuid
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.2.0
Choose a head ref
  • 13 commits
  • 26 files changed
  • 3 contributors

Commits on May 25, 2020

  1. feat: remove deprecated v4 string parameter (#454)

    In version 1.x of this library it was possible to call `v4('binary')` in
    order to receive a byte array instead of a string representation. This
    function signature was deprecated in 2.x (but not removed in 3.x as it
    should have been).
    
    The correct way to get a binary representation of a uuid is to pass an
    array-like object as a second parameter:
    
    ```
    const buffer = new Array();
    v4(null, buffer);
    ```
    
    Fixes #437.
    ctavan authored May 25, 2020
    Configuration menu
    Copy the full SHA
    88ce3ca View commit details
    Browse the repository at this point in the history
  2. feat: improve performance of v1 string representation (#453)

    Pre-allocate a fixed size array instead of an empty array when no array is passed.
    awwit authored May 25, 2020
    Configuration menu
    Copy the full SHA
    0ee0b67 View commit details
    Browse the repository at this point in the history
  3. test: revert default parameter

    Revert the default parameter introduced in
    0ee0b67 since this currently increases
    bundlesize in the browser build in does not provide significant benefits
    (bable's transpilation is more verbose than our current approach).
    ctavan committed May 25, 2020
    Configuration menu
    Copy the full SHA
    eb6038d View commit details
    Browse the repository at this point in the history

Commits on May 27, 2020

  1. docs: document cdnjs usage (#457)

    Fixes #452.
    ctavan authored May 27, 2020
    Configuration menu
    Copy the full SHA
    4fc7ce3 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2020

  1. chore: add proseWarp prettier config to warp markdown (#458)

    I no longer want to try to achieve consistent line lengths in markdown
    so I'd prefer prettier to do that for me.
    ctavan authored May 28, 2020
    Configuration menu
    Copy the full SHA
    d5ce415 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2020

  1. chore: improve code style (#460)

    Co-authored-by: awwit <ignatius.awwit@gmail.com>
    ctavan and awwit authored May 31, 2020
    Configuration menu
    Copy the full SHA
    7476a66 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2020

  1. chore: set prettier proseWrap to never (#459)

    This basically does the opposite of d5ce415
    ctavan authored Jun 2, 2020
    1 Configuration menu
    Copy the full SHA
    0f6c436 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2020

  1. fix: prepare package exports for webpack 5 (#468)

    See discussion in #462
    
    Co-authored-by: Guy Bedford <guybedford@gmail.com>
    ctavan and guybedford authored Jun 22, 2020
    Configuration menu
    Copy the full SHA
    8d6e6a5 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. test: remove flaky Edge 18.0 on Windows 10 test (#471)

    Browserstack seems to have trouble accessing the local proxy on recent
    Edge 18.0 / Windows 10 machines. Since Edge 18.0 is deprecated anyways
    and since we still have an Edge 15.0 test as a safety net it should be
    fine to just drop the Edge 18.0 test.
    ctavan authored Jun 23, 2020
    Configuration menu
    Copy the full SHA
    7ccd632 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8408ec5 View commit details
    Browse the repository at this point in the history
  3. chore(release): 8.2.0-beta.0

    ctavan committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    e5075c8 View commit details
    Browse the repository at this point in the history
  4. docs: document jspm usage (#473)

    Thanks to pkg.exports this module is now well-supported by
    https://jspm.org/ without any Node.js crypto api polyfills for the
    browser.
    ctavan authored Jun 23, 2020
    Configuration menu
    Copy the full SHA
    e9f2587 View commit details
    Browse the repository at this point in the history
  5. chore(release): 8.2.0

    ctavan committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    b51f172 View commit details
    Browse the repository at this point in the history
Loading