keuss 2.0.5 → 2.0.7

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 (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +4 -4
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,2 +1,2 @@
1
1
  # Changelog
2
- Changelog is now part of the official Keuss documentation, find it [here](https://pepmartinez.github.io/keuss/docs/changelog)
2
+ Changelog is now part of the official Keuss documentation, find it [here](https://pepmartinez.codeberg.page/keuss//docs/changelog)
package/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  Enterprise-grade Job Queues for node.js backed by redis, MongoDB or PostgreSQL
4
4
 
5
- * [Quickstart](https://pepmartinez.github.io/keuss/docs/quickstart)
6
- * [Documentation](https://pepmartinez.github.io/keuss/docs/)
7
- * [Examples](https://pepmartinez.github.io/keuss/docs/examples)
8
- * [Changelog](https://pepmartinez.github.io/keuss/docs/changelog)
5
+ * [Quickstart](https://pepmartinez.codeberg.page/keuss/docs/quickstart)
6
+ * [Documentation](https://pepmartinez.codeberg.page/keuss/docs/)
7
+ * [Examples](https://pepmartinez.codeberg.page/keuss/docs/examples)
8
+ * [Changelog](https://pepmartinez.codeberg.page/keuss/docs/changelog)
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keuss",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "keywords": [
5
5
  "queue",
6
6
  "persistent",
@@ -13,14 +13,14 @@
13
13
  "pipeline",
14
14
  "bucket"
15
15
  ],
16
- "homepage": "https://pepmartinez.github.io/keuss/",
16
+ "homepage": "https://pepmartinez.codeberg.page/keuss/",
17
17
  "bugs": {
18
- "url": "https://github.com/pepmartinez/keuss/issues",
18
+ "url": "https://codeberg.org/pepmartinez/keuss/issues",
19
19
  "email": "pep.martinez@gmail.com"
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "https://github.com/pepmartinez/keuss.git"
23
+ "url": "https://codeberg.org/pepmartinez/keuss.git"
24
24
  },
25
25
  "author": {
26
26
  "name": "Jose Luis Martinez Juan",
@@ -29,9 +29,9 @@
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
31
  "@nodebb/mubsub": "~1.8.0",
32
- "async": "~3.2.5",
32
+ "async": "~3.2.6",
33
33
  "async-lock": "~1.4.1",
34
- "debug": "~4.3.5",
34
+ "debug": "~4.3.6",
35
35
  "ioredis": "~5.4.1",
36
36
  "lodash": "~4.17.21",
37
37
  "mitt": "~3.0.1",
@@ -40,11 +40,11 @@
40
40
  "pg": "~8.12.0"
41
41
  },
42
42
  "devDependencies": {
43
- "chance": "~1.1.11",
44
- "mocha": "~10.4.0",
43
+ "chance": "~1.1.12",
44
+ "mocha": "~10.7.3",
45
45
  "should": "~13.2.3",
46
- "nyc": "~15.1.0",
47
- "why-is-node-running": "^2.2.2"
46
+ "nyc": "~17.0.0",
47
+ "why-is-node-running": "~3.2.0"
48
48
  },
49
49
  "scripts": {
50
50
  "test": "docker compose up -d; sleep 5; mocha --reporter spec --check-leaks --no-timeouts --exit test/ ; docker compose down",