Skip to content

Commit

Permalink
shared: Tweak checksum types (#3888)
Browse files Browse the repository at this point in the history
  • Loading branch information
nl0 authored Feb 23, 2024
1 parent 7a82dfc commit 47055f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions py-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ where verb is one of

## Changes

- [Changed] Tweak checksum types ([#3888](https://github.com/quiltdata/quilt/pull/3888))
- [Added] Bootstrap `quilt_shared` package ([#3849](https://github.com/quiltdata/quilt/pull/3849))
4 changes: 2 additions & 2 deletions py-shared/src/quilt_shared/pkgpush.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ class S3CopyLambdaParams(pydantic.BaseModel):


class ChecksumType(str, enum.Enum):
MP = "QuiltMultipartSHA256"
SP = "SHA256"
SHA256 = "SHA256" # legacy
SHA256_CHUNKED = "sha2-256-chunked"


class Checksum(pydantic.BaseModel):
Expand Down

0 comments on commit 47055f7

Please sign in to comment.