Skip to content

Commit 6073356

Browse files
authored
Merge pull request #92 from podaac/release/1.5.0
Release/1.5.0
2 parents 053d0e9 + 301c3c4 commit 6073356

File tree

12 files changed

+688
-372
lines changed

12 files changed

+688
-372
lines changed

.github/workflows/build-pipeline.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ jobs:
9999
-Dsonar.python.version=3.7,3.8,3.9
100100
- name: Run Snyk on Python
101101
uses: snyk/actions/python-3.8@master
102-
continue-on-error: true # To make sure that SARIF upload gets called
103102
env:
104103
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
105104
with:
105+
command: monitor
106106
args: >
107-
--severity-threshold=high
108-
--sarif-file-output=python.sarif
107+
--org=${{ secrets.SNYK_ORG_ID }}
108+
--project-name=${{ github.repository }}
109109
- name: Commit Version Bump
110110
# If building develop, a release branch, or main then we commit the version bump back to the repo
111111
if: |
@@ -118,14 +118,15 @@ jobs:
118118
git commit -am "/version ${{ env.software_version }}"
119119
git push
120120
- name: Push Tag
121-
uses: actions-ecosystem/action-push-tag@v1
122121
if: |
123122
github.ref == 'refs/heads/develop' ||
124123
github.ref == 'refs/heads/main' ||
125124
startsWith(github.ref, 'refs/heads/release')
126-
with:
127-
tag: ${{ env.software_version }}
128-
message: "Version ${{ env.software_version }}"
125+
run: |
126+
git config user.name "${GITHUB_ACTOR}"
127+
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
128+
git tag -a "${{ env.software_version }}" -m "Version ${{ env.software_version }}"
129+
git push origin "${{ env.software_version }}"
129130
- name: Publish UMM-S with new version
130131
uses: podaac/[email protected]
131132
if: |

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Fixed
1313
### Security
1414

15-
## [0.4.0]
15+
## [1.5.0]
16+
### Added
17+
- Added Shapefile option to UMM-S entry
18+
- Added optional coordinate variable params
19+
- [issues/78](https://github.com/podaac/l2ss-py/issues/72): Pass coordinate variables from service to l2ss-py
20+
### Changed
21+
- Updated dependency versions
22+
- [issues/88](https://github.com/podaac/l2ss-py/issues/88): Build pipeline manually pushes tag rather than use action-push-tag
23+
### Deprecated
24+
### Removed
25+
### Fixed
26+
- [issues/72](https://github.com/podaac/l2ss-py/issues/72). Fix SMAP_RSS_L2_SSS_V4 subsetting, changed calculate chunk function.
27+
- [issues/9](https://github.com/podaac/l2ss-py/issues/9). Determinate coordinate variables using cf_xarray.
28+
### Security
29+
- Changed CLI step in build action to use snyk monitor so that report is uploaded to SNYK podaac org
30+
31+
## [1.4.0]
1632
### Added
1733
- [issues/46](https://github.com/podaac/l2ss-py/issues/46). Flattening of h5py file.
1834
- [issues/39](https://github.com/podaac/l2ss-py/issues/39): Exposed shapefile subsetting capability to Harmony
1935
- [issues/58](https://github.com/podaac/l2ss-py/issues/58). Expand coordinates to accomodate OMI files
2036
latitude variable in OMI has a capital L for Latitude that needs to be added to the list in
2137
get_coordinate_variable_names.
38+
2239
### Changed
2340
### Deprecated
2441
### Removed
2542
- Remove OCO3 test. Get_coordinate_variables passed OMI and fails OCO3 because OCO3 has a multiple Latitude variable. Subset with bbox method is not
2643
applied properly to OCO3. Further manipulating will need to be done - OMI is a higher priority.
2744
### Fixed
28-
### Security
45+
- [issues/61](https://github.com/podaac/l2ss-py/issues/61). Variables without dimensions should be included in the output subset. Previous code was
46+
adding dimension to variables in tropomi and SNDR as well as not have enough memory to {SCALAR} dimensions.
2947

3048
## [1.3.1]
3149
### Added

cmr/l2ss_cmr_umm_s.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,18 @@
5757
"SpatialSubset": {
5858
"BoundingBox": {
5959
"AllowMultipleValues": false
60-
}
60+
},
61+
"Shapefile": [
62+
{
63+
"Format": "ESRI"
64+
},
65+
{
66+
"Format": "KML"
67+
},
68+
{
69+
"Format": "GeoJSON"
70+
}
71+
]
6172
},
6273
"TemporalSubset": {
6374
"AllowMultipleValues": false

cmr/ops_associations.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,9 @@ C2205121384-POCLOUD
4343
C2152044763-POCLOUD
4444
C2147947806-POCLOUD
4545
C2152046451-POCLOUD
46+
C2205620319-POCLOUD
47+
C2205618975-POCLOUD
48+
C2205121485-POCLOUD
49+
C2205121520-POCLOUD
50+
C2075141605-POCLOUD
51+
C2251465126-POCLOUD

cmr/uat_associations.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ C1242387601-POCLOUD
3333
C1242387592-POCLOUD
3434
C1238658051-POCLOUD
3535
C1238657959-POCLOUD
36+
C1238621087-POCLOUD

0 commit comments

Comments
 (0)