[Git][debian-gis-team/pygeoapi][master] 2 commits: New upstream version 0.22.0

Angelos Tzotsos (@kalxas-guest) gitlab at salsa.debian.org
Fri Nov 7 21:11:09 GMT 2025



Angelos Tzotsos pushed to branch master at Debian GIS Project / pygeoapi


Commits:
8debf8da by Angelos Tzotsos at 2025-11-07T23:10:35+02:00
New upstream version 0.22.0
- - - - -
37fff799 by Angelos Tzotsos at 2025-11-07T23:10:35+02:00
New upstream release 0.22.0

- - - - -


150 changed files:

- .github/workflows/containers.yml
- .github/workflows/docs.yml
- .github/workflows/flake8.yml
- .github/workflows/main.yml
- .github/workflows/vulnerabilities.yml
- .readthedocs.yaml
- Dockerfile
- debian/changelog
- docker/entrypoint.sh
- docs/source/conf.py
- docs/source/configuration.rst
- docs/source/crs.rst
- − docs/source/data-publishing/index.rst
- docs/source/development.rst
- docs/source/html-templating.rst
- docs/source/index.rst
- docs/source/installation.rst
- docs/source/ogc-compliance.rst
- docs/source/plugins.rst
- + docs/source/publishing/index.rst
- docs/source/data-publishing/ogcapi-coverages.rst → docs/source/publishing/ogcapi-coverages.rst
- docs/source/data-publishing/ogcapi-edr.rst → docs/source/publishing/ogcapi-edr.rst
- docs/source/data-publishing/ogcapi-features.rst → docs/source/publishing/ogcapi-features.rst
- docs/source/data-publishing/ogcapi-maps.rst → docs/source/publishing/ogcapi-maps.rst
- docs/source/data-publishing/ogcapi-processes.rst → docs/source/publishing/ogcapi-processes.rst
- docs/source/data-publishing/ogcapi-records.rst → docs/source/publishing/ogcapi-records.rst
- docs/source/data-publishing/ogcapi-tiles.rst → docs/source/publishing/ogcapi-tiles.rst
- docs/source/data-publishing/stac.rst → docs/source/publishing/stac.rst
- docs/source/running-with-docker.rst
- docs/source/running.rst
- + locale/pt_BR/LC_MESSAGES/messages.po
- + locale/ru/LC_MESSAGES/messages.po
- pygeoapi/__init__.py
- pygeoapi/api/__init__.py
- pygeoapi/admin.py → pygeoapi/api/admin.py
- pygeoapi/api/coverages.py
- pygeoapi/api/environmental_data_retrieval.py
- pygeoapi/api/itemtypes.py
- pygeoapi/api/maps.py
- pygeoapi/api/processes.py
- pygeoapi/api/stac.py
- pygeoapi/api/tiles.py
- pygeoapi/config.py
- + pygeoapi/crs.py
- pygeoapi/django_/settings.py
- pygeoapi/django_/urls.py
- pygeoapi/django_/views.py
- pygeoapi/flask_app.py
- pygeoapi/formatter/base.py
- pygeoapi/l10n.py
- pygeoapi/linked_data.py
- pygeoapi/log.py
- pygeoapi/models/provider/base.py
- pygeoapi/openapi.py
- pygeoapi/provider/base.py
- pygeoapi/provider/base_edr.py
- pygeoapi/provider/base_mvt.py
- pygeoapi/provider/csv_.py
- pygeoapi/provider/csw_facade.py
- pygeoapi/provider/elasticsearch_.py
- pygeoapi/provider/erddap.py
- pygeoapi/provider/esri.py
- pygeoapi/provider/geojson.py
- pygeoapi/provider/mapscript_.py
- pygeoapi/provider/mongo.py
- pygeoapi/provider/mvt_elastic.py
- pygeoapi/provider/mvt_postgresql.py
- pygeoapi/provider/mvt_tippecanoe.py
- pygeoapi/provider/ogr.py
- pygeoapi/provider/opensearch_.py
- pygeoapi/provider/oracle.py
- pygeoapi/provider/parquet.py
- pygeoapi/provider/sensorthings.py
- pygeoapi/provider/socrata.py
- pygeoapi/provider/sql.py
- pygeoapi/provider/sqlite.py
- pygeoapi/provider/tile.py
- pygeoapi/provider/tinydb_.py
- pygeoapi/provider/wmts_facade.py
- pygeoapi/provider/xarray_.py
- + pygeoapi/resources/definitions/tiles/WebMercatorQuad.json
- + pygeoapi/resources/definitions/tiles/WorldCRS84Quad.json
- pygeoapi/schemas/config/pygeoapi-config-0.x.yml → pygeoapi/resources/schemas/config/pygeoapi-config-0.x.yml
- pygeoapi/schemas/openapi/openapi-3.0.x.json → pygeoapi/resources/schemas/openapi/openapi-3.0.x.json
- pygeoapi/starlette_app.py
- pygeoapi/templates/collections/collection.html
- pygeoapi/templates/collections/items/index.html
- pygeoapi/templates/stac/collection.html
- pygeoapi/util.py
- + pyproject.toml
- requirements-django.txt
- requirements-provider.txt
- setup.py
- tests/test_admin_api.py → tests/api/test_admin.py
- tests/test_admin_api_live.py → tests/api/test_admin_live.py
- tests/api/test_api.py
- tests/api/test_itemtypes.py
- tests/api/test_processes.py
- + tests/api/test_stac.py
- tests/api/test_tiles.py
- + tests/formatter/__init__.py
- tests/test_csv__formatter.py → tests/formatter/test_csv__formatter.py
- tests/load_tinydb_records.py
- + tests/manager/__init__.py
- tests/test_manager.py → tests/manager/test_manager.py
- tests/test_postgresql_manager.py → tests/manager/test_postgresql_manager.py
- tests/test_tinydb_manager_for_parallel_requests.py → tests/manager/test_tinydb_manager_for_parallel_requests.py
- + tests/other/__init__.py
- tests/test_config.py → tests/other/test_config.py
- + tests/other/test_crs.py
- tests/test_django.py → tests/other/test_django.py
- tests/test_l10n.py → tests/other/test_l10n.py
- tests/test_linked_data.py → tests/other/test_linked_data.py
- tests/test_ogr_capabilities.py → tests/other/test_ogr_capabilities.py
- tests/test_openapi.py → tests/other/test_openapi.py
- tests/test_util.py → tests/other/test_util.py
- + tests/provider/__init__.py
- tests/test_api_ogr_provider.py → tests/provider/test_api_ogr_provider.py
- tests/test_base_provider.py → tests/provider/test_base_provider.py
- tests/test_csv__provider.py → tests/provider/test_csv__provider.py
- tests/test_csw_provider.py → tests/provider/test_csw_provider.py
- tests/test_elasticsearch__provider.py → tests/provider/test_elasticsearch__provider.py
- tests/test_esri_provider.py → tests/provider/test_esri_provider.py
- tests/test_filesystem_provider.py → tests/provider/test_filesystem_provider.py
- tests/test_geojson_provider.py → tests/provider/test_geojson_provider.py
- tests/test_mongo_provider.py → tests/provider/test_mongo_provider.py
- tests/test_mysql_provider.py → tests/provider/test_mysql_provider.py
- tests/test_ogr_csv_provider.py → tests/provider/test_ogr_csv_provider.py
- tests/test_ogr_esrijson_provider.py → tests/provider/test_ogr_esrijson_provider.py
- tests/test_ogr_gpkg_provider.py → tests/provider/test_ogr_gpkg_provider.py
- tests/test_ogr_shapefile_provider.py → tests/provider/test_ogr_shapefile_provider.py
- tests/test_ogr_sqlite_provider.py → tests/provider/test_ogr_sqlite_provider.py
- tests/test_ogr_wfs_provider.py → tests/provider/test_ogr_wfs_provider.py
- tests/test_ogr_wfs_provider_live.py → tests/provider/test_ogr_wfs_provider_live.py
- tests/test_opensearch__provider.py → tests/provider/test_opensearch__provider.py
- tests/test_oracle_provider.py → tests/provider/test_oracle_provider.py
- tests/test_parquet_provider.py → tests/provider/test_parquet_provider.py
- tests/test_postgresql_mvt_provider.py → tests/provider/test_postgresql_mvt_provider.py
- tests/test_postgresql_provider.py → tests/provider/test_postgresql_provider.py
- tests/test_rasterio_provider.py → tests/provider/test_rasterio_provider.py
- tests/test_sensorthings_edr_provider.py → tests/provider/test_sensorthings_edr_provider.py
- tests/test_sensorthings_provider.py → tests/provider/test_sensorthings_provider.py
- tests/test_socrata_provider.py → tests/provider/test_socrata_provider.py
- tests/test_socrata_provider_live.py → tests/provider/test_socrata_provider_live.py
- tests/test_sqlite_geopackage_provider.py → tests/provider/test_sqlite_geopackage_provider.py
- tests/test_tinydb_catalogue_provider.py → tests/provider/test_tinydb_catalogue_provider.py
- tests/test_tinydb_provider.py → tests/provider/test_tinydb_provider.py
- tests/test_xarray_netcdf_provider.py → tests/provider/test_xarray_netcdf_provider.py
- tests/test_xarray_zarr_provider.py → tests/provider/test_xarray_zarr_provider.py
- + tests/pygeoapi-test-stac-api-config.yml


The diff was not included because it is too large.


View it on GitLab: https://salsa.debian.org/debian-gis-team/pygeoapi/-/compare/193c6db0255de11b0481df55525b045a733f0ee7...37fff799963d078929f24806aa73aeeb3589ad42

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/pygeoapi/-/compare/193c6db0255de11b0481df55525b045a733f0ee7...37fff799963d078929f24806aa73aeeb3589ad42
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20251107/e7c8b1e5/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list