@pgpm/defaults 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 +2 -2
- package/deploy/defaults/public.sql +1 -1
- package/package.json +3 -3
- package/pgpm-defaults.control +8 -0
- package/pgpm.plan +2 -2
- package/revert/defaults/public.sql +1 -1
- package/sql/{launchql-defaults--0.9.0.sql → pgpm-defaults--0.14.0.sql} +3 -4
- package/verify/defaults/public.sql +1 -1
- package/launchql-defaults.control +0 -8
package/Makefile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpm/defaults",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Security defaults and baseline configurations",
|
|
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.
|
|
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": "
|
|
37
|
+
"gitHead": "118ac6f810720378fa954e9620abf2516293c148"
|
|
38
38
|
}
|
package/pgpm.plan
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
\echo Use "CREATE EXTENSION
|
|
1
|
+
\echo Use "CREATE EXTENSION pgpm-defaults" to load this file. \quit
|
|
2
2
|
DO $EOFCODE$
|
|
3
3
|
DECLARE
|
|
4
4
|
sql text;
|
|
@@ -14,8 +14,7 @@ ALTER DEFAULT PRIVILEGES
|
|
|
14
14
|
|
|
15
15
|
REVOKE CREATE ON SCHEMA public FROM PUBLIC RESTRICT;
|
|
16
16
|
|
|
17
|
-
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA public
|
|
18
|
-
TO authenticated, anonymous, administrator;
|
|
17
|
+
GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA public TO authenticated, anonymous, administrator;
|
|
19
18
|
|
|
20
19
|
ALTER DEFAULT PRIVILEGES IN SCHEMA public
|
|
21
|
-
GRANT EXECUTE ON FUNCTIONS TO authenticated, anonymous, administrator;
|
|
20
|
+
GRANT EXECUTE ON FUNCTIONS TO authenticated, anonymous, administrator;
|