Skip to content

Commit

Permalink
Upgrade uuid dependency (#2846)
Browse files Browse the repository at this point in the history
  • Loading branch information
timleslie authored Apr 28, 2020
1 parent 3d40bd7 commit c68aed4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/yellow-squids-decide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@keystonejs/demo-project-meetup': patch
---

Upgraded `uuid` from `3.x` to `7.x`.
2 changes: 1 addition & 1 deletion demo-projects/meetup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"react-dom": "^16.13.1",
"react-toast-notifications": "^2.3.0",
"react-use-form-state": "^0.12.0",
"uuid": "^3.3.2"
"uuid": "^7.0.3"
},
"repository": "https://github.com/keystonejs/keystone/tree/master/demo-projects/meetup"
}
2 changes: 1 addition & 1 deletion demo-projects/meetup/schema.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require('dotenv').config();
const uuid = require('uuid/v4');
const { v4: uuid } = require('uuid');
const { sendEmail } = require('./emails');

const {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"underscore.string": "^3.3.5",
"unist-util-visit": "^1.4.0",
"unsplash-js": "^6.0.0",
"uuid": "^3.3.2",
"uuid": "^7.0.3",
"webpack": "4.41.6"
},
"prettier": {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24480,10 +24480,10 @@ uuid@^3.0.0, uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2, uuid@^3.3.3:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==

uuid@^7.0.2:
version "7.0.2"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.2.tgz#7ff5c203467e91f5e0d85cfcbaaf7d2ebbca9be6"
integrity sha512-vy9V/+pKG+5ZTYKf+VcphF5Oc6EFiu3W8Nv3P3zIh0EqVI80ZxOzuPfe9EHjkFNvf8+xuTHVeei4Drydlx4zjw==
uuid@^7.0.2, uuid@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==

v8-compile-cache@^1.1.0:
version "1.1.2"
Expand Down

0 comments on commit c68aed4

Please sign in to comment.