agenda-ts 1.6.9-beta.2 → 1.7.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/README.md +7 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
<img src="https://img.shields.io/github/languages/top/meabed/agenda-ts?style=default&color=24E0A4" alt="repo-top-language">
|
|
14
14
|
<img src="https://img.shields.io/github/languages/count/meabed/agenda-ts?style=default&color=24E0A4" alt="repo-language-count">
|
|
15
15
|
<p>
|
|
16
|
+
|
|
16
17
|
<p align="center">
|
|
17
18
|
<!-- default option, no dependency badges. -->
|
|
18
19
|
</p>
|
|
@@ -46,9 +47,9 @@ Agenda-TS is a modern TypeScript fork of the [Agenda](https://github.com/agenda/
|
|
|
46
47
|
|
|
47
48
|
<br/>
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
> This package is forked version from [pulse](https://github.com/pulsecron/pulse/)
|
|
51
|
+
>
|
|
52
|
+
> It has been updated, fixed few bugs, actively adding features and updated dependencies and codebase to the latest packages
|
|
52
53
|
|
|
53
54
|
---
|
|
54
55
|
|
|
@@ -56,9 +57,9 @@ Agenda-TS is a modern TypeScript fork of the [Agenda](https://github.com/agenda/
|
|
|
56
57
|
<br/>
|
|
57
58
|
|
|
58
59
|
|
|
59
|
-
## Unique Features in Agenda
|
|
60
|
+
## Unique Features in Agenda
|
|
60
61
|
|
|
61
|
-
- **Latest MongoDB Driver Support**: Agenda
|
|
62
|
+
- **Latest MongoDB Driver Support**: Agenda is fully compatible with the latest MongoDB driver, ensuring users can take advantage of the most current database features and enhancements.
|
|
62
63
|
- **Resume Incomplete Tasks After System Restart**: When the system restarts, Agenda-TS resumes incomplete tasks that were in progress or queued for execution, providing seamless continuation without manual intervention.
|
|
63
64
|
- **Retry Failed Tasks**: Agenda-TS offers retry mechanisms using exponential and fixed backoff strategies with configurable attempts, ensuring efficient retries of failed tasks without overwhelming the system.
|
|
64
65
|
- **Continuous Maintenance**: As an open-source project actively maintained, Agenda-TS is consistently improved, providing users with reliable updates and support.
|
|
@@ -71,7 +72,7 @@ Agenda-TS is a modern TypeScript fork of the [Agenda](https://github.com/agenda/
|
|
|
71
72
|
## Repository Structure
|
|
72
73
|
|
|
73
74
|
```sh
|
|
74
|
-
└── agenda
|
|
75
|
+
└── agenda/
|
|
75
76
|
├── LICENSE
|
|
76
77
|
├── README.md
|
|
77
78
|
├── es.js
|
|
@@ -343,11 +344,3 @@ Contributions are welcome! Here are several ways you can contribute:
|
|
|
343
344
|
## License
|
|
344
345
|
|
|
345
346
|
This project is protected under the [MIT](https://github.com/meabed/agenda-ts?tab=MIT-1-ov-file#readme) License. For more details, refer to the [LICENSE](https://github.com/meabed/agenda-ts?tab=MIT-1-ov-file#readme) file.
|
|
346
|
-
|
|
347
|
-
---
|
|
348
|
-
<br/>
|
|
349
|
-
<br/>
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
## Acknowledgments
|
|
353
|
-
- Agenda-TS is maintained by [Mohamed Meabed](https://github.com/meabed) and was forked from the [Agenda](https://github.com/agenda/agenda) project.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agenda-ts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "The modern MongoDB-powered job scheduler library for Node.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"job",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"queue",
|
|
14
14
|
"delayed",
|
|
15
15
|
"scheduler",
|
|
16
|
-
"
|
|
16
|
+
"agenda",
|
|
17
17
|
"bull",
|
|
18
18
|
"bee",
|
|
19
19
|
"kue"
|