@prairielearn/migrations 2.0.7 → 2.0.9

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,27 @@
1
1
  # @prairielearn/migrations
2
2
 
3
+ ## 2.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 8dd894623: Upgrade all dependencies
8
+ - Updated dependencies [8dd894623]
9
+ - @prairielearn/named-locks@1.5.6
10
+ - @prairielearn/postgres@1.7.8
11
+ - @prairielearn/logger@1.0.8
12
+ - @prairielearn/error@1.0.9
13
+
14
+ ## 2.0.8
15
+
16
+ ### Patch Changes
17
+
18
+ - bd0053577: Upgrade all dependencies
19
+ - Updated dependencies [bd0053577]
20
+ - @prairielearn/named-locks@1.5.5
21
+ - @prairielearn/postgres@1.7.7
22
+ - @prairielearn/logger@1.0.7
23
+ - @prairielearn/error@1.0.8
24
+
3
25
  ## 2.0.7
4
26
 
5
27
  ### Patch Changes
@@ -40,8 +40,8 @@ export declare const BatchedMigrationRowSchema: z.ZodObject<{
40
40
  }>;
41
41
  export type BatchedMigrationRow = z.infer<typeof BatchedMigrationRowSchema>;
42
42
  export interface BatchedMigrationParameters {
43
- min?: bigint | null;
44
- max: bigint | null;
43
+ min?: bigint | string | null;
44
+ max: bigint | string | null;
45
45
  batchSize?: number;
46
46
  }
47
47
  export interface BatchedMigrationImplementation {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prairielearn/migrations",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "main": "./dist/index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,21 +14,21 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@prairielearn/tsconfig": "^0.0.0",
17
- "@types/fs-extra": "^11.0.1",
18
- "@types/mocha": "^10.0.1",
19
- "@types/node": "^18.17.14",
17
+ "@types/fs-extra": "^11.0.3",
18
+ "@types/mocha": "^10.0.3",
19
+ "@types/node": "^18.18.7",
20
20
  "mocha": "^10.2.0",
21
21
  "ts-node": "^10.9.1",
22
22
  "typescript": "^5.2.2",
23
23
  "typescript-cp": "^0.1.9"
24
24
  },
25
25
  "dependencies": {
26
- "@prairielearn/error": "^1.0.7",
27
- "@prairielearn/logger": "^1.0.6",
28
- "@prairielearn/named-locks": "^1.5.4",
29
- "@prairielearn/postgres": "^1.7.6",
26
+ "@prairielearn/error": "^1.0.9",
27
+ "@prairielearn/logger": "^1.0.8",
28
+ "@prairielearn/named-locks": "^1.5.6",
29
+ "@prairielearn/postgres": "^1.7.8",
30
30
  "fs-extra": "^11.1.1",
31
31
  "serialize-error": "^8.1.0",
32
- "zod": "^3.22.2"
32
+ "zod": "^3.22.4"
33
33
  }
34
34
  }
@@ -35,8 +35,8 @@ export const BatchedMigrationRowSchema = z.object({
35
35
  export type BatchedMigrationRow = z.infer<typeof BatchedMigrationRowSchema>;
36
36
 
37
37
  export interface BatchedMigrationParameters {
38
- min?: bigint | null;
39
- max: bigint | null;
38
+ min?: bigint | string | null;
39
+ max: bigint | string | null;
40
40
  batchSize?: number;
41
41
  }
42
42