Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Build the distribution
id: build
run: nox -vs build
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: |
sudo apt-get -y update
sudo apt-get -y install patchelf scons
python -m pip install --upgrade nox pdm
python -m pip install --upgrade nox pdm==2.26.2
git config --global --add safe.directory '*'
- name: Bundle the distribution
id: bundle
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Bundle the distribution
id: bundle
shell: bash
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Build Dockerfile
run: nox -vs generate_dockerfile
- name: Set up QEMU
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Run linters
run: nox -vs lint
- name: Validate new changelog entries
Expand All @@ -47,7 +47,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Build the distribution
run: nox -vs build
cleanup_buckets:
Expand All @@ -70,7 +70,7 @@ jobs:
cache: "pip"
- name: Install dependencies
if: ${{ env.B2_TEST_APPLICATION_KEY != '' && env.B2_TEST_APPLICATION_KEY_ID != '' }} # TODO: skip this whole job instead
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Find and remove old buckets
if: ${{ env.B2_TEST_APPLICATION_KEY != '' && env.B2_TEST_APPLICATION_KEY_ID != '' }} # TODO: skip this whole job instead
run: nox -vs cleanup_buckets
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
run: |
brew install fish
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Run unit tests
run: nox -vs unit -p ${{ matrix.python-version }}
- name: Run integration tests (without secrets)
Expand All @@ -137,7 +137,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Generate Dockerfile
run: nox -vs generate_dockerfile
- name: Set up QEMU
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
run: |
sudo apt-get -y update
sudo apt-get -y install patchelf scons
python -m pip install --upgrade nox pdm
python -m pip install --upgrade nox pdm==2.26.2
git config --global --add safe.directory '*'
- name: Bundle the distribution
id: bundle
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
with:
python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
- name: Install dependencies
run: python -m pip install --upgrade nox pdm
run: python -m pip install --upgrade nox pdm==2.26.2
- name: Bundle the distribution
id: bundle
shell: bash
Expand Down Expand Up @@ -256,6 +256,6 @@ jobs:
run: |
sudo apt-get update -y
sudo apt-get install -y graphviz plantuml
python -m pip install --upgrade nox pdm
python -m pip install --upgrade nox pdm==2.26.2
- name: Build the docs
run: nox --non-interactive -vs doc
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@ upcoming release can be found in [changelog.d](changelog.d).

<!-- towncrier release notes start -->

## [4.5.0](https://github.com/Backblaze/B2_Command_Line_Tool/releases/tag/v4.5.0) - 2026-01-08


### Removed

- Dropped support for python 3.8.

### Fixed

- Fixed SystemError buffer overflow crash on Python 3.14+ caused by rst2ansi's terminal size detection bug. The CLI now gracefully handles this error and continues to function normally. ([#1119](https://github.com/Backblaze/B2_Command_Line_Tool/issues/1119))
- Disable Tqdm semaphore leak workaround for MacOS >= 15.7.2, as apparently it is no longer an issue in newer versions.

### Infrastructure

- Added Python 3.14 support to CI/CD pipeline and test matrix.
- Update CI to not use deprecated `macos-13` runner.
- Use b2sdk pytest plugin and utilities in tests.


## [4.4.2](https://github.com/Backblaze/B2_Command_Line_Tool/releases/tag/v4.4.2) - 2025-09-10


Expand Down
1 change: 0 additions & 1 deletion changelog.d/+b2sdk_testing.infrastructure.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+macos-13-deprecated.infrastructure.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+python-3.14-support.infrastructure.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+python38.removed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+tqdm-closer-new-macos.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/1119.fixed.md

This file was deleted.

Loading