@h3ravel/http 4.0.0 → 4.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +29 -0
  3. package/package.json +14 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @h3ravel/http
2
2
 
3
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b0d1b7c]
8
+ - Updated dependencies [ce51a92]
9
+ - @h3ravel/support@0.7.0
10
+ - @h3ravel/shared@0.7.0
11
+ - @h3ravel/core@1.0.2
12
+
3
13
  ## 4.0.0
4
14
 
5
15
  ### Minor Changes
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ <p align="center"><a href="https://h3ravel.toneflix.net" target="_blank"><img src="https://raw.githubusercontent.com/h3ravel/assets/refs/heads/main/logo-full.svg" width="400" alt="H3ravel Logo"></a></p>
2
+
3
+ [![Framework][ix]][lx]
4
+ [![Http Package Version][i1]][l1]
5
+
6
+ # About H3ravel/http
7
+
8
+ This is the middleware pipeline and HTTP kernel system for the [H3ravel](https://h3ravel.toneflix.net) framework.
9
+
10
+ ## Contributing
11
+
12
+ Thank you for considering contributing to the H3ravel framework! The contribution guide can be found in the [H3ravel documentation](#!).
13
+
14
+ ## Code of Conduct
15
+
16
+ In order to ensure that the H3ravel community is welcoming to all, please review and abide by the [Code of Conduct](#).
17
+
18
+ ## Security Vulnerabilities
19
+
20
+ If you discover a security vulnerability within H3ravel, please send an e-mail to Legacy via hamzas.legacy@toneflix.ng. All security vulnerabilities will be promptly addressed.
21
+
22
+ ## License
23
+
24
+ The H3ravel framework is open-sourced software licensed under the [MIT license](LICENSE).
25
+
26
+ [ix]: https://img.shields.io/npm/v/%40h3ravel%2Fcore?style=flat-square&label=Framework&color=%230970ce
27
+ [lx]: https://www.npmjs.com/package/@h3ravel/core
28
+ [i1]: https://img.shields.io/npm/v/%40h3ravel%2Fhttp?style=flat-square&label=@h3ravel/http&color=%230970ce
29
+ [l1]: https://www.npmjs.com/package/@h3ravel/http
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/http",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "HTTP kernel, middleware pipeline, request/response classes for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,14 +8,24 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
+ "keywords": [
12
+ "h3ravel",
13
+ "modern",
14
+ "web",
15
+ "H3",
16
+ "framework",
17
+ "nodejs",
18
+ "typescript",
19
+ "laravel"
20
+ ],
11
21
  "dependencies": {
12
22
  "h3": "^2.0.0-beta.1",
13
23
  "srvx": "^0.8.2",
14
- "@h3ravel/support": "0.6.0",
15
- "@h3ravel/shared": "0.6.0"
24
+ "@h3ravel/support": "0.7.0",
25
+ "@h3ravel/shared": "0.7.0"
16
26
  },
17
27
  "peerDependencies": {
18
- "@h3ravel/core": "1.0.0"
28
+ "@h3ravel/core": "1.0.2"
19
29
  },
20
30
  "devDependencies": {
21
31
  "typescript": "^5.4.0"