@interopio/bridge 0.0.5-beta.0 → 0.1.0-beta.0
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 +29 -0
- package/dist/main.js +650 -252
- package/dist/main.js.map +4 -4
- package/package.json +10 -4
package/changelog.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
# Change Log
|
|
4
4
|
|
|
5
|
+
## 0.1.0-beta.0 (2025-10-28)
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- support for running bridge as io.Connect Desktop Node Applications
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- default server port from 8383 to 8084
|
|
12
|
+
- mark `___workspace___.*`, `___window___.*`, `___window-hibernation___.*` and `___instance___.*` contexts as local
|
|
13
|
+
- bump dotenv to 17.2.3
|
|
14
|
+
- bump nanoid to 5.1.6
|
|
15
|
+
- bump @interopio/gateway-server to 0.13.0-beta.1
|
|
16
|
+
- bump @interopio/gateway to 0.16.1-beta.0
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- notify interested parties when a gateway disconnects from the bridge.
|
|
20
|
+
- do not use web socket for internal gateway
|
|
21
|
+
- fix oauth2 configuration loading
|
|
22
|
+
|
|
23
|
+
## 0.0.6-beta.0 (2025-09-04)
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- bump @interopio/gateway-server to 0.10.0-beta.0 (undici is now a peer dependency)
|
|
27
|
+
- bump @interopio/gateway to 0.13.0-beta.0 (upgraded immer to 10.1.3)
|
|
28
|
+
- bump @interopio/gateway-server to 0.9.1-beta.0 (has gateway 0.12.2-beta.0 which fixes method visibility rules when restrictions are null)
|
|
29
|
+
- use `ws` to allow running embedded gateway when running on Node.js 20
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
- allow disabling cors handling via environment variable `IO_BRIDGE_SERVER_CORS_DISABLED` or command line argument `--server.cors.disabled`
|
|
33
|
+
|
|
5
34
|
## 0.0.5-beta.0 (2025-09-02)
|
|
6
35
|
|
|
7
36
|
### Changed
|