Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
amarouane committed Feb 17, 2021
1 parent d54b985 commit 8a77139
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# Overview
DMR++ files generator is a cloud based activity that generate DMRPP files from netCDF4 and HDF files
## 📖 Documentation
- Release note [v1.0.6](https://ghrcdaac.github.io/dmrpp-generator/).
- Release note [v1.0.5](https://ghrcdaac.github.io/dmrpp-generator/).
- Release note [v1.0.4](https://ghrcdaac.github.io/dmrpp-generator/).

Expand Down
27 changes: 24 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@

# 📖 Release note 5
# 📖 Release notes

## v1.0.6
This release:
* Fixes the issue of AWS provider [issue#10](https://github.com/ghrcdaac/dmrpp-generator/issues/10)
* Reads from `url_path` key passed in the payload. Also, the provider was taking off from the main.tf

## v1.0.5
This release fixes the problem adding a type of meta data for the dmrpp file and also changing some spacings.

## v1.0.4
This release fixes the problem of assuming the granuleId is the same as the file name [issue#9](https://github.com/ghrcdaac/dmrpp-generator/issues/9)

## 🏃 Migration Steps to v1.0.6
Change the source url in your terraform file to point to v1.0.6 release
```code
module "dmrpp-generator" {
source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.0.6/dmrpp-generator.zip"
...
}
```
Change the value of your docker image to point to v1.0.6 tag
```code
module "dmrpp-generator" {
...
docker_image = "ghrcdaac/dmrpp-generator:v1.0.6"
}
```

## 🏃 Migration Steps to v1.0.5
Change the source url in your terraform file to point to v1.0.5 release
Expand All @@ -16,7 +37,7 @@ source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.0.5/d
...
}
```
Change the value of your docker image to point to v1.0.4 tag
Change the value of your docker image to point to v1.0.5 tag
```code
module "dmrpp-generator" {
...
Expand Down Expand Up @@ -80,4 +101,4 @@ The workflow is accepting the whole payload
],
"Next": "<Your next Step>"
}
```
```
6 changes: 0 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ terraform {
}
}

provider "aws" {
region = var.region
profile = var.aws_profile
}


module "dmrpp_service" {
source = "./modules/dmrpp_service"
prefix = var.prefix
Expand Down

0 comments on commit 8a77139

Please sign in to comment.