@pgpm/encrypted-secrets-table 0.14.0 → 0.15.0

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.
package/Makefile CHANGED
@@ -1,5 +1,5 @@
1
- EXTENSION = launchql-encrypted-secrets-table
2
- DATA = sql/launchql-encrypted-secrets-table--0.9.0.sql
1
+ EXTENSION = pgpm-encrypted-secrets-table
2
+ DATA = sql/pgpm-encrypted-secrets-table--0.14.0.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/encrypted-secrets-table",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
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.14.0"
24
+ "@pgpm/verify": "0.15.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "pgpm": "^1.0.0"
@@ -34,5 +34,5 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
36
36
  },
37
- "gitHead": "7369638ab084da95b0cb00ec63ad236637f6ebe5"
37
+ "gitHead": "118ac6f810720378fa954e9620abf2516293c148"
38
38
  }
@@ -0,0 +1,8 @@
1
+ # pgpm-encrypted-secrets-table extension
2
+ comment = 'pgpm-encrypted-secrets-table extension'
3
+ default_version = '0.14.0'
4
+ module_pathname = '$libdir/pgpm-encrypted-secrets-table'
5
+ requires = 'pgcrypto,plpgsql,uuid-ossp,pgpm-verify'
6
+ relocatable = false
7
+ superuser = false
8
+
package/pgpm.plan CHANGED
@@ -1,6 +1,6 @@
1
1
  %syntax-version=1.0.0
2
- %project=launchql-encrypted-secrets-table
3
- %uri=launchql-encrypted-secrets-table
2
+ %project=pgpm-encrypted-secrets-table
3
+ %uri=pgpm-encrypted-secrets-table
4
4
 
5
5
  schemas/secrets_schema/schema 2020-11-01T21:41:26Z Dan Lynch <dlynch@Dans-MBP-3> # add schemas/secrets_schema/schema
6
6
  schemas/secrets_schema/tables/secrets_table/table [schemas/secrets_schema/schema] 2020-11-01T21:41:51Z Dan Lynch <dlynch@Dans-MBP-3> # add schemas/secrets_schema/tables/secrets_table/table
@@ -1,4 +1,4 @@
1
- \echo Use "CREATE EXTENSION launchql-encrypted-secrets-table" to load this file. \quit
1
+ \echo Use "CREATE EXTENSION pgpm-encrypted-secrets-table" to load this file. \quit
2
2
  CREATE SCHEMA secrets_schema;
3
3
 
4
4
  CREATE TABLE secrets_schema.secrets_table (
@@ -1,8 +0,0 @@
1
- # launchql-encrypted-secrets-table extension
2
- comment = 'launchql-encrypted-secrets-table extension'
3
- default_version = '0.9.0'
4
- module_pathname = '$libdir/launchql-encrypted-secrets-table'
5
- requires = 'pgcrypto,plpgsql,uuid-ossp,launchql-verify'
6
- relocatable = false
7
- superuser = false
8
-