@php-wasm/web 3.1.4 → 3.1.5

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.
@@ -135,6 +135,9 @@ export declare class RawBytesFetch {
135
135
  * Parses a raw, streamed HTTP request into a Request object
136
136
  * with known headers and a readable body stream.
137
137
  */
138
- static parseHttpRequest(requestBytesStream: ReadableStream<Uint8Array>, host: string, protocol: 'http' | 'https'): Promise<Request>;
138
+ static parseHttpRequest(requestBytesStream: ReadableStream<Uint8Array>, host: string, protocol: 'http' | 'https'): Promise<{
139
+ request: Request;
140
+ expectsContinue: boolean;
141
+ }>;
139
142
  private static parseRequestHeaders;
140
143
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@php-wasm/web",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "description": "PHP.wasm for the web",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,7 +37,7 @@
37
37
  "main": "./index.cjs",
38
38
  "module": "./index.js",
39
39
  "types": "index.d.ts",
40
- "gitHead": "a7cde6f2a2d3cef27f51f24e9ddadbe5ca05344b",
40
+ "gitHead": "e10df5885055e97c87ce88fe5e9d8d4ac3e700da",
41
41
  "engines": {
42
42
  "node": ">=20.10.0",
43
43
  "npm": ">=10.2.3"
@@ -64,20 +64,20 @@
64
64
  "wasm-feature-detect": "1.8.0",
65
65
  "ws": "8.18.3",
66
66
  "yargs": "17.7.2",
67
- "@php-wasm/util": "3.1.4",
68
- "@php-wasm/universal": "3.1.4",
69
- "@php-wasm/logger": "3.1.4",
70
- "@php-wasm/fs-journal": "3.1.4",
71
- "@wp-playground/storage": "3.1.4",
72
- "@php-wasm/web-8-5": "3.1.4",
73
- "@php-wasm/web-8-4": "3.1.4",
74
- "@php-wasm/web-8-3": "3.1.4",
75
- "@php-wasm/web-8-2": "3.1.4",
76
- "@php-wasm/web-8-1": "3.1.4",
77
- "@php-wasm/web-8-0": "3.1.4",
78
- "@php-wasm/web-7-4": "3.1.4",
79
- "@wp-playground/common": "3.1.4",
80
- "@php-wasm/web-service-worker": "3.1.4"
67
+ "@php-wasm/util": "3.1.5",
68
+ "@php-wasm/universal": "3.1.5",
69
+ "@php-wasm/logger": "3.1.5",
70
+ "@php-wasm/fs-journal": "3.1.5",
71
+ "@wp-playground/storage": "3.1.5",
72
+ "@php-wasm/web-8-5": "3.1.5",
73
+ "@php-wasm/web-8-4": "3.1.5",
74
+ "@php-wasm/web-8-3": "3.1.5",
75
+ "@php-wasm/web-8-2": "3.1.5",
76
+ "@php-wasm/web-8-1": "3.1.5",
77
+ "@php-wasm/web-8-0": "3.1.5",
78
+ "@php-wasm/web-7-4": "3.1.5",
79
+ "@wp-playground/common": "3.1.5",
80
+ "@php-wasm/web-service-worker": "3.1.5"
81
81
  },
82
82
  "packageManager": "npm@10.9.2",
83
83
  "overrides": {