@platformatic/remix 2.70.0 → 2.70.1

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/config.d.ts CHANGED
@@ -401,6 +401,7 @@ export interface PlatformaticRemixStackable {
401
401
  [k: string]: unknown;
402
402
  };
403
403
  serviceTimeout?: number | string;
404
+ messagingTimeout?: number | string;
404
405
  env?: {
405
406
  [k: string]: string;
406
407
  };
package/index.js CHANGED
@@ -142,7 +142,7 @@ export class RemixStackable extends ViteStackable {
142
142
  url: this.url,
143
143
  prefix: this.basePath ?? this.#basePath,
144
144
  wantsAbsoluteUrls: true,
145
- needsRootRedirect: true
145
+ needsRootTrailingSlash: true
146
146
  }
147
147
  }
148
148
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/remix",
3
- "version": "2.70.0",
3
+ "version": "2.70.1",
4
4
  "description": "Platformatic Remix Stackable",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -15,33 +15,33 @@
15
15
  },
16
16
  "homepage": "https://github.com/platformatic/platformatic#readme",
17
17
  "dependencies": {
18
- "@remix-run/express": "^2.11.2",
19
- "light-my-request": "^6.0.0",
18
+ "@remix-run/express": "^2.16.8",
20
19
  "express": "^4.19.2",
20
+ "light-my-request": "^6.0.0",
21
21
  "pino-http": "^10.2.0",
22
22
  "semver": "^7.6.3",
23
- "@platformatic/basic": "2.70.0",
24
- "@platformatic/config": "2.70.0",
25
- "@platformatic/utils": "2.70.0",
26
- "@platformatic/vite": "2.70.0"
23
+ "@platformatic/config": "2.70.1",
24
+ "@platformatic/vite": "2.70.1",
25
+ "@platformatic/utils": "2.70.1",
26
+ "@platformatic/basic": "2.70.1"
27
27
  },
28
28
  "devDependencies": {
29
- "@remix-run/dev": "^2.11.2",
30
- "@remix-run/node": "^2.11.2",
31
- "@remix-run/react": "^2.11.2",
29
+ "@remix-run/dev": "^2.16.8",
30
+ "@remix-run/node": "^2.16.8",
31
+ "@remix-run/react": "^2.16.8",
32
32
  "borp": "^0.20.0",
33
33
  "eslint": "9",
34
34
  "fastify": "^5.0.0",
35
35
  "isbot": "^5.1.17",
36
36
  "json-schema-to-typescript": "^15.0.1",
37
37
  "neostandard": "^0.12.0",
38
- "react": "^18.3.1",
39
- "react-dom": "^18.3.1",
38
+ "react": "^19.1.0",
39
+ "react-dom": "^19.1.0",
40
40
  "typescript": "^5.5.4",
41
41
  "vite": "^5.4.2",
42
42
  "ws": "^8.18.0",
43
- "@platformatic/composer": "2.70.0",
44
- "@platformatic/service": "2.70.0"
43
+ "@platformatic/composer": "2.70.1",
44
+ "@platformatic/service": "2.70.1"
45
45
  },
46
46
  "scripts": {
47
47
  "test": "npm run lint && borp --concurrency=1 --no-timeout",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/remix/2.70.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/remix/2.70.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Remix Stackable",
5
5
  "type": "object",
@@ -1292,6 +1292,18 @@
1292
1292
  ],
1293
1293
  "default": 300000
1294
1294
  },
1295
+ "messagingTimeout": {
1296
+ "anyOf": [
1297
+ {
1298
+ "type": "number",
1299
+ "minimum": 1
1300
+ },
1301
+ {
1302
+ "type": "string"
1303
+ }
1304
+ ],
1305
+ "default": 30000
1306
+ },
1295
1307
  "env": {
1296
1308
  "type": "object",
1297
1309
  "additionalProperties": {