@arikajs/scheduler 0.10.6 → 0.10.8

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/CHANGELOG.md +28 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @arikajs/scheduler
2
2
 
3
+ ## 0.10.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6dd5cde]
8
+ - @arikajs/logging@0.10.8
9
+ - @arikajs/foundation@0.10.8
10
+ - @arikajs/cache@0.10.8
11
+ - @arikajs/console@0.10.8
12
+ - @arikajs/events@0.10.8
13
+ - @arikajs/queue@0.10.8
14
+
15
+ ## 0.10.7
16
+
17
+ ### Patch Changes
18
+
19
+ - - Restored package hoisting (.npmrc).
20
+ - Fixed workspace dependency declarations for internal packages.
21
+ - Added explicit type dependencies (tsx, @types/node).
22
+ - Formatted timestamp to YYYY-MM-DD HH:MM:SS format natively.
23
+ - Updated dependencies
24
+ - @arikajs/cache@0.10.7
25
+ - @arikajs/console@0.10.7
26
+ - @arikajs/events@0.10.7
27
+ - @arikajs/foundation@0.10.7
28
+ - @arikajs/logging@0.10.7
29
+ - @arikajs/queue@0.10.7
30
+
3
31
  ## 0.10.6
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@arikajs/scheduler",
3
- "version": "0.10.6",
3
+ "version": "0.10.8",
4
4
  "description": "Task scheduling for ArikaJS.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "dependencies": {
9
9
  "cron-parser": "^4.9.0",
10
- "@arikajs/logging": "0.10.6",
11
- "@arikajs/foundation": "0.10.6",
12
- "@arikajs/queue": "0.10.6",
13
- "@arikajs/console": "0.10.6",
14
- "@arikajs/events": "0.10.6",
15
- "@arikajs/cache": "0.10.6"
10
+ "@arikajs/foundation": "0.10.8",
11
+ "@arikajs/logging": "0.10.8",
12
+ "@arikajs/queue": "0.10.8",
13
+ "@arikajs/cache": "0.10.8",
14
+ "@arikajs/console": "0.10.8",
15
+ "@arikajs/events": "0.10.8"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^20.11.24",