@prairielearn/migrations 3.0.19 → 3.0.20
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/CHANGELOG.md
CHANGED
|
@@ -38,14 +38,6 @@ FROM
|
|
|
38
38
|
WHERE
|
|
39
39
|
project = $project;
|
|
40
40
|
|
|
41
|
-
-- BLOCK update_migration
|
|
42
|
-
UPDATE migrations
|
|
43
|
-
SET
|
|
44
|
-
filename = $filename,
|
|
45
|
-
timestamp = $timestamp
|
|
46
|
-
WHERE
|
|
47
|
-
id = $id;
|
|
48
|
-
|
|
49
41
|
-- BLOCK insert_migration
|
|
50
42
|
INSERT INTO
|
|
51
43
|
migrations (filename, timestamp, project, applied_at)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prairielearn/migrations",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.20",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@prairielearn/error": "^2.0.16",
|
|
18
18
|
"@prairielearn/logger": "^2.0.17",
|
|
19
|
-
"@prairielearn/named-locks": "^3.0.
|
|
20
|
-
"@prairielearn/postgres": "^
|
|
19
|
+
"@prairielearn/named-locks": "^3.0.20",
|
|
20
|
+
"@prairielearn/postgres": "^3.0.0",
|
|
21
21
|
"fs-extra": "^11.3.0",
|
|
22
22
|
"serialize-error": "^12.0.0",
|
|
23
|
-
"zod": "^3.25.
|
|
23
|
+
"zod": "^3.25.69"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@prairielearn/tsconfig": "^0.0.0",
|
|
@@ -38,14 +38,6 @@ FROM
|
|
|
38
38
|
WHERE
|
|
39
39
|
project = $project;
|
|
40
40
|
|
|
41
|
-
-- BLOCK update_migration
|
|
42
|
-
UPDATE migrations
|
|
43
|
-
SET
|
|
44
|
-
filename = $filename,
|
|
45
|
-
timestamp = $timestamp
|
|
46
|
-
WHERE
|
|
47
|
-
id = $id;
|
|
48
|
-
|
|
49
41
|
-- BLOCK insert_migration
|
|
50
42
|
INSERT INTO
|
|
51
43
|
migrations (filename, timestamp, project, applied_at)
|