@prairielearn/named-locks 1.5.10 → 1.5.11
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 +8 -0
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
- package/tsconfig.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ interface LockOptions {
|
|
|
21
21
|
* Whether or not this lock should automatically renew itself periodically.
|
|
22
22
|
* By default, locks will not renew themselves.
|
|
23
23
|
*
|
|
24
|
-
* This is mostly useful for locks that may be
|
|
24
|
+
* This is mostly useful for locks that may be held for longer than the idle
|
|
25
25
|
* session timeout that's configured for the Postgres database. The lock is
|
|
26
26
|
* "renewed" by making a no-op query.
|
|
27
27
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prairielearn/named-locks",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.11",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@prairielearn/tsconfig": "^0.0.0",
|
|
16
|
-
"@types/node": "^
|
|
16
|
+
"@types/node": "^20.11.11",
|
|
17
17
|
"typescript": "^5.3.3"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@prairielearn/postgres": "^1.9.
|
|
20
|
+
"@prairielearn/postgres": "^1.9.1",
|
|
21
21
|
"pg": "^8.11.3"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/src/index.ts
CHANGED
|
@@ -24,7 +24,7 @@ interface LockOptions {
|
|
|
24
24
|
* Whether or not this lock should automatically renew itself periodically.
|
|
25
25
|
* By default, locks will not renew themselves.
|
|
26
26
|
*
|
|
27
|
-
* This is mostly useful for locks that may be
|
|
27
|
+
* This is mostly useful for locks that may be held for longer than the idle
|
|
28
28
|
* session timeout that's configured for the Postgres database. The lock is
|
|
29
29
|
* "renewed" by making a no-op query.
|
|
30
30
|
*/
|
package/tsconfig.json
CHANGED