@arikajs/scheduler 0.10.7 → 0.10.9

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 +29 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @arikajs/scheduler
2
2
 
3
+ ## 0.10.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 394c886: - chore: switch license from MIT to BSL-1.1 for all packages
8
+ - fix(ci): add ESLint v8 and root .eslintrc.json to resolve CI lint failures
9
+ - fix(foundation): correct prefer-const and ban-types lint errors
10
+ - fix(router): correct prefer-const lint error in RouteEntry
11
+ - docs: add trademark notice and BSL-1.1 license information to README
12
+ - Updated dependencies [394c886]
13
+ - @arikajs/logging@0.10.9
14
+ - @arikajs/foundation@0.10.9
15
+ - @arikajs/cache@0.10.9
16
+ - @arikajs/console@0.10.9
17
+ - @arikajs/events@0.10.9
18
+ - @arikajs/queue@0.10.9
19
+
20
+ ## 0.10.8
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [6dd5cde]
25
+ - @arikajs/logging@0.10.8
26
+ - @arikajs/foundation@0.10.8
27
+ - @arikajs/cache@0.10.8
28
+ - @arikajs/console@0.10.8
29
+ - @arikajs/events@0.10.8
30
+ - @arikajs/queue@0.10.8
31
+
3
32
  ## 0.10.7
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@arikajs/scheduler",
3
- "version": "0.10.7",
3
+ "version": "0.10.9",
4
4
  "description": "Task scheduling for ArikaJS.",
5
- "license": "MIT",
5
+ "license": "BSL-1.1",
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/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"
10
+ "@arikajs/foundation": "0.10.9",
11
+ "@arikajs/logging": "0.10.9",
12
+ "@arikajs/queue": "0.10.9",
13
+ "@arikajs/console": "0.10.9",
14
+ "@arikajs/events": "0.10.9",
15
+ "@arikajs/cache": "0.10.9"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "^20.11.24",