@alwatr/nanotron 4.2.1 → 4.2.2

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.2.2](https://github.com/Alwatr/nanotron/compare/v4.2.1...v4.2.2) (2024-09-29)
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * **nanotron:** change the license to AGPL-3.0 ([a1699ee](https://github.com/Alwatr/nanotron/commit/a1699ee5154577dcb85476bc14c4d9472c50143f)) by @ArmanAsadian
11
+
12
+ ### Dependencies update
13
+
14
+ * bump @types/node in the development-dependencies group ([9c8d7d5](https://github.com/Alwatr/nanotron/commit/9c8d7d518d9a5da2ea57ac2b210a8697267e6d3d)) by @dependabot[bot]
15
+ * update ([1c4ef63](https://github.com/Alwatr/nanotron/commit/1c4ef635fc969d4abd416aea2b954de674748da8)) by @AliMD
16
+
6
17
  ## [4.2.1](https://github.com/Alwatr/nanotron/compare/v4.2.0...v4.2.1) (2024-09-24)
7
18
 
8
19
  ### Dependencies update
package/README.md CHANGED
@@ -59,10 +59,10 @@ The following companies, organizations, and individuals support Nitrobase ongoin
59
59
 
60
60
  [![Exir Studio](https://avatars.githubusercontent.com/u/181194967?s=200&v=4)](https://exirstudio.com)
61
61
 
62
- ## License
62
+ ### Contributing
63
63
 
64
- This project is licensed under the AGPL-3.0 License.
64
+ Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
65
65
 
66
- ## Contributing
66
+ ### License
67
67
 
68
- Contributions are welcome! Please feel free to submit issues and pull requests.
68
+ This project is licensed under the [AGPL-3.0 License](LICENSE).
package/dist/main.cjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/nanotron v4.2.1 */
2
- "use strict";var f=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var m=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of l(o))!c.call(r,t)&&t!==n&&f(r,t,{get:()=>o[t],enumerable:!(p=_(o,t))||p.enumerable});return r},e=(r,o,n)=>(m(r,o,"default"),n&&m(n,o,"default"));var d=r=>m(f({},"__esModule",{value:!0}),r);var a={};module.exports=d(a);var i=require("@alwatr/logger");e(a,require("@alwatr/nanotron-api-server"),module.exports);e(a,require("@alwatr/crypto"),module.exports);(0,i.definePackage)("@alwatr/nanotron","4.2.1");0&&(module.exports={...require("@alwatr/nanotron-api-server"),...require("@alwatr/crypto")});
1
+ /* @alwatr/nanotron v4.2.2 */
2
+ "use strict";var f=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var c=Object.prototype.hasOwnProperty;var m=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of l(o))!c.call(r,t)&&t!==n&&f(r,t,{get:()=>o[t],enumerable:!(p=_(o,t))||p.enumerable});return r},e=(r,o,n)=>(m(r,o,"default"),n&&m(n,o,"default"));var d=r=>m(f({},"__esModule",{value:!0}),r);var a={};module.exports=d(a);var i=require("@alwatr/logger");e(a,require("@alwatr/nanotron-api-server"),module.exports);e(a,require("@alwatr/crypto"),module.exports);(0,i.definePackage)("@alwatr/nanotron","4.2.2");0&&(module.exports={...require("@alwatr/nanotron-api-server"),...require("@alwatr/crypto")});
3
3
  //# sourceMappingURL=main.cjs.map
package/dist/main.mjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/nanotron v4.2.1 */
2
- import{definePackage as o}from"@alwatr/logger";export*from"@alwatr/nanotron-api-server";export*from"@alwatr/crypto";o("@alwatr/nanotron","4.2.1");
1
+ /* @alwatr/nanotron v4.2.2 */
2
+ import{definePackage as o}from"@alwatr/logger";export*from"@alwatr/nanotron-api-server";export*from"@alwatr/crypto";o("@alwatr/nanotron","4.2.2");
3
3
  //# sourceMappingURL=main.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/nanotron",
3
- "version": "4.2.1",
3
+ "version": "4.2.2",
4
4
  "description": "Nanotron: Your Lightweight, High-Performance Micro/Nano Service Framework. Nanotron is designed for building blazingly fast and efficient microservices and APIs. Its minimalist approach and focus on performance make it ideal for resource-constrained environments and scenarios where every millisecond counts.",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
6
  "keywords": [
@@ -22,7 +22,7 @@
22
22
  "require": "./dist/main.cjs"
23
23
  }
24
24
  },
25
- "license": "MIT",
25
+ "license": "AGPL-3.0-only",
26
26
  "files": [
27
27
  "**/*.{js,mjs,cjs,map,d.ts,html,md}",
28
28
  "!demo/**/*"
@@ -57,18 +57,18 @@
57
57
  "clean": "rm -rfv dist *.tsbuildinfo"
58
58
  },
59
59
  "dependencies": {
60
- "@alwatr/crypto": "^4.2.1",
60
+ "@alwatr/crypto": "^4.2.2",
61
61
  "@alwatr/logger": "^3.2.14",
62
- "@alwatr/nanotron-api-server": "^4.2.1"
62
+ "@alwatr/nanotron-api-server": "^4.2.2"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@alwatr/nano-build": "^1.3.10",
66
66
  "@alwatr/prettier-config": "^1.0.4",
67
67
  "@alwatr/tsconfig-base": "^1.2.0",
68
68
  "@alwatr/type-helper": "^1.2.6",
69
- "@types/node": "^22.6.1",
69
+ "@types/node": "^22.7.4",
70
70
  "jest": "^29.7.0",
71
71
  "typescript": "^5.6.2"
72
72
  },
73
- "gitHead": "b4a2982e438591723fc4a19ce004cf2938b01971"
73
+ "gitHead": "887f58ef716850a245871fe0f3672354201cdb9a"
74
74
  }