cdk-drizzle-migrate 2.0.1 → 2.0.3
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/.jsii +3 -3
- package/API.md +22 -0
- package/lib/drizzle-migrate-provider.js +1 -1
- package/lib/handler/handler.js +21804 -16838
- package/package.json +62 -56
package/package.json
CHANGED
|
@@ -6,48 +6,48 @@
|
|
|
6
6
|
"url": "https://github.com/berenddeboer/cdk-drizzle-migrate.git"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "
|
|
10
|
-
"build:handler": "
|
|
11
|
-
"bump": "
|
|
12
|
-
"clobber": "
|
|
13
|
-
"compat": "
|
|
14
|
-
"compile": "
|
|
15
|
-
"copy:handler": "
|
|
16
|
-
"default": "
|
|
17
|
-
"docgen": "
|
|
18
|
-
"eject": "
|
|
19
|
-
"eslint": "
|
|
20
|
-
"format": "
|
|
21
|
-
"integ:deploy:dsql": "
|
|
22
|
-
"integ:deploy:mariadb": "
|
|
23
|
-
"integ:deploy:postgres": "
|
|
24
|
-
"integ:deploy:serverless": "
|
|
25
|
-
"integ:destroy:dsql": "
|
|
26
|
-
"integ:destroy:mariadb": "
|
|
27
|
-
"integ:destroy:postgres": "
|
|
28
|
-
"integ:destroy:serverless": "
|
|
29
|
-
"integ:generate-migrations:dsql": "
|
|
30
|
-
"integ:generate-migrations:mariadb": "
|
|
31
|
-
"integ:generate-migrations:postgres": "
|
|
32
|
-
"integ:generate-migrations:serverless": "
|
|
33
|
-
"integ:synth:all": "
|
|
34
|
-
"integ:synth:dsql": "
|
|
35
|
-
"integ:synth:mariadb": "
|
|
36
|
-
"integ:synth:postgres": "
|
|
37
|
-
"integ:synth:serverless": "
|
|
38
|
-
"package": "
|
|
39
|
-
"package-all": "
|
|
40
|
-
"package:js": "
|
|
41
|
-
"post-compile": "
|
|
42
|
-
"post-upgrade": "
|
|
43
|
-
"pre-compile": "
|
|
44
|
-
"release": "
|
|
45
|
-
"test": "
|
|
46
|
-
"test:watch": "
|
|
47
|
-
"unbump": "
|
|
48
|
-
"upgrade": "
|
|
49
|
-
"watch": "
|
|
50
|
-
"projen": "
|
|
9
|
+
"build": "projen build",
|
|
10
|
+
"build:handler": "projen build:handler",
|
|
11
|
+
"bump": "projen bump",
|
|
12
|
+
"clobber": "projen clobber",
|
|
13
|
+
"compat": "projen compat",
|
|
14
|
+
"compile": "projen compile",
|
|
15
|
+
"copy:handler": "projen copy:handler",
|
|
16
|
+
"default": "projen default",
|
|
17
|
+
"docgen": "projen docgen",
|
|
18
|
+
"eject": "projen eject",
|
|
19
|
+
"eslint": "projen eslint",
|
|
20
|
+
"format": "projen format",
|
|
21
|
+
"integ:deploy:dsql": "projen integ:deploy:dsql",
|
|
22
|
+
"integ:deploy:mariadb": "projen integ:deploy:mariadb",
|
|
23
|
+
"integ:deploy:postgres": "projen integ:deploy:postgres",
|
|
24
|
+
"integ:deploy:serverless": "projen integ:deploy:serverless",
|
|
25
|
+
"integ:destroy:dsql": "projen integ:destroy:dsql",
|
|
26
|
+
"integ:destroy:mariadb": "projen integ:destroy:mariadb",
|
|
27
|
+
"integ:destroy:postgres": "projen integ:destroy:postgres",
|
|
28
|
+
"integ:destroy:serverless": "projen integ:destroy:serverless",
|
|
29
|
+
"integ:generate-migrations:dsql": "projen integ:generate-migrations:dsql",
|
|
30
|
+
"integ:generate-migrations:mariadb": "projen integ:generate-migrations:mariadb",
|
|
31
|
+
"integ:generate-migrations:postgres": "projen integ:generate-migrations:postgres",
|
|
32
|
+
"integ:generate-migrations:serverless": "projen integ:generate-migrations:serverless",
|
|
33
|
+
"integ:synth:all": "projen integ:synth:all",
|
|
34
|
+
"integ:synth:dsql": "projen integ:synth:dsql",
|
|
35
|
+
"integ:synth:mariadb": "projen integ:synth:mariadb",
|
|
36
|
+
"integ:synth:postgres": "projen integ:synth:postgres",
|
|
37
|
+
"integ:synth:serverless": "projen integ:synth:serverless",
|
|
38
|
+
"package": "projen package",
|
|
39
|
+
"package-all": "projen package-all",
|
|
40
|
+
"package:js": "projen package:js",
|
|
41
|
+
"post-compile": "projen post-compile",
|
|
42
|
+
"post-upgrade": "projen post-upgrade",
|
|
43
|
+
"pre-compile": "projen pre-compile",
|
|
44
|
+
"release": "projen release",
|
|
45
|
+
"test": "projen test",
|
|
46
|
+
"test:watch": "projen test:watch",
|
|
47
|
+
"unbump": "projen unbump",
|
|
48
|
+
"upgrade": "projen upgrade",
|
|
49
|
+
"watch": "projen watch",
|
|
50
|
+
"projen": "projen"
|
|
51
51
|
},
|
|
52
52
|
"author": {
|
|
53
53
|
"name": "Berend de Boer",
|
|
@@ -55,36 +55,36 @@
|
|
|
55
55
|
"organization": false
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
59
|
-
"@aws-sdk/dsql-signer": "^3.
|
|
58
|
+
"@aws-sdk/client-secrets-manager": "^3.1059.0",
|
|
59
|
+
"@aws-sdk/dsql-signer": "^3.1059.0",
|
|
60
60
|
"@types/jest": "^29.5.14",
|
|
61
61
|
"@types/node": "^24",
|
|
62
62
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
63
63
|
"@typescript-eslint/parser": "^8",
|
|
64
|
-
"aws-cdk": "^2.
|
|
64
|
+
"aws-cdk": "^2.1125.0",
|
|
65
65
|
"aws-cdk-lib": "2.207.0",
|
|
66
66
|
"commit-and-tag-version": "^12",
|
|
67
67
|
"constructs": "10.4.2",
|
|
68
68
|
"drizzle-kit": "^0.31.10",
|
|
69
|
-
"drizzle-orm": "^0.45.
|
|
69
|
+
"drizzle-orm": "^0.45.2",
|
|
70
70
|
"esbuild": "^0.25.1",
|
|
71
71
|
"eslint": "^8",
|
|
72
72
|
"eslint-config-prettier": "^10.1.8",
|
|
73
73
|
"eslint-import-resolver-typescript": "^3.10.1",
|
|
74
74
|
"eslint-plugin-import": "^2.32.0",
|
|
75
|
-
"eslint-plugin-prettier": "^5.5.
|
|
75
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
76
76
|
"jest": "^29.7.0",
|
|
77
|
-
"jest-junit": "^
|
|
77
|
+
"jest-junit": "^17",
|
|
78
78
|
"jsii": "~5.9.0",
|
|
79
|
-
"jsii-diff": "^1.
|
|
79
|
+
"jsii-diff": "^1.133.0",
|
|
80
80
|
"jsii-docgen": "^10.5.0",
|
|
81
|
-
"jsii-pacmak": "^1.
|
|
81
|
+
"jsii-pacmak": "^1.133.0",
|
|
82
82
|
"jsii-rosetta": "~5.9.0",
|
|
83
|
-
"mysql2": "^3.
|
|
84
|
-
"postgres": "^3.4.
|
|
85
|
-
"prettier": "^3.8.
|
|
86
|
-
"projen": "^0.99.
|
|
87
|
-
"ts-jest": "^29.4.
|
|
83
|
+
"mysql2": "^3.22.4",
|
|
84
|
+
"postgres": "^3.4.9",
|
|
85
|
+
"prettier": "^3.8.3",
|
|
86
|
+
"projen": "^0.99.70",
|
|
87
|
+
"ts-jest": "^29.4.11",
|
|
88
88
|
"ts-node": "^10.9.2",
|
|
89
89
|
"typescript": "^5.9.3"
|
|
90
90
|
},
|
|
@@ -111,12 +111,18 @@
|
|
|
111
111
|
"engines": {
|
|
112
112
|
"node": ">= 24.0.0"
|
|
113
113
|
},
|
|
114
|
+
"devEngines": {
|
|
115
|
+
"packageManager": {
|
|
116
|
+
"name": "npm",
|
|
117
|
+
"onFail": "ignore"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
114
120
|
"main": "lib/index.js",
|
|
115
121
|
"license": "Apache-2.0",
|
|
116
122
|
"publishConfig": {
|
|
117
123
|
"access": "public"
|
|
118
124
|
},
|
|
119
|
-
"version": "2.0.
|
|
125
|
+
"version": "2.0.3",
|
|
120
126
|
"jest": {
|
|
121
127
|
"coverageProvider": "v8",
|
|
122
128
|
"testMatch": [
|