Skip to content
Merged
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 0.15.1
- fix: Downgrade meta dep to ^1.16.0 to match flutter 3.32.0 (serverpod lower bound) ([#325](https://github.com/serverpod/relic/pull/325)))

## 0.15.0
- feat: Add virtual host routing support ([#321](https://github.com/serverpod/relic/pull/321))
- feat: Add virtual host routing support ([#322](https://github.com/serverpod/relic/pull/322))
- Add `useHostWhenRouting` parameter to `routeWith()` middleware
- Add `useHostWhenRouting` parameter to `RelicApp`
- When enabled, routing uses `{host}{path}` for route matching
Expand Down
6 changes: 3 additions & 3 deletions packages/relic/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: relic
description: A lightweight and flexible web server inspired by Shelf for building APIs and backend services.
version: 0.15.0
version: 0.15.1
repository: https://github.com/serverpod/relic
homepage: https://docs.dartrelic.dev/
topics:
Expand All @@ -15,8 +15,8 @@ environment:
resolution: workspace

dependencies:
relic_core: ^0.15.0
relic_io: ^0.15.0
relic_core: ^0.15.1
relic_io: ^0.15.1

dev_dependencies:
async: ^2.13.0
Expand Down
2 changes: 1 addition & 1 deletion packages/relic_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: relic_core
description: Core framework for Relic web server (platform-agnostic).
version: 0.15.0
version: 0.15.1
repository: https://github.com/serverpod/relic
homepage: https://docs.dartrelic.dev/
topics:
Expand Down
4 changes: 2 additions & 2 deletions packages/relic_io/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: relic_io
description: dart:io adapter for Relic web server.
version: 0.15.0
version: 0.15.1
repository: https://github.com/serverpod/relic
homepage: https://docs.dartrelic.dev/
topics:
Expand All @@ -18,7 +18,7 @@ dependencies:
crypto: ^3.0.0
mime: ^2.0.0
path: ^1.8.3
relic_core: ^0.15.0
relic_core: ^0.15.1
stack_trace: ^1.10.0
stream_channel: ^2.1.1
web_socket: ^1.0.1
Expand Down
Loading