-
-
Notifications
You must be signed in to change notification settings - Fork 959
Comparing changes
Open a pull request
base repository: uuidjs/uuid
base: v8.1.0
head repository: uuidjs/uuid
compare: v8.2.0
- 13 commits
- 26 files changed
- 3 contributors
Commits on May 25, 2020
-
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.Configuration menu - View commit details
-
Copy full SHA for 88ce3ca - Browse repository at this point
Copy the full SHA 88ce3caView commit details -
feat: improve performance of v1 string representation (#453)
Pre-allocate a fixed size array instead of an empty array when no array is passed.
Configuration menu - View commit details
-
Copy full SHA for 0ee0b67 - Browse repository at this point
Copy the full SHA 0ee0b67View commit details -
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).
Configuration menu - View commit details
-
Copy full SHA for eb6038d - Browse repository at this point
Copy the full SHA eb6038dView commit details
Commits on May 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4fc7ce3 - Browse repository at this point
Copy the full SHA 4fc7ce3View commit details
Commits on May 28, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for d5ce415 - Browse repository at this point
Copy the full SHA d5ce415View commit details
Commits on May 31, 2020
-
chore: improve code style (#460)
Co-authored-by: awwit <ignatius.awwit@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7476a66 - Browse repository at this point
Copy the full SHA 7476a66View commit details
Commits on Jun 2, 2020
-
chore: set prettier proseWrap to never (#459)
This basically does the opposite of d5ce415
1Configuration menu - View commit details
-
Copy full SHA for 0f6c436 - Browse repository at this point
Copy the full SHA 0f6c436View commit details
Commits on Jun 22, 2020
-
fix: prepare package exports for webpack 5 (#468)
See discussion in #462 Co-authored-by: Guy Bedford <guybedford@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8d6e6a5 - Browse repository at this point
Copy the full SHA 8d6e6a5View commit details
Commits on Jun 23, 2020
-
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.
Configuration menu - View commit details
-
Copy full SHA for 7ccd632 - Browse repository at this point
Copy the full SHA 7ccd632View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8408ec5 - Browse repository at this point
Copy the full SHA 8408ec5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e5075c8 - Browse repository at this point
Copy the full SHA e5075c8View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for e9f2587 - Browse repository at this point
Copy the full SHA e9f2587View commit details -
Configuration menu - View commit details
-
Copy full SHA for b51f172 - Browse repository at this point
Copy the full SHA b51f172View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v8.1.0...v8.2.0