@arikajs/scheduler 0.10.8 → 0.10.10
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 +32 -0
- package/LICENSE +15 -17
- package/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @arikajs/scheduler
|
|
2
2
|
|
|
3
|
+
## 0.10.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a1f7aac: - chore: complete transition of all individual package LICENSE files to BSL-1.1
|
|
8
|
+
- docs: update all package READMEs to reflect the new BSL-1.1 licensing and trademark notice
|
|
9
|
+
- chore: remove all remaining references to MIT license from the active source and documentation
|
|
10
|
+
- Updated dependencies [a1f7aac]
|
|
11
|
+
- @arikajs/cache@0.10.10
|
|
12
|
+
- @arikajs/console@0.10.10
|
|
13
|
+
- @arikajs/events@0.10.10
|
|
14
|
+
- @arikajs/foundation@0.10.10
|
|
15
|
+
- @arikajs/logging@0.10.10
|
|
16
|
+
- @arikajs/queue@0.10.10
|
|
17
|
+
|
|
18
|
+
## 0.10.9
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 394c886: - chore: switch license from MIT to BSL-1.1 for all packages
|
|
23
|
+
- fix(ci): add ESLint v8 and root .eslintrc.json to resolve CI lint failures
|
|
24
|
+
- fix(foundation): correct prefer-const and ban-types lint errors
|
|
25
|
+
- fix(router): correct prefer-const lint error in RouteEntry
|
|
26
|
+
- docs: add trademark notice and BSL-1.1 license information to README
|
|
27
|
+
- Updated dependencies [394c886]
|
|
28
|
+
- @arikajs/logging@0.10.9
|
|
29
|
+
- @arikajs/foundation@0.10.9
|
|
30
|
+
- @arikajs/cache@0.10.9
|
|
31
|
+
- @arikajs/console@0.10.9
|
|
32
|
+
- @arikajs/events@0.10.9
|
|
33
|
+
- @arikajs/queue@0.10.9
|
|
34
|
+
|
|
3
35
|
## 0.10.8
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
Business Source License 1.1
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026
|
|
3
|
+
Copyright (c) 2024-2026 Prakash Tank. All rights reserved.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
This software is licensed under the Business Source License 1.1 (BSL-1.1).
|
|
6
|
+
The full license text is available in the root LICENSE file of this repository.
|
|
11
7
|
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
Licensed Work: ArikaJS Framework
|
|
9
|
+
Licensor: Prakash Tank
|
|
10
|
+
Change Date: 2029-01-01
|
|
11
|
+
Change License: Apache License, Version 2.0
|
|
14
12
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
For commercial licensing, contact: prakashtank@arikajs.dev
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
Trademark Notice: "ArikaJS" is a trademark of Prakash Tank.
|
|
18
|
+
You may not use the ArikaJS name or logo for derivative works or forks
|
|
19
|
+
without prior written permission.
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikajs/scheduler",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
4
4
|
"description": "Task scheduling for ArikaJS.",
|
|
5
|
-
"license": "
|
|
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.
|
|
11
|
-
"@arikajs/logging": "0.10.
|
|
12
|
-
"@arikajs/queue": "0.10.
|
|
13
|
-
"@arikajs/
|
|
14
|
-
"@arikajs/
|
|
15
|
-
"@arikajs/events": "0.10.
|
|
10
|
+
"@arikajs/foundation": "0.10.10",
|
|
11
|
+
"@arikajs/logging": "0.10.10",
|
|
12
|
+
"@arikajs/queue": "0.10.10",
|
|
13
|
+
"@arikajs/console": "0.10.10",
|
|
14
|
+
"@arikajs/cache": "0.10.10",
|
|
15
|
+
"@arikajs/events": "0.10.10"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^20.11.24",
|