Skip to content

Commit

Permalink
Merge pull request #91 from unity-sds/develop
Browse files Browse the repository at this point in the history
fix: release to main
  • Loading branch information
wphyojpl authored Sep 27, 2022
2 parents 41241d5 + 6e1345d commit 407d1ab
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.8.1] - 2022-09-27
### Added
- [#79](https://github.com/unity-sds/unity-data-services/pull/79) Collection Creation endpoint with DAPA format
### Changed
- [#80](https://github.com/unity-sds/unity-data-services/pull/80) level.1.a.missing.filename
- [#82](https://github.com/unity-sds/unity-data-services/pull/82) not honoring offset and limit in Collection query
- [#89](https://github.com/unity-sds/unity-data-services/pull/89) check pathParameters is None
### Fixed


## [1.7.0] - 2022-09-06
### Added
- [#62](https://github.com/unity-sds/unity-data-services/issues/66) Added OpenAPI spec for DAPA endpoints
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __get_collection_id(self):
if 'pathParameters' not in self.__event:
return self
path_param_dict = self.__event['pathParameters']
if 'collectionId' not in path_param_dict:
if path_param_dict is None or 'collectionId' not in path_param_dict:
return self
collection_id = path_param_dict['collectionId']
if collection_id == '*':
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="cumulus_lambda_functions",
version="1.8.0",
version="1.8.1",
packages=find_packages(),
install_requires=install_requires,
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage', 'pystac', 'python-dotenv', 'jsonschema'],
Expand Down

0 comments on commit 407d1ab

Please sign in to comment.