@pgpm/encrypted-secrets-table 0.18.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.
@@ -5,7 +5,7 @@
5
5
  BEGIN;
6
6
 
7
7
  CREATE TABLE secrets_schema.secrets_table (
8
- id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
8
+ id uuid PRIMARY KEY DEFAULT uuidv7(),
9
9
  secrets_owned_field uuid NOT NULL,
10
10
  name text NOT NULL,
11
11
  secrets_value_field bytea NULL,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/encrypted-secrets-table",
3
- "version": "0.18.0",
3
+ "version": "0.19.1",
4
4
  "description": "Table-based encrypted secrets storage and retrieval",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -21,7 +21,7 @@
21
21
  "test:watch": "jest --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@pgpm/verify": "0.18.0"
24
+ "@pgpm/verify": "0.19.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "pgpm": "^4.2.3"
@@ -34,5 +34,5 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
36
36
  },
37
- "gitHead": "8144027c7fab4956bcdebd736d04c0d4f57344bc"
37
+ "gitHead": "874490c55094ce0232bf230c613ee58685f369dc"
38
38
  }
@@ -1,8 +1,8 @@
1
1
  # pgpm-encrypted-secrets-table extension
2
2
  comment = 'pgpm-encrypted-secrets-table extension'
3
- default_version = '0.15.3'
3
+ default_version = '0.15.5'
4
4
  module_pathname = '$libdir/pgpm-encrypted-secrets-table'
5
- requires = 'pgcrypto,plpgsql,uuid-ossp,pgpm-verify'
5
+ requires = 'pgcrypto,plpgsql,pgpm-verify'
6
6
  relocatable = false
7
7
  superuser = false
8
8