[PR #169] [MERGED] Release v2.1.0 #197

Closed
opened 2026-02-27 15:46:52 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/proxmoxer/proxmoxer/pull/169
Author: @jhollowe
Created: 8/10/2024
Status: Merged
Merged: 8/10/2024
Merged by: @jhollowe

Base: masterHead: release/2.1.0


📝 Commits (10+)

  • eedfe7e Merge branch 'master' into develop
  • 33f78b2 Fix BytesWarning when logging response status/content
  • d547b6d Update Readme with updated example
  • ef08243 Merge pull request #132 from trekie86/develop
  • 9c69d8b Add start of Files tools (checksum gather)
  • d6af694 Adjust Tasks polling_interval
  • 3bd428d Complete Files file and fix pre-commit
  • 631564a Add tests for Files tools
  • e9c09c4 Set devcontainer to oldest supported py version (3.7)
  • 958e63f Add upload function to Files tools

📊 Changes

29 files changed (+1131 additions, -80 deletions)

View changed files

📝 .devcontainer/Dockerfile (+2 -2)
📝 .devcontainer/devcontainer.json (+28 -24)
📝 .github/workflows/ci.yaml (+1 -1)
📝 .pre-commit-config.yaml (+9 -9)
📝 .vscode/tasks.json (+27 -2)
📝 CHANGELOG.md (+11 -0)
📝 README.rst (+2 -2)
📝 proxmoxer/__init__.py (+1 -1)
📝 proxmoxer/backends/command_base.py (+5 -1)
📝 proxmoxer/backends/https.py (+6 -4)
📝 proxmoxer/backends/local.py (+1 -0)
📝 proxmoxer/backends/openssh.py (+1 -0)
📝 proxmoxer/backends/ssh_paramiko.py (+1 -0)
📝 proxmoxer/core.py (+8 -7)
📝 proxmoxer/tools/__init__.py (+1 -0)
proxmoxer/tools/files.py (+279 -0)
📝 proxmoxer/tools/tasks.py (+2 -2)
📝 setup.py (+0 -6)
📝 tests/api_mock.py (+142 -3)
tests/files_mock.py (+127 -0)

...and 9 more files

📄 Description

2.1.0 (2024-08-10)

  • Improvement (docs): Update Readme with updated example (Rob Wolinski)
  • Addition (tools): Added Files tools (John Hollowell)
  • Improvement (all): Add repr to some classes and add to tests (John Hollowell)
  • Bugfix (all): Correct metadata to match supported Python versions (3.6+) (Alexei Znamensky)
  • Bugfix (https): Fix BytesWarning when logging response status/content (Walter Doekes)
  • Improvement (meta): Update devcontainer to modern unified schema (John Hollowell)
  • Improvement (meta): Add 3.12 to CI matrix, remove 3.7 testing (John Hollowell)
  • Improvement (all): Fix improper spliting of non-exec QEMU commands (John Hollowell)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/proxmoxer/proxmoxer/pull/169 **Author:** [@jhollowe](https://github.com/jhollowe) **Created:** 8/10/2024 **Status:** ✅ Merged **Merged:** 8/10/2024 **Merged by:** [@jhollowe](https://github.com/jhollowe) **Base:** `master` ← **Head:** `release/2.1.0` --- ### 📝 Commits (10+) - [`eedfe7e`](https://github.com/proxmoxer/proxmoxer/commit/eedfe7eb26934356ba8aff7a636f4454a25ca800) Merge branch 'master' into develop - [`33f78b2`](https://github.com/proxmoxer/proxmoxer/commit/33f78b23835aba73c52632faf62fa0c88191330b) Fix BytesWarning when logging response status/content - [`d547b6d`](https://github.com/proxmoxer/proxmoxer/commit/d547b6deacdd9ac431447e6bc83a274ff1b6c792) Update Readme with updated example - [`ef08243`](https://github.com/proxmoxer/proxmoxer/commit/ef08243687dd0a2db1294070b9f8856ad77180fb) Merge pull request #132 from trekie86/develop - [`9c69d8b`](https://github.com/proxmoxer/proxmoxer/commit/9c69d8bd293cff8976582095a40e21b65ad09e81) Add start of Files tools (checksum gather) - [`d6af694`](https://github.com/proxmoxer/proxmoxer/commit/d6af694b835a3e786aca9fec2a29d8bf76242707) Adjust Tasks polling_interval - [`3bd428d`](https://github.com/proxmoxer/proxmoxer/commit/3bd428d80ac1c67598a9391f9a9a63131b45a632) Complete Files file and fix pre-commit - [`631564a`](https://github.com/proxmoxer/proxmoxer/commit/631564a4170e6038f6a8453557438da9ca67c047) Add tests for Files tools - [`e9c09c4`](https://github.com/proxmoxer/proxmoxer/commit/e9c09c464cae910fe3c6e683d24a3db8b57d1f49) Set devcontainer to oldest supported py version (3.7) - [`958e63f`](https://github.com/proxmoxer/proxmoxer/commit/958e63f5f34fa84f048e2a425af6248ebf6c79e3) Add upload function to Files tools ### 📊 Changes **29 files changed** (+1131 additions, -80 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/Dockerfile` (+2 -2) 📝 `.devcontainer/devcontainer.json` (+28 -24) 📝 `.github/workflows/ci.yaml` (+1 -1) 📝 `.pre-commit-config.yaml` (+9 -9) 📝 `.vscode/tasks.json` (+27 -2) 📝 `CHANGELOG.md` (+11 -0) 📝 `README.rst` (+2 -2) 📝 `proxmoxer/__init__.py` (+1 -1) 📝 `proxmoxer/backends/command_base.py` (+5 -1) 📝 `proxmoxer/backends/https.py` (+6 -4) 📝 `proxmoxer/backends/local.py` (+1 -0) 📝 `proxmoxer/backends/openssh.py` (+1 -0) 📝 `proxmoxer/backends/ssh_paramiko.py` (+1 -0) 📝 `proxmoxer/core.py` (+8 -7) 📝 `proxmoxer/tools/__init__.py` (+1 -0) ➕ `proxmoxer/tools/files.py` (+279 -0) 📝 `proxmoxer/tools/tasks.py` (+2 -2) 📝 `setup.py` (+0 -6) 📝 `tests/api_mock.py` (+142 -3) ➕ `tests/files_mock.py` (+127 -0) _...and 9 more files_ </details> ### 📄 Description ## 2.1.0 (2024-08-10) * Improvement (docs): Update Readme with updated example ([Rob Wolinski](https://github.com/trekie86)) * Addition (tools): Added Files tools ([John Hollowell](https://github.com/jhollowe)) * Improvement (all): Add repr to some classes and add to tests ([John Hollowell](https://github.com/jhollowe)) * Bugfix (all): Correct metadata to match supported Python versions (3.6+) ([Alexei Znamensky](https://github.com/russoz)) * Bugfix (https): Fix BytesWarning when logging response status/content ([Walter Doekes](https://github.com/wdoekes)) * Improvement (meta): Update devcontainer to modern unified schema ([John Hollowell](https://github.com/jhollowe)) * Improvement (meta): Add 3.12 to CI matrix, remove 3.7 testing ([John Hollowell](https://github.com/jhollowe)) * Improvement (all): Fix improper spliting of non-exec QEMU commands ([John Hollowell](https://github.com/jhollowe)) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:46:52 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/proxmoxer#197
No description provided.