-
-
Notifications
You must be signed in to change notification settings - Fork 913
Comparing changes
Open a pull request
base repository: uuidjs/uuid
base: ed3240154759b748f6a3b7d545f3b10759ee4ba7
head repository: uuidjs/uuid
compare: 4cf24c018cead5ebe48cb4da232b57a2345d9fb5
Commits on Jan 4, 2021
-
fix: change default export to named function (#545)
Frameworks like Next.js complain about anonymous export default functions, e.g. `Anonymous function declarations cause Fast Refresh to not preserve local component state.` Versions except for v3/5 already use named exports, so update v3/5 to do the same.
Configuration menu - View commit details
-
Copy full SHA for c57bc5a - Browse repository at this point
Copy the full SHA c57bc5aView commit details
Commits on Jan 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7feb2c3 - Browse repository at this point
Copy the full SHA 7feb2c3View commit details
Commits on Feb 27, 2021
-
README verbiage for Googlebot (#560)
* chore: discuss googlebot case in readma, fixes #546 * chore: fix doc regression * chore: reword README * chore: fixup README
Configuration menu - View commit details
-
Copy full SHA for 91805f6 - Browse repository at this point
Copy the full SHA 91805f6View commit details
Commits on Apr 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1c849da - Browse repository at this point
Copy the full SHA 1c849daView commit details
Commits on Sep 7, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ec2af0c - Browse repository at this point
Copy the full SHA ec2af0cView commit details
Commits on Oct 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for c285a4a - Browse repository at this point
Copy the full SHA c285a4aView commit details -
Revert "first pass at maintainer covenant, fix #586"
This reverts commit c285a4a.
Configuration menu - View commit details
-
Copy full SHA for 16e9cc9 - Browse repository at this point
Copy the full SHA 16e9cc9View commit details
Commits on Nov 6, 2021
-
update all dependencies to @latest, drop node@8 CI testing, add node@…
…16 (#585) update!: update packages to latest, drop node 8 support, add node 16
Configuration menu - View commit details
-
Copy full SHA for 343e031 - Browse repository at this point
Copy the full SHA 343e031View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27b9db1 - Browse repository at this point
Copy the full SHA 27b9db1View commit details
Commits on Nov 14, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 761324a - Browse repository at this point
Copy the full SHA 761324aView commit details
Commits on Nov 30, 2021
-
chore(husky): fix husky hooks (#599)
Husky doesn't autoinstall anymore so the hooks have to be installed manually: https://blog.typicode.com/husky-git-hooks-autoinstall
Configuration menu - View commit details
-
Copy full SHA for cf49e8b - Browse repository at this point
Copy the full SHA cf49e8bView commit details
Commits on Dec 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for c9e076c - Browse repository at this point
Copy the full SHA c9e076cView commit details -
chore: use Node.js 16.x for building package and tests (#601)
Also upgrade `@wdio@6` -> `@wdio@7` since `@wdio@6` doesn't work with Node.js 16.
Configuration menu - View commit details
-
Copy full SHA for 477559c - Browse repository at this point
Copy the full SHA 477559cView commit details -
build: drop Node.js 8.x from babel transpile target (#603)
BREAKING CHANGE: Although in practice this is currently a noop since the resulting build does not change, the build will no longer transpiles future changes for Node.js 8.x targets, so semantically this is still a breaking change.
Configuration menu - View commit details
-
Copy full SHA for aa11485 - Browse repository at this point
Copy the full SHA aa11485View commit details -
feat: optimize uuid.v1 by 1.3x uuid.v4 by 4.3x (430%) (#597)
This skips input validation when stringifying UUIDs that we _know_ are valid.
Configuration menu - View commit details
-
Copy full SHA for 3a033f6 - Browse repository at this point
Copy the full SHA 3a033f6View commit details
Commits on Mar 17, 2022
-
chore: run node-esmodule package.json test only in latest node LTS (#621
) While ESM support has been stable in current versions of Node.js 14.x and 16.x, support for importing JSON files is still experimental and evolving. Since we still want to cover the fact that the package is exporting it's package.json file, this test is now extracted to only run with the updated JSON import syntax which requires import assertions and which was introduced in Node.js 16.14.0. Fixes #619 Co-authored-by: Robert Kieffer <robert@broofa.com>
Configuration menu - View commit details
-
Copy full SHA for e6e5412 - Browse repository at this point
Copy the full SHA e6e5412View commit details -
Replace deprecated String.prototype.substr() (#623)
String.prototype.substr() is deprecated (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr) so we replace it with slice() which works similarily but isn't deprecated. Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4f99b5e - Browse repository at this point
Copy the full SHA 4f99b5eView commit details -
fix: handle error when parameter is not set in v3 and v5 (#622)
* fix: unhandle error when parameter is not set in v3 and v5 * test: add unit test for v3 and v5 to test undefined/null `namespace` Authored-by: rzkytmgr <rzkytmgr@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for fcd7388 - Browse repository at this point
Copy the full SHA fcd7388View commit details
Commits on Mar 25, 2022
-
chore: delete empty file (#624)
This file was accidentally committed.
Configuration menu - View commit details
-
Copy full SHA for 7ce4e9a - Browse repository at this point
Copy the full SHA 7ce4e9aView commit details
Commits on May 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d0d6e83 - Browse repository at this point
Copy the full SHA d0d6e83View commit details
Commits on Jul 29, 2022
-
chore: drop node 10.x to upgrade dev dependencies (#643)
This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022.
Configuration menu - View commit details
-
Copy full SHA for 2b96e3b - Browse repository at this point
Copy the full SHA 2b96e3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 04686f5 - Browse repository at this point
Copy the full SHA 04686f5View commit details
Commits on Aug 3, 2022
-
fix: add Jest/jsdom compatibility (#642)
Jest runs browser tests in a jsdom environment which now also supports web crypto polyfills. Since ESM support in Jest is currently still limited, it requires a commonJS build for browser environments, see the discussion in #616 for all the details. Co-authored-by: Christoph Tavan <dev@tavan.de> Co-authored-by: Simen Bekkhus <sbekkhus91@gmail.com>
5Configuration menu - View commit details
-
Copy full SHA for 16f9c46 - Browse repository at this point
Copy the full SHA 16f9c46View commit details -
build: drop support for legacy browsers (IE11, Safari 10) (#604)
BREAKING CHANGE: Drop support for browsers that don't correctly implement const/let and default arguments, and no longer transpile the browser build to ES2015. This also removes the fallback on msCrypto instead of the crypto API. Browser tests are run in the first supported version of each supported browser and in the latest (as of this commit) version available on Browserstack.
Configuration menu - View commit details
-
Copy full SHA for 0f433e5 - Browse repository at this point
Copy the full SHA 0f433e5View commit details
Commits on Aug 4, 2022
-
BREAKING CHANGE: Remove the minified UMD build from the package. Minified code is hard to audit and since this is a widely used library it seems more appropriate nowadays to optimize for auditability than to ship a legacy module format that, at best, serves educational purposes nowadays. For production browser use cases, users should be using a bundler. For educational purposes, today's online sandboxes like replit.com offer convenient ways to load npm modules, so the use case for UMD through repos like UNPKG or jsDelivr has largely vanished. Fixes #620
Configuration menu - View commit details
-
Copy full SHA for e948a0f - Browse repository at this point
Copy the full SHA e948a0fView commit details
Commits on Aug 5, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f2826b6 - Browse repository at this point
Copy the full SHA f2826b6View commit details
Commits on Aug 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 1110ae6 - Browse repository at this point
Copy the full SHA 1110ae6View commit details
Commits on Sep 3, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2a612dc - Browse repository at this point
Copy the full SHA 2a612dcView commit details
Commits on Sep 5, 2022
-
chore: drop node 10.x to upgrade dev dependencies (#653)
BREAKING CHANGE: This library always aims at supporting one EOLed LTS release which by this time now is 12.x which has reached EOL 30 Apr 2022. The actual change was already introduced in #643 but the commit was missing the breaking change label.
Configuration menu - View commit details
-
Copy full SHA for 28a5712 - Browse repository at this point
Copy the full SHA 28a5712View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cf24c0 - Browse repository at this point
Copy the full SHA 4cf24c0View commit details
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.