@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 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
- MIT License
1
+ Business Source License 1.1
2
2
 
3
- Copyright (c) 2026 ArikaJs
3
+ Copyright (c) 2024-2026 Prakash Tank. All rights reserved.
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
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
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
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
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
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
@@ -158,7 +158,7 @@ scheduler/
158
158
 
159
159
  ## 📄 License
160
160
 
161
- `@arikajs/scheduler` is open-source software licensed under the **MIT License**.
161
+ `@arikajs/scheduler` is licensed under the **Business Source License 1.1 ([BSL-1.1](../../LICENSE))**.
162
162
 
163
163
  ---
164
164
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@arikajs/scheduler",
3
- "version": "0.10.8",
3
+ "version": "0.10.10",
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.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"
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",