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
18 changes: 10 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Added

### Fixed

- Allow POST requests from cross-origin clients ([#60](https://github.com/developmentseed/titiler-cmr/pull/60))

### Changed

- Add `s3_auth_strategy` and `aws_request_payer` to `AppSettings`: https://github.com/developmentseed/titiler-cmr/pull/58
- Add `s3_auth_strategy` and `aws_request_payer` to `AppSettings`: <https://github.com/developmentseed/titiler-cmr/pull/58>

## [v0.1.4]

### Added
- Added support for `sel` and `sel_method` parameters: https://github.com/developmentseed/titiler-cmr/pull/52
- Add HLS tile configuration documentation: https://github.com/developmentseed/titiler-cmr/pull/45

- Added support for `sel` and `sel_method` parameters: <https://github.com/developmentseed/titiler-cmr/pull/52>
- Add HLS tile configuration documentation: <https://github.com/developmentseed/titiler-cmr/pull/45>

### Fixed

### Changed
- Added github workflow for deploying to a dev stack: https://github.com/developmentseed/titiler-cmr/pull/51
- Modifications to github workflow to support deployment via [github.com/NASA-IMPACT/veda-deploy](https://github.com/NASA-IMPACT/veda-deploy): https://github.com/developmentseed/titiler-cmr/pull/47, https://github.com/developmentseed/titiler-cmr/pull/48
- Modifications to deployment environment variables `STAGE` and `AWS_REQUEST_PAYER` via `additional_env` in `StackSettings`: https://github.com/developmentseed/titiler-cmr/pull/55

- Added github workflow for deploying to a dev stack: <https://github.com/developmentseed/titiler-cmr/pull/51>
- Modifications to github workflow to support deployment via [github.com/NASA-IMPACT/veda-deploy](https://github.com/NASA-IMPACT/veda-deploy): <https://github.com/developmentseed/titiler-cmr/pull/47>, <https://github.com/developmentseed/titiler-cmr/pull/48>
- Modifications to deployment environment variables `STAGE` and `AWS_REQUEST_PAYER` via `additional_env` in `StackSettings`: <https://github.com/developmentseed/titiler-cmr/pull/55>

## [v0.1.3]

Expand Down
2 changes: 1 addition & 1 deletion titiler/cmr/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async def lifespan(app: FastAPI):
CORSMiddleware,
allow_origins=settings.cors_origins,
allow_credentials=True,
allow_methods=["GET"],
allow_methods=["GET", "POST"],
allow_headers=["*"],
)

Expand Down
Loading