pg-boss 10.1.3 → 10.1.4

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -40,7 +40,7 @@ pg-boss relies on [SKIP LOCKED](https://www.2ndquadrant.com/en/blog/what-is-sele
40
40
  This will likely cater the most to teams already familiar with the simplicity of relational database semantics and operations (SQL, querying, and backups). It will be especially useful to those already relying on PostgreSQL that want to limit how many systems are required to monitor and support in their architecture.
41
41
 
42
42
 
43
- ## Summary
43
+ ## Summary <!-- {docsify-ignore-all} -->
44
44
  * Exactly-once job delivery
45
45
  * Create jobs within your existing database transaction
46
46
  * Backpressure-compatible polling workers
@@ -67,7 +67,7 @@ yarn add pg-boss
67
67
  ```
68
68
 
69
69
  ## Documentation
70
- * [Docs](docs/readme.md)
70
+ * [Docs](https://timgit.github.io/pg-boss/)
71
71
 
72
72
  ## Contributing
73
73
  To setup a development environment for this library:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-boss",
3
- "version": "10.1.3",
3
+ "version": "10.1.4",
4
4
  "description": "Queueing jobs in Postgres from Node.js like a boss",
5
5
  "main": "./src/index.js",
6
6
  "engines": {
@@ -8,14 +8,14 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "cron-parser": "^4.9.0",
11
- "pg": "^8.12.0",
11
+ "pg": "^8.13.0",
12
12
  "serialize-error": "^8.1.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@types/node": "^20.16.5",
15
+ "@types/node": "^20.16.9",
16
16
  "luxon": "^3.5.0",
17
17
  "mocha": "^10.7.3",
18
- "nyc": "^17.0.0",
18
+ "nyc": "^17.1.0",
19
19
  "standard": "^17.1.2"
20
20
  },
21
21
  "scripts": {