Skip to content

Commit 71bdbb7

Browse files
Merge branch 'release-0.19.1'
* release-0.19.1: Bumping version to 0.19.1 Don't use VersionId from HeadObject for multipart copies (#407) Bump https://github.com/astral-sh/ruff-pre-commit (#404) Bump actions/setup-python in the github-actions group (#405) Update CODEOWNERS to shared Python SDK and CLI team Add CODEOWNERS file for team review enforcement (#402) Bump actions/checkout from 6.0.2 to 7.0.0 in the github-actions group (#400) Bump https://github.com/astral-sh/ruff-pre-commit (#399) Bump codecov/codecov-action in the github-actions group (#398) Bump https://github.com/astral-sh/ruff-pre-commit (#397) Run linter over updated code
2 parents dc9d496 + b51243d commit 71bdbb7

14 files changed

Lines changed: 277 additions & 122 deletions

File tree

.changes/0.19.1.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"category": "``s3``",
4+
"description": "Only pin VersionId if supplied by caller instead of automatically using value from HeadObject response",
5+
"type": "bugfix"
6+
}
7+
]

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Python SDK and CLI shared team - all PRs require team review
2+
* @boto/sync-team-aws-python-sdk-cli-team

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
security-events: write
2121
steps:
2222
- name: "Checkout repository"
23-
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
23+
uses: "actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0"
2424
with:
2525
persist-credentials: false
2626

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
16+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
1717
with:
1818
persist-credentials: false
1919
- name: Set up Python 3.10
20-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
20+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
2121
with:
2222
python-version: "3.10"
2323
- name: Run pre-commit

.github/workflows/run-crt-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
os: [ubuntu-latest, macOS-latest, windows-latest]
2121

2222
steps:
23-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
23+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
2424
with:
2525
persist-credentials: false
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
27+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
cache: 'pip'

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
os: [ubuntu-latest, macOS-latest, windows-latest]
2121

2222
steps:
23-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
23+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
2424
with:
2525
persist-credentials: false
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
27+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
cache: 'pip'
@@ -36,6 +36,6 @@ jobs:
3636
run: |
3737
python scripts/ci/run-tests --with-cov
3838
- name: codecov
39-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2
39+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f
4040
with:
4141
directory: tests

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
security-events: write
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1919
with:
2020
persist-credentials: false
2121

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: end-of-file-fixer
88
- id: trailing-whitespace
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: 22f0422809455ec89ffdcf5a00170ba816e42ddb # frozen: v0.15.16
10+
rev: c59bba8fb259db0fec2bbb77ad8ba51ea7341b56 # frozen: v0.15.20
1111
hooks:
1212
- id: ruff-check
1313
args: [ --fix ]

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
0.19.1
6+
======
7+
8+
* bugfix:``s3``: Only pin VersionId if supplied by caller instead of automatically using value from HeadObject response
9+
10+
511
0.19.0
612
======
713

s3transfer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def __call__(self, bytes_amount):
145145
from s3transfer.exceptions import RetriesExceededError, S3UploadFailedError
146146

147147
__author__ = 'Amazon Web Services'
148-
__version__ = '0.19.0'
148+
__version__ = '0.19.1'
149149

150150

151151
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)