-
Notifications
You must be signed in to change notification settings - Fork 0
0.11.6 upgrade anna #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ | |
| LoggerMiddleware, | ||
| LowerCaseQueryStringMiddleware, | ||
| TotalTimeMiddleware, | ||
| BlockVRTMiddleware, | ||
|
||
| ) | ||
| from titiler.extensions import ( | ||
| cogValidateExtension, | ||
|
|
@@ -173,6 +174,7 @@ | |
| if api_settings.lower_case_query_parameters: | ||
| app.add_middleware(LowerCaseQueryStringMiddleware) | ||
|
|
||
| app.add_middleware(BlockVRTMiddleware) | ||
|
|
||
| router = APIRouter(prefix=global_prefix) | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -31,7 +31,7 @@ dynamic = ["version"] | |||||
| dependencies = [ | ||||||
| # Configured for volume-mount path of Lambda Dockerfile. For local | ||||||
| # development, update accordingly for your local filesystem path: | ||||||
| "titiler.core @ file:///titiler/src/titiler/core", | ||||||
| "titiler.core @ file:///titiler/src//titiler/core", | ||||||
|
||||||
| "titiler.core @ file:///titiler/src//titiler/core", | |
| "titiler.core @ file:///titiler/src/titiler/core", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The removal of the temporary titiler directory is commented out; clarify whether this is for debugging purposes or if it should be restored for production cleanliness.