Skip to content

Comments

Release v10.8.0#2810

Merged
asjohnston-asf merged 53 commits intomainfrom
develop
Jun 17, 2025
Merged

Release v10.8.0#2810
asjohnston-asf merged 53 commits intomainfrom
develop

Conversation

@jtherrmann
Copy link
Contributor

@jtherrmann jtherrmann commented Jun 16, 2025

williamh890 and others added 30 commits May 23, 2025 10:39
This reverts commit ae7d12c.
Co-authored-by: Jake Herrmann <jtherrmann@alaska.edu>
Co-authored-by: Andrew Johnston <asjohnston@alaska.edu>
Co-authored-by: Jake Herrmann <jtherrmann@alaska.edu>
Co-authored-by: Jake Herrmann <jtherrmann@alaska.edu>
Add cloudformation:DeleteStack to JPL deployment policy
@jtherrmann jtherrmann requested review from a team as code owners June 16, 2025 18:36
@jtherrmann jtherrmann added the minor Bump the minor version number of this project label Jun 16, 2025
@github-actions
Copy link

Developer checklist

  • Indicated the level of changes to this package by affixing one of these labels:
    • major -- Major changes to the API that may break current workflows
    • minor -- Minor changes to the API that do not break current workflows
    • patch -- Patches and bugfixes for the current version that do not break current workflows
    • bumpless -- Changes to documentation, CI/CD pipelines, etc. that don't affect the software's version
  • (If applicable) Updated the dependencies and indicated any downstream changes that are required
  • Added/updated documentation for these changes
  • Added/updated tests for these changes
  • Verified changes in test deployment and summarized results, e.g. in PR description or comments on the related issue(s)
  • If the step function code has changed, have you drained the job queue before merging?
    • For example, if the interface for a Lambda function has changed to expect different input,
      then currently running jobs (which use the old step function definition) will call the new
      function with the old input. So we must drain the job queue before deployment, so that the new
      function is only called by the new step function definition.

Reviewer checklist

  • Have all dependencies been updated?
  • Is the level of changes labeled appropriately?
  • Are all the changes described appropriately in CHANGELOG.md?
  • Has the documentation been adequately updated?
  • Are the tests adequate?
  • Have the changes been verified in the test deployment?

@jtherrmann jtherrmann mentioned this pull request Jun 16, 2025
1 task
dependabot bot and others added 2 commits June 16, 2025 21:05
Bumps the pip-deps group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.38.32` | `1.38.37` |
| [cryptography](https://github.com/pyca/cryptography) | `45.0.3` | `45.0.4` |
| [flask-cors](https://github.com/corydolphin/flask-cors) | `6.0.0` | `6.0.1` |
| [serverless-wsgi](https://github.com/logandk/serverless-wsgi) | `3.0.5` | `3.1.0` |
| [moto[dynamodb]](https://github.com/getmoto/moto) | `5.1.5` | `5.1.6` |
| [mypy](https://github.com/python/mypy) | `1.16.0` | `1.16.1` |
| [cfn-lint](https://github.com/aws-cloudformation/cfn-lint) | `1.35.4` | `1.36.0` |


Updates `boto3` from 1.38.32 to 1.38.37
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.38.32...1.38.37)

Updates `cryptography` from 45.0.3 to 45.0.4
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@45.0.3...45.0.4)

Updates `flask-cors` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/corydolphin/flask-cors/releases)
- [Changelog](https://github.com/corydolphin/flask-cors/blob/main/CHANGELOG.md)
- [Commits](corydolphin/flask-cors@6.0.0...6.0.1)

Updates `serverless-wsgi` from 3.0.5 to 3.1.0
- [Release notes](https://github.com/logandk/serverless-wsgi/releases)
- [Changelog](https://github.com/logandk/serverless-wsgi/blob/master/CHANGELOG.md)
- [Commits](logandk/serverless-wsgi@3.0.5...3.1.0)

Updates `moto[dynamodb]` from 5.1.5 to 5.1.6
- [Release notes](https://github.com/getmoto/moto/releases)
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@5.1.5...5.1.6)

Updates `mypy` from 1.16.0 to 1.16.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.16.0...v1.16.1)

Updates `cfn-lint` from 1.35.4 to 1.36.0
- [Release notes](https://github.com/aws-cloudformation/cfn-lint/releases)
- [Changelog](https://github.com/aws-cloudformation/cfn-lint/blob/main/CHANGELOG.md)
- [Commits](aws-cloudformation/cfn-lint@v1.35.4...v1.36.0)

---
updated-dependencies:
- dependency-name: boto3
  dependency-version: 1.38.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-deps
- dependency-name: cryptography
  dependency-version: 45.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-deps
- dependency-name: flask-cors
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-deps
- dependency-name: serverless-wsgi
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-deps
- dependency-name: moto[dynamodb]
  dependency-version: 5.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-deps
- dependency-name: mypy
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-deps
- dependency-name: cfn-lint
  dependency-version: 1.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@jtherrmann jtherrmann temporarily deployed to hyp3-a19-jpl-test June 17, 2025 19:11 — with GitHub Actions Inactive
@asjohnston-asf asjohnston-asf merged commit 1a0cca5 into main Jun 17, 2025
23 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

minor Bump the minor version number of this project

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants