Skip to content

Commit

Permalink
chore: bump up uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
jamil314 committed Nov 15, 2024
1 parent e4c8ec9 commit 3ada53d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"pino": "^7.0.0",
"short-uid": "^0.1.0",
"tsconfig-paths": "^3.13.0",
"uuid": "^3.3.2"
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/fhir": "^0.0.30",
Expand Down
2 changes: 1 addition & 1 deletion packages/search/src/features/reindex/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
import * as Hapi from '@hapi/hapi'
import { logger } from '@opencrvs/commons'
import uuid = require('uuid')
import { v4 as uuid } from 'uuid'

import { prune } from './prune'
import { backupLegacyIndex, reindex, updateAliases } from './reindex'
Expand Down
2 changes: 1 addition & 1 deletion packages/webhooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"redis": "^3.0.2",
"short-uid": "^0.1.0",
"tsconfig-paths": "^3.13.0",
"uuid": "^3.3.2"
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/fhir": "^0.0.30",
Expand Down
2 changes: 1 addition & 1 deletion packages/webhooks/src/features/manage/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
import { internal } from '@hapi/boom'
import Webhook, { TRIGGERS } from '@webhooks/model/webhook'
import { logger } from '@opencrvs/commons'
import uuid = require('uuid/v4')
import { v4 as uuid } from 'uuid'
import fetch from 'node-fetch'
import { resolve } from 'url'

Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24317,7 +24317,7 @@ uuid@^3.1.0, uuid@^3.2.1, uuid@^3.3.2:
resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==

"uuid@^7.0.0 || ^8.0.0", uuid@^8.3.2:
"uuid@^7.0.0 || ^8.0.0", uuid@^8.0.0, uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
Expand Down

0 comments on commit 3ada53d

Please sign in to comment.