Skip to content

Commit

Permalink
Merge pull request #604 from ASFHyP3/develop
Browse files Browse the repository at this point in the history
Release v0.3.5
  • Loading branch information
jtherrmann authored Jul 8, 2024
2 parents b0bd0a8 + ed1c591 commit 1e26542
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 33 deletions.
16 changes: 8 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
- package-ecosystem: pip
directory: /
schedule:
interval: "daily"
interval: weekly
labels:
- "bumpless"
- package-ecosystem: "github-actions"
directory: "/"
- bumpless
- package-ecosystem: github-actions
directory: /
schedule:
interval: "daily"
interval: weekly
labels:
- "bumpless"
- bumpless
4 changes: 1 addition & 3 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,4 @@ on:

jobs:
call-changelog-check-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
secrets:
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ASFHyP3/actions/.github/workflows/[email protected]
2 changes: 1 addition & 1 deletion .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
call-create-jira-issue-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.8.3
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.11.2
secrets:
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-stac-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:

call-bump-version-workflow:
needs: deploy-stac-api
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.8.3
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.11.2
secrets:
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}
2 changes: 1 addition & 1 deletion .github/workflows/labeled-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ on:

jobs:
call-labeled-pr-check-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.8.3
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.11.2
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
call-release-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.8.3
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.11.2
with:
release_prefix: ASF STAC
secrets:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: make install
Expand All @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: make install
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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).

## [0.3.5]
### Changed
- Dependency upgrades.

## [0.3.4]
### Changed
- HAND license changed to CC0 from CCBy 4.0 in `collections/glo-30-hand/glo-30-hand.json` to match NASA data publishing guidelines.
Expand Down
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,12 @@ flake8:
flake8 --max-line-length=120

cfn-lint:
cfn-lint --template `find . -name cloudformation.yml` --info --ignore-checks W3002
# Ignore "W1011 Use dynamic references over parameters for secrets" because we store secrets
# using GitHub Secrets.
#
# Ignore E3691 for validating the database instance engine and version, because RDS automatically
# applies minor version upgrades to keep the deployed database instance up-to-date, so we do not
# need to keep the engine version specified in the CloudFormation template up-to-date.
#
# See https://github.com/aws-cloudformation/cfn-lint/blob/main/docs/rules.md
cfn-lint --template `find . -name cloudformation.yml` --info --ignore-checks W3002 W1011 E3691
2 changes: 1 addition & 1 deletion apps/database/cloudformation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Resources:
VPCSecurityGroups:
- !Ref DatabaseSecurityGroup
Engine: postgres
EngineVersion: '14.4'
EngineVersion: '14.10'
MasterUsername: postgres
MasterUserPassword: !Ref DatabaseAdminPassword
Port: '5432'
Expand Down
8 changes: 4 additions & 4 deletions requirements-apps-api.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mangum==0.17.0
stac-fastapi.api==2.4.8
stac-fastapi.extensions==2.4.8
stac-fastapi.pgstac==2.4.10
stac-fastapi.types==2.4.8
stac-fastapi.api==2.5.5.post1
stac-fastapi.extensions==2.5.5.post1
stac-fastapi.pgstac==2.5.0
stac-fastapi.types==2.5.5.post1
2 changes: 1 addition & 1 deletion requirements-run-codebuild.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
boto3==1.33.4
boto3==1.34.140
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
-r requirements-apps-api.txt
-r requirements-run-codebuild.txt
./lib/asf-stac-util/
boto3==1.33.4
cfn-lint==0.83.3
flake8==6.1.0
boto3==1.34.140
cfn-lint==1.5.0
flake8==7.1.0
pypgstac[psycopg]==0.7.10
pystac==1.9.0
pytest==7.4.3
requests==2.31.0
shapely==2.0.2
tqdm==4.66.1
uvicorn==0.24.0.post1
pystac==1.10.1
pytest==8.2.2
requests==2.32.3
shapely==2.0.4
tqdm==4.66.4
uvicorn==0.30.1

0 comments on commit 1e26542

Please sign in to comment.