@sapphire/plugin-scheduled-tasks 5.0.1-next.c36cdd4.0 → 5.0.2-next.a2bbd33.0
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 +13 -0
- package/README.md +4 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@sapphire/plugin-scheduled-tasks@5.0.1](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-scheduled-tasks@5.0.0...@sapphire/plugin-scheduled-tasks@5.0.1) - (2022-10-02)
|
|
6
|
+
|
|
7
|
+
## 🐛 Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **scheduled-tasks:** Bump dependencies ([3b7fd06](https://github.com/sapphiredev/plugins/commit/3b7fd06dbf14e19a2a767395a5bfdacf6068769d))
|
|
10
|
+
|
|
11
|
+
## 📝 Documentation
|
|
12
|
+
|
|
13
|
+
- Add @r-priyam as a contributor ([2d97019](https://github.com/sapphiredev/plugins/commit/2d970198717285c0f1652340ce87b1a4780179f3))
|
|
14
|
+
- Add @BenSegal855 as a contributor ([66553df](https://github.com/sapphiredev/plugins/commit/66553dfbb4bc7332c295277ffa4a8f720401bc89))
|
|
15
|
+
- Add @yuansheng1549 as a contributor ([c36ac65](https://github.com/sapphiredev/plugins/commit/c36ac65cd0a1a3e266a8a3679a58404177e0bb6b))
|
|
16
|
+
- Add @RealShadowNova as a contributor ([6cfa76f](https://github.com/sapphiredev/plugins/commit/6cfa76f793a16c6d11aa057e66e3fb41a9f4fb6d))
|
|
17
|
+
|
|
5
18
|
# [@sapphire/plugin-scheduled-tasks@5.0.0](https://github.com/sapphiredev/plugins/compare/@sapphire/plugin-scheduled-tasks@4.0.1...@sapphire/plugin-scheduled-tasks@5.0.0) - (2022-09-25)
|
|
6
19
|
|
|
7
20
|
## 🚀 Features
|
package/README.md
CHANGED
|
@@ -283,6 +283,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
283
283
|
</tr>
|
|
284
284
|
<tr>
|
|
285
285
|
<td align="center"><a href="https://github.com/ricardooow"><img src="https://avatars.githubusercontent.com/u/28981399?v=4?s=100" width="100px;" alt=""/><br /><sub><b>ricardooow</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=ricardooow" title="Code">💻</a></td>
|
|
286
|
+
<td align="center"><a href="https://shadownova.dev/"><img src="https://avatars.githubusercontent.com/u/46537907?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hezekiah Hendry</b></sub></a><br /><a href="#tool-RealShadowNova" title="Tools">🔧</a></td>
|
|
287
|
+
<td align="center"><a href="https://github.com/yuansheng1549"><img src="https://avatars.githubusercontent.com/u/75909450?v=4?s=100" width="100px;" alt=""/><br /><sub><b>yuansheng1549</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=yuansheng1549" title="Code">💻</a></td>
|
|
288
|
+
<td align="center"><a href="https://github.com/BenSegal855"><img src="https://avatars.githubusercontent.com/u/34194692?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ben</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=BenSegal855" title="Code">💻</a></td>
|
|
289
|
+
<td align="center"><a href="https://github.com/r-priyam"><img src="https://avatars.githubusercontent.com/u/50884372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Priyam</b></sub></a><br /><a href="https://github.com/sapphiredev/plugins/commits?author=r-priyam" title="Code">💻</a></td>
|
|
286
290
|
</tr>
|
|
287
291
|
</table>
|
|
288
292
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/plugin-scheduled-tasks",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2-next.a2bbd33.0",
|
|
4
4
|
"description": "Plugin for @sapphire/framework to have scheduled tasks",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -64,19 +64,19 @@
|
|
|
64
64
|
"check-update": "cliff-jumper --dry-run"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@sapphire/stopwatch": "^1.
|
|
68
|
-
"@sapphire/utilities": "^3.
|
|
67
|
+
"@sapphire/stopwatch": "^1.5.0",
|
|
68
|
+
"@sapphire/utilities": "^3.10.0",
|
|
69
69
|
"tslib": "^2.4.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@favware/cliff-jumper": "^1.8.
|
|
73
|
-
"bullmq": "^2.1.
|
|
72
|
+
"@favware/cliff-jumper": "^1.8.8",
|
|
73
|
+
"bullmq": "^2.1.3",
|
|
74
74
|
"gen-esm-wrapper": "^1.1.3",
|
|
75
75
|
"sqs-consumer": "^5.7.0",
|
|
76
76
|
"sqs-producer": "^2.1.0",
|
|
77
77
|
"typedoc": "^0.23.15",
|
|
78
|
-
"typedoc-json-parser": "^5.0.
|
|
79
|
-
"typescript": "^4.8.
|
|
78
|
+
"typedoc-json-parser": "^5.0.1",
|
|
79
|
+
"typescript": "^4.8.4"
|
|
80
80
|
},
|
|
81
81
|
"repository": {
|
|
82
82
|
"type": "git",
|