Skip to content

Commit

Permalink
Release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pka committed Nov 14, 2024
1 parent 3ca6ac6 commit e6491f6
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 32 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.6.2 (2024-11-14)

* Add support for URL prefix for backend and endpoints
* Automatic deduplication of file and MBTiles tile caches
* Writing PMTiles is not limited by RAM anymore
* Return all fields in tilejson
* Fix collection detection for non-lowercase or empty tables
* Website redesign with landing page and documentation

## 0.6.1 (2024-08-23)

* New OGC endpoints /tileMatrixSets and /tileMatrixSets/{id}
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions bbox-asset-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-asset-server"
version = "0.6.1"
version = "0.6.2"
authors = ["Pirmin Kalberer <pirmin.kalberer@gmail.com>"]
readme = "README.md"
description = "Serving static and templated files"
Expand All @@ -16,7 +16,7 @@ homepage.workspace = true
actix-files = "0.6.0"
actix-web = { workspace = true }
async-trait = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
clap = { workspace = true }
configparser = "3.0.0"
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion bbox-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-core"
version = "0.6.1"
version = "0.6.2"
authors = ["Pirmin Kalberer <pirmin.kalberer@gmail.com>"]
readme = "README.md"
description = "Common functionality for BBOX services"
Expand Down
4 changes: 2 additions & 2 deletions bbox-feature-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-feature-server"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "BBOX OGC API Features Service"
categories = ["science::geo"]
Expand All @@ -18,7 +18,7 @@ html = ["bbox-core/html"]
[dependencies]
actix-web = { workspace = true }
async-trait = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
chrono = { workspace = true }
clap = { workspace = true }
dyn-clone = "1.0.6"
Expand Down
6 changes: 3 additions & 3 deletions bbox-frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-frontend"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "HTML frontend for BBOX services"
categories = ["science::geo"]
Expand All @@ -25,8 +25,8 @@ proj = []

[dependencies]
actix-web = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.1", features=["html"] }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.1", optional = true }
bbox-core = { path = "../bbox-core", version = "0.6.2", features=["html"] }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.2", optional = true }
log = { workspace = true }
minijinja = { workspace = true }
once_cell = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions bbox-map-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-map-server"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "BBOX map server"
keywords = ["maps", "wms", "qgis", "mapserver"]
Expand All @@ -21,7 +21,7 @@ actix-web = { workspace = true }
async-process = "1.0.0"
async-trait = { workspace = true }
awc = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
bufstream = "0.1.4"
clap = { workspace = true }
deadpool = { version = "0.9.2", default-features = false, features = ["managed", "rt_tokio_1"] }
Expand Down
4 changes: 2 additions & 2 deletions bbox-processes-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-processes-server"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "BBOX OGC API Processes Service"
keywords = ["processes", "workflows"]
Expand All @@ -18,7 +18,7 @@ actix-files = "0.6.0"
actix-web = { workspace = true }
async-trait = { workspace = true }
awc = { workspace = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
chrono = { workspace = true, features = ["serde"] }
clap = { workspace = true }
log = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions bbox-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-server"
version = "0.6.1"
version = "0.6.2"
readme = "README.md"
description = "BBOX OGC API Services"
keywords = ["maps", "tiles", "postgis"]
Expand Down Expand Up @@ -28,14 +28,14 @@ qwc2 = ["bbox-frontend?/qwc2"]
actix-service = "2.0.2"
actix-web = { workspace = true }
async-trait = { workspace = true }
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.1", optional = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-feature-server = { path = "../bbox-feature-server", version = "0.6.1", optional = true }
bbox-frontend = { path = "../bbox-frontend", version = "0.6.1", optional = true }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.1", optional = true }
bbox-processes-server = { path = "../bbox-processes-server", version = "0.6.1", optional = true }
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.2", optional = true }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
bbox-feature-server = { path = "../bbox-feature-server", version = "0.6.2", optional = true }
bbox-frontend = { path = "../bbox-frontend", version = "0.6.2", optional = true }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.2", optional = true }
bbox-processes-server = { path = "../bbox-processes-server", version = "0.6.2", optional = true }
bbox-routing-server = { path = "../bbox-routing-server", version = "0.1.0", optional = true }
bbox-tile-server = { path = "../bbox-tile-server", version = "0.6.1", default-features = false, optional = true }
bbox-tile-server = { path = "../bbox-tile-server", version = "0.6.2", default-features = false, optional = true }
clap = { workspace = true }
log = { workspace = true }
minijinja = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions bbox-tile-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bbox-tile-server"
version = "0.6.1"
version = "0.6.2"
authors = ["Pirmin Kalberer <pirmin.kalberer@gmail.com>"]
readme = "README.md"
description = "Vector and raster tiles server supporting various sources and storage formats"
Expand All @@ -26,9 +26,9 @@ actix-web = { workspace = true }
anyhow = "1.0.52"
async-channel = "2.3.1"
async-trait = { workspace = true }
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.1", optional = true }
bbox-core = { path = "../bbox-core", version = "0.6.1" }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.1", optional = true }
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.2", optional = true }
bbox-core = { path = "../bbox-core", version = "0.6.2" }
bbox-map-server = { path = "../bbox-map-server", version = "0.6.2", optional = true }
blake3 = "1.5.4"
bytes = "1.1.0"
chrono = { workspace = true }
Expand Down

0 comments on commit e6491f6

Please sign in to comment.