@arikajs/scheduler 0.10.6 → 0.10.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 (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @arikajs/scheduler
2
2
 
3
+ ## 0.10.7
4
+
5
+ ### Patch Changes
6
+
7
+ - - Restored package hoisting (.npmrc).
8
+ - Fixed workspace dependency declarations for internal packages.
9
+ - Added explicit type dependencies (tsx, @types/node).
10
+ - Formatted timestamp to YYYY-MM-DD HH:MM:SS format natively.
11
+ - Updated dependencies
12
+ - @arikajs/cache@0.10.7
13
+ - @arikajs/console@0.10.7
14
+ - @arikajs/events@0.10.7
15
+ - @arikajs/foundation@0.10.7
16
+ - @arikajs/logging@0.10.7
17
+ - @arikajs/queue@0.10.7
18
+
3
19
  ## 0.10.6
4
20
 
5
21
  ### 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.7",
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.7",
11
+ "@arikajs/logging": "0.10.7",
12
+ "@arikajs/queue": "0.10.7",
13
+ "@arikajs/console": "0.10.7",
14
+ "@arikajs/events": "0.10.7",
15
+ "@arikajs/cache": "0.10.7"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^20.11.24",