Skip to content

Commit d4df94a

Browse files
update for rio-tiler 9.0 (#1307)
* update for rio-tiler 9.0 * fix * migration guide * use rio-tiler alpha version * update docs 1 * update docs 2 * fix type * fix stac viewer * update docs 3 * update bumpversion config * update version to 2.0.0dev0 * update chart version
1 parent b68398e commit d4df94a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1353
-2707
lines changed

CHANGES.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,45 @@
22

33
## Unreleased
44

5+
## 2.0.0 (TBD)
6+
7+
### Misc
8+
9+
* remove: 256x256 tilesize default
10+
* remove: `MultiBandTilerFactory` factory
11+
* remove: `@{scale}x` suffix for tile endpoints
12+
* remove: `tile_scale` option in `/tilejson.json` and `/map.html` endpoints
13+
* change: default to TileMatrix's `tileHeight x tileWidth` for tile endpoints
14+
* change: set `tilesize=512` for `/tilejson.json` endpoints
15+
* change: set `tilesize=256` for `/map.html` endpoints
16+
* change: use `band_descriptions` instead of `band_names`
17+
* add: `tilesize` optional query-parameter for tile and tilejson endpoints
18+
19+
### titiler.core
20+
21+
* change: `bidx` option is now ignored by `MultiBaseFactory` endpoints
22+
* change: `expression` cannot be used to declare `assets` in `MultiBaseFactory` endpoints. Use `assets=Red&assets=Green&expression=b1/b2`.
23+
* remove: `asset_indexes` and `asset_expression` options in `dependencies.py`
24+
* rename:
25+
- `dependencies.AssetsBidxExprParamsOptional` to `dependencies.AssetsExprParamsOptional`
26+
- `dependencies.AssetsBidxExprParams` to `dependencies.AssetsExprParams`
27+
* remove: methods or classes:
28+
- `titiler.core.dependencies.AssetsBidxParams`
29+
- `titiler.core.dependencies.BandsParams`
30+
- `titiler.core.dependencies.BandsExprParamsOptional`
31+
- `titiler.core.dependencies.BandsExprParams`
32+
- `titiler.core.dependencies.parse_asset_indexes()`
33+
- `titiler.core.dependencies.parse_asset_expression()`
34+
35+
### titiler.extensions
36+
37+
* change: force `tilesize=256` in `cog` and `stac` viewers
38+
* remove: `tile_scale` option in `/WMTSCapabilities.xml` endpoints
39+
40+
### titiler.mosaic
41+
42+
* remove: `tile_scale` option in `/WMTSCapabilities.xml` endpoints
43+
544
## 1.1.1 (2026-01-22)
645

746
### titiler.extensions

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN dnf install -y gcc-c++ && dnf clean all
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler-application==1.1.1" "mangum==0.19.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler-application==2.0.0dev0" "mangum==0.19.0" -t /asset --no-binary pydantic
1212

1313
# Reduce package size and remove useless files
1414
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;

deployment/aws/lambda/Dockerfile.xarray

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN dnf install -y gcc-c++ && dnf clean all
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler-xarray==1.1.1" "mangum==0.19.0" "starlette-cramjam" "pydantic-settings" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
11+
RUN python -m pip install "titiler-xarray==2.0.0dev0" "mangum==0.19.0" "starlette-cramjam" "pydantic-settings" "cftime" -t /asset --no-binary pydantic,xarray,numpy,pandas
1212

1313
# Reduce package size and remove useless files
1414
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;

deployment/k8s/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 1.1.1
2+
appVersion: 2.0.0dev0
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.3.4
5+
version: 1.3.5
66
icon: https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
77
maintainers:
88
- name: emmanuelmathot # Emmanuel Mathot

docs/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ nav:
7878
- Tiler with custom Colormap dependency: "examples/code/tiler_with_custom_colormap.md"
7979
- Loading data with signed URLs: "examples/code/working_with_signed_urls.md"
8080
- STAC endpoints with custom `/validate`: "examples/code/tiler_with_custom_stac_validation.md"
81-
- Custom Sentinel 2 Tiler: "examples/code/tiler_for_sentinel2.md"
8281
- Add custom algorithms: "examples/code/tiler_with_custom_algorithm.md"
8382
- GDAL WMTS Extension: "examples/code/create_gdal_wmts_extension.md"
8483
- STAC + Xarray: "examples/code/tiler_with_custom_stac+xarray.md"
@@ -141,6 +140,7 @@ nav:
141140

142141
- Migrations:
143142
- From titiler 0.26.x to 1.x: "migrations/v1_migration.md"
143+
- From titiler 1.x to 2.x: "migrations/v2_migration.md"
144144

145145
- External links: "external_links.md"
146146
- Development - Contributing: "contributing.md"

0 commit comments

Comments
 (0)