# [0.14.0](https://github.com/offendingcommit/openconcho/compare/v0.13.1...v0.14.0) (2026-06-02) ### Bug Fixes * **docker:** derive nginx resolver from container DNS ([66b299a](66b299a28e)) * **docker:** drop dead HONCHO_UPSTREAM and same-origin default ([a2854ab](a2854ab8ea)) * **web:** enforce upstream allowlist in vite dev proxy ([b4fac95](b4fac95f37)) * **web:** raise connection-test timeout for cold upstreams ([409d7d8](409d7d8be7)) * **web:** strip content-encoding from vite dev proxy responses ([6b602c0](6b602c05bb)) ### Features * **docker:** header-driven /api reverse proxy in nginx ([753c978](753c978f56)) * **docker:** render SSRF allowlist map from env ([0af1ad9](0af1ad923c)) * **docker:** split compose into dev-forward build and prod pull ([c9bd2db](c9bd2db07d)) * **web:** add dispatchFor transport helper for same-origin proxy ([9945e4c](9945e4cf14)) * **web:** dev /api proxy middleware mirroring nginx ([ab8a1ba](ab8a1ba866)) * **web:** route checkConnection and discovery through the proxy ([9893230](9893230cde)) * **web:** route web build through same-origin /api proxy ([0935099](0935099bc2))
22 lines
509 B
TOML
22 lines
509 B
TOML
[package]
|
|
name = "openconcho"
|
|
version = "0.14.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "openconcho_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-http = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-deep-link = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["net", "io-util", "time", "rt", "macros"] }
|
|
futures = "0.3"
|