Skip to content

release/1.10.1 #113

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

Merged
merged 1 commit into from
Jan 23, 2023
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.10.1] - 2023-01-23
### Fixed
- [#112](https://github.com/unity-sds/unity-data-services/pull/112) update dockerfile base images

## [1.10.0] - 2022-12-19
### Added
- [#104](https://github.com/unity-sds/unity-data-services/pull/104) added Updated time in collection & item STAC dictionaries
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.jpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.7
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.9
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
RUN apt-get update -y && apt-get install vim -y

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.public
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.9
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
RUN apt-get update -y && apt-get install vim -y

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_download_granules.jpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.7
FROM cae-artifactory.jpl.nasa.gov:17001/python:3.9
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
RUN apt-get update -y && apt-get install vim -y

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_download_granules.public
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.9
MAINTAINER Wai Phyo <wai.phyo@jpl.nasa.gov>
RUN apt-get update -y && apt-get install vim -y

Expand Down
2 changes: 1 addition & 1 deletion docker/Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- building docker file for Granules Download

docker build -f ./docker/Dockerfile_download_granules.jpl -t cumulus_unity:1.0.0-t1 .
docker build -f ./docker/Dockerfile_download_granules.jpl -t cumulus_unity:1.10.1-t1 .

- running docker file for Granules Download
- update the environment variables
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose-granules-upload.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
cumulus_granules_upload:
image: ghcr.io/unity-sds/unity-data-services:1.7.0
image: ghcr.io/unity-sds/unity-data-services:1.10.1
volumes:
- /tmp/snpp_upload_test_1:/etc/snpp_upload_test_1
command: ["upload"]
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.10.0",
version="1.10.1",
packages=find_packages(),
install_requires=install_requires,
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage', 'pystac', 'python-dotenv', 'jsonschema'],
Expand Down