@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
@@ -1,5 +1,13 @@
1
1
  # @prairielearn/migrations
2
2
 
3
+ ## 3.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b911b61]
8
+ - @prairielearn/postgres@3.0.0
9
+ - @prairielearn/named-locks@3.0.20
10
+
3
11
  ## 3.0.19
4
12
 
5
13
  ### Patch Changes
@@ -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.19",
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.19",
20
- "@prairielearn/postgres": "^2.1.15",
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.67"
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)