[PR #91] [MERGED] Version 1.3.0 #170

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

📋 Pull Request Information

Original PR: https://github.com/proxmoxer/proxmoxer/pull/91
Author: @jhollowe
Created: 3/13/2022
Status: Merged
Merged: 3/14/2022
Merged by: @jhollowe

Base: masterHead: develop


📝 Commits (10+)

  • d6d26a5 Add config for formatter and linter
  • 3e41884 Add devcontainer/vscode config for formatting and linting
  • 53e02e0 Add pre-commit hooks for formatting and linting
  • 6cc2fec Add baseline for bandit
  • 1622df9 Add environment linting pre-commit hooks
  • 2628bcf Merge branch 'master' into develop
  • 309b650 Allow backend to be selected with any case
  • 94d4f77 Merge pull request #70 from jhollowe/standardize-backend-name
  • 2a91089 test ipv6
  • b3dfc44 IPv6

📊 Changes

33 files changed (+1802 additions, -963 deletions)

View changed files

📝 .devcontainer/devcontainer.json (+2 -4)
.devcontainer/setup.sh (+10 -0)
.git-blame-ignore-revs (+4 -0)
.github/workflows/ci.yaml (+73 -0)
.pre-commit-config.yaml (+60 -0)
📝 .vscode/settings.json (+19 -1)
CHANGELOG.md (+99 -0)
📝 MANIFEST.in (+1 -0)
📝 README.rst (+29 -283)
📝 dev_requirements.txt (+1 -0)
📝 proxmoxer/__init__.py (+5 -5)
📝 proxmoxer/backends/__init__.py (+3 -3)
proxmoxer/backends/base_ssh.py (+0 -89)
proxmoxer/backends/command_base.py (+146 -0)
📝 proxmoxer/backends/https.py (+185 -66)
proxmoxer/backends/local.py (+20 -0)
📝 proxmoxer/backends/openssh.py (+40 -37)
📝 proxmoxer/backends/ssh_paramiko.py (+32 -39)
📝 proxmoxer/core.py (+62 -30)
pyproject.toml (+3 -0)

...and 13 more files

📄 Description

No description provided


🔄 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/91 **Author:** [@jhollowe](https://github.com/jhollowe) **Created:** 3/13/2022 **Status:** ✅ Merged **Merged:** 3/14/2022 **Merged by:** [@jhollowe](https://github.com/jhollowe) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`d6d26a5`](https://github.com/proxmoxer/proxmoxer/commit/d6d26a54bf48ab514143b82bf2e825fc993150c1) Add config for formatter and linter - [`3e41884`](https://github.com/proxmoxer/proxmoxer/commit/3e418845e47ac46d3bcd422c0b8260ee538d4da8) Add devcontainer/vscode config for formatting and linting - [`53e02e0`](https://github.com/proxmoxer/proxmoxer/commit/53e02e0058f5e5cac8c5ed35870f18e47ed9d73a) Add pre-commit hooks for formatting and linting - [`6cc2fec`](https://github.com/proxmoxer/proxmoxer/commit/6cc2fec251d95bc0d2b2575f3e662cd7a934230f) Add baseline for bandit - [`1622df9`](https://github.com/proxmoxer/proxmoxer/commit/1622df9ae36e8751c84c6ff3272ba94845898924) Add environment linting pre-commit hooks - [`2628bcf`](https://github.com/proxmoxer/proxmoxer/commit/2628bcfcb3ce5d3bc72e2e325f228de157e0ea0a) Merge branch 'master' into develop - [`309b650`](https://github.com/proxmoxer/proxmoxer/commit/309b650dedb2966b0e7b0c394752764e27fd1694) Allow backend to be selected with any case - [`94d4f77`](https://github.com/proxmoxer/proxmoxer/commit/94d4f77649af81e559cfa2197d60ed29937c465d) Merge pull request #70 from jhollowe/standardize-backend-name - [`2a91089`](https://github.com/proxmoxer/proxmoxer/commit/2a910897de7752b78bb6e4467459347f85ad2e65) test ipv6 - [`b3dfc44`](https://github.com/proxmoxer/proxmoxer/commit/b3dfc44831bb43bf395ee00f629bc715c7909489) IPv6 ### 📊 Changes **33 files changed** (+1802 additions, -963 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/devcontainer.json` (+2 -4) ➕ `.devcontainer/setup.sh` (+10 -0) ➕ `.git-blame-ignore-revs` (+4 -0) ➕ `.github/workflows/ci.yaml` (+73 -0) ➕ `.pre-commit-config.yaml` (+60 -0) 📝 `.vscode/settings.json` (+19 -1) ➕ `CHANGELOG.md` (+99 -0) 📝 `MANIFEST.in` (+1 -0) 📝 `README.rst` (+29 -283) 📝 `dev_requirements.txt` (+1 -0) 📝 `proxmoxer/__init__.py` (+5 -5) 📝 `proxmoxer/backends/__init__.py` (+3 -3) ➖ `proxmoxer/backends/base_ssh.py` (+0 -89) ➕ `proxmoxer/backends/command_base.py` (+146 -0) 📝 `proxmoxer/backends/https.py` (+185 -66) ➕ `proxmoxer/backends/local.py` (+20 -0) 📝 `proxmoxer/backends/openssh.py` (+40 -37) 📝 `proxmoxer/backends/ssh_paramiko.py` (+32 -39) 📝 `proxmoxer/core.py` (+62 -30) ➕ `pyproject.toml` (+3 -0) _...and 13 more files_ </details> ### 📄 Description _No description provided_ --- <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:46 +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#170
No description provided.