[PR #127] [MERGED] Release v2.0.0 #186

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

📋 Pull Request Information

Original PR: https://github.com/proxmoxer/proxmoxer/pull/127
Author: @jhollowe
Created: 11/27/2022
Status: Merged
Merged: 11/28/2022
Merged by: @jhollowe

Base: masterHead: release/2.0.0


📝 Commits (10+)

  • 3a72934 Remove now-unsupported python versions from CI
  • b1ea20c Fix config file not being used in openssh
  • e3ab813 Remove deprecated ProxmoxHTTPTicketAuth
  • 1c68c64 Merge pull request #94 from jhollowe/openssh-config-file
  • 0e91346 Merge pull request #95 from jhollowe/remove-ticket-auth
  • bc9a13b Add docstring extension and fix devcontainer setup
  • 9719fd1 Update test requirements for pytest
  • 14ae72b Remove old nose tests
  • b92676f Add https helper tests and start of https tests
  • 8fe079d Add platform detection before using shlex functions

📊 Changes

43 files changed (+2979 additions, -1172 deletions)

View changed files

.bandit (+8 -0)
.coveragerc (+0 -3)
📝 .devcontainer/devcontainer.json (+4 -2)
📝 .devcontainer/setup.sh (+4 -0)
📝 .github/workflows/ci.yaml (+9 -8)
📝 .pre-commit-config.yaml (+4 -4)
.travis.yml (+0 -13)
📝 .vscode/settings.json (+22 -1)
.vscode/tasks.json (+95 -0)
📝 CHANGELOG.md (+23 -1)
📝 README.rst (+10 -5)
📝 proxmoxer/__init__.py (+1 -1)
📝 proxmoxer/backends/command_base.py (+38 -29)
📝 proxmoxer/backends/https.py (+69 -104)
📝 proxmoxer/backends/local.py (+4 -0)
📝 proxmoxer/backends/openssh.py (+16 -13)
📝 proxmoxer/backends/ssh_paramiko.py (+8 -4)
📝 proxmoxer/core.py (+70 -44)
proxmoxer/tools/__init__.py (+6 -0)
proxmoxer/tools/tasks.py (+84 -0)

...and 23 more files

📄 Description

2.0.0 (2022-11-27)

  • Improvement (all): Convert testing framework to use pytest (John Hollowell)
  • Improvement (all): Remove Python 2.x support (minimum version of 3.7) (John Hollowell)
  • Improvement (all): Refactor code to Python 3 standards (John Hollowell)
  • Bugfix (all): Remove None values from request data and params (Kristian Heljas)
  • Addition (tools): Added Task tools (John Hollowell)
  • Bugfix (all): Allow specifying resource_id as 0 (John Bergvall)
  • Improvement (all): Remove ProxmoxResourceBase (John Hollowell)
  • Bugfix (all): Add platform detection before using shlex functions (Kevin Boyd)
  • Improvement (https): Added path_prefix argument which is appended after the root of the URL (before api2/) (John Hollowell)

Breaking Changes

  • ProxmoxResourceBase removed
  • proxmoxer.backends.https.AuthenticationError moved to proxmoxer.AuthenticationError
  • Removed ProxmoxHTTPTicketAuth and its arguments auth_token and csrf_token
  • keyword arguments to backends order changed (should not affect users specifying arguments by name)

🔄 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/127 **Author:** [@jhollowe](https://github.com/jhollowe) **Created:** 11/27/2022 **Status:** ✅ Merged **Merged:** 11/28/2022 **Merged by:** [@jhollowe](https://github.com/jhollowe) **Base:** `master` ← **Head:** `release/2.0.0` --- ### 📝 Commits (10+) - [`3a72934`](https://github.com/proxmoxer/proxmoxer/commit/3a729340dbc1eec16e66cbc02a27b27ee009c519) Remove now-unsupported python versions from CI - [`b1ea20c`](https://github.com/proxmoxer/proxmoxer/commit/b1ea20c168961f9f573ac3831dfc1683a348f77e) Fix config file not being used in openssh - [`e3ab813`](https://github.com/proxmoxer/proxmoxer/commit/e3ab813fe44eb96b8ff63e9638a39ae4efa2024a) Remove deprecated ProxmoxHTTPTicketAuth - [`1c68c64`](https://github.com/proxmoxer/proxmoxer/commit/1c68c64371558c82042f2a1356823b75ae835dee) Merge pull request #94 from jhollowe/openssh-config-file - [`0e91346`](https://github.com/proxmoxer/proxmoxer/commit/0e913460699ad37a42ca4e6c6e975a2c586e9203) Merge pull request #95 from jhollowe/remove-ticket-auth - [`bc9a13b`](https://github.com/proxmoxer/proxmoxer/commit/bc9a13b79e42a478e571597b9a736bcf54748eda) Add docstring extension and fix devcontainer setup - [`9719fd1`](https://github.com/proxmoxer/proxmoxer/commit/9719fd1700e5914828e7f0cc89b587f16b656836) Update test requirements for pytest - [`14ae72b`](https://github.com/proxmoxer/proxmoxer/commit/14ae72bea909dee7be90c5306e7a62cf85f24bca) Remove old nose tests - [`b92676f`](https://github.com/proxmoxer/proxmoxer/commit/b92676fb7fdc67ba5b01c5c8fb176dae3b094861) Add https helper tests and start of https tests - [`8fe079d`](https://github.com/proxmoxer/proxmoxer/commit/8fe079d395215cc2ebde9401b95679234dd43be2) Add platform detection before using shlex functions ### 📊 Changes **43 files changed** (+2979 additions, -1172 deletions) <details> <summary>View changed files</summary> ➕ `.bandit` (+8 -0) ➖ `.coveragerc` (+0 -3) 📝 `.devcontainer/devcontainer.json` (+4 -2) 📝 `.devcontainer/setup.sh` (+4 -0) 📝 `.github/workflows/ci.yaml` (+9 -8) 📝 `.pre-commit-config.yaml` (+4 -4) ➖ `.travis.yml` (+0 -13) 📝 `.vscode/settings.json` (+22 -1) ➕ `.vscode/tasks.json` (+95 -0) 📝 `CHANGELOG.md` (+23 -1) 📝 `README.rst` (+10 -5) 📝 `proxmoxer/__init__.py` (+1 -1) 📝 `proxmoxer/backends/command_base.py` (+38 -29) 📝 `proxmoxer/backends/https.py` (+69 -104) 📝 `proxmoxer/backends/local.py` (+4 -0) 📝 `proxmoxer/backends/openssh.py` (+16 -13) 📝 `proxmoxer/backends/ssh_paramiko.py` (+8 -4) 📝 `proxmoxer/core.py` (+70 -44) ➕ `proxmoxer/tools/__init__.py` (+6 -0) ➕ `proxmoxer/tools/tasks.py` (+84 -0) _...and 23 more files_ </details> ### 📄 Description ## 2.0.0 (2022-11-27) * Improvement (all): Convert testing framework to use pytest ([John Hollowell](https://github.com/jhollowe)) * Improvement (all): Remove Python 2.x support (minimum version of 3.7) ([John Hollowell](https://github.com/jhollowe)) * Improvement (all): Refactor code to Python 3 standards ([John Hollowell](https://github.com/jhollowe)) * Bugfix (all): Remove None values from request data and params ([Kristian Heljas](https://github.com/kristianheljas)) * Addition (tools): Added Task tools ([John Hollowell](https://github.com/jhollowe)) * Bugfix (all): Allow specifying resource_id as 0 ([John Bergvall](https://github.com/johnbergvall)) * Improvement (all): Remove ProxmoxResourceBase ([John Hollowell](https://github.com/jhollowe)) * Bugfix (all): Add platform detection before using shlex functions ([Kevin Boyd](https://github.com/r3d07)) * Improvement (https): Added `path_prefix` argument which is appended after the root of the URL (before `api2/`) ([John Hollowell](https://github.com/jhollowe)) ### Breaking Changes * `ProxmoxResourceBase` removed * `proxmoxer.backends.https.AuthenticationError` moved to `proxmoxer.AuthenticationError` * Removed `ProxmoxHTTPTicketAuth` and its arguments `auth_token` and `csrf_token` * keyword arguments to backends order changed (should not affect users specifying arguments by name) --- <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:49 +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#186
No description provided.