Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.16.7] - 2026-05-18

### 🐛 Bug Fixes

- Set backend hostname to localhost during build
## [0.16.6] - 2026-05-13

### 🚀 Features
Expand All @@ -9,6 +14,10 @@

- Improve hostname resolution and clean up imports
- Simplify backend hostname resolution and header handling

### ⚙️ Miscellaneous Tasks

- Release
## [0.16.5] - 2026-05-11

### ⚙️ Miscellaneous Tasks
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.16.6"
version = "0.16.7"
edition = "2024"
publish = false
authors = ["FastEdge Development Team"]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async fn main() -> anyhow::Result<()> {
.collect(),
);

let backend = builder.build(backend_connector);
let backend = builder.hostname("localhost").build(backend_connector);

let has_dotenv_flag = run.dotenv.is_some();

Expand Down
Loading