@pgpm/faker 0.19.0 → 0.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -420,7 +420,7 @@ LANGUAGE 'sql';
420
420
 
421
421
  CREATE FUNCTION faker.uuid() returns uuid as $$
422
422
  SELECT
423
- uuid_generate_v4();
423
+ uuidv7();
424
424
  $$
425
425
  LANGUAGE 'sql';
426
426
 
@@ -5,7 +5,7 @@
5
5
  BEGIN;
6
6
 
7
7
  CREATE TABLE faker.cities (
8
- id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
8
+ id uuid PRIMARY KEY DEFAULT uuidv7(),
9
9
  city text,
10
10
  state text,
11
11
  zips int[],
@@ -5,7 +5,7 @@
5
5
  BEGIN;
6
6
 
7
7
  CREATE TABLE faker.dictionary (
8
- id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
8
+ id uuid PRIMARY KEY DEFAULT uuidv7(),
9
9
  type text,
10
10
  word text
11
11
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/faker",
3
- "version": "0.19.0",
3
+ "version": "0.19.1",
4
4
  "description": "Fake data generation utilities for testing and development",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -21,8 +21,8 @@
21
21
  "test:watch": "jest --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@pgpm/types": "0.19.0",
25
- "@pgpm/verify": "0.19.0"
24
+ "@pgpm/types": "0.19.1",
25
+ "@pgpm/verify": "0.19.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "pgpm": "^4.2.3"
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
37
37
  },
38
- "gitHead": "83be2dd4b07831c8c4f903437d20d350a673d19b"
38
+ "gitHead": "874490c55094ce0232bf230c613ee58685f369dc"
39
39
  }
@@ -1,8 +1,8 @@
1
1
  # pgpm-faker extension
2
2
  comment = 'pgpm-faker extension'
3
- default_version = '0.15.3'
3
+ default_version = '0.15.5'
4
4
  module_pathname = '$libdir/pgpm-faker'
5
- requires = 'citext,pgcrypto,plpgsql,uuid-ossp,pgpm-types,pgpm-verify'
5
+ requires = 'citext,pgcrypto,plpgsql,pgpm-types,pgpm-verify'
6
6
  relocatable = false
7
7
  superuser = false
8
8