Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing TARDIS 0.8.1 release #315

Merged
merged 8 commits into from
Nov 29, 2023
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
9 changes: 5 additions & 4 deletions .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,13 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Add Python 3.11 to GITHUB_PATH
run: echo "/Library/Frameworks/Python.framework/Versions/3.11/bin" >> $GITHUB_PATH
- name: Install dependencies on ${{ matrix.platform }}
run: |
export PATH=/Library/Frameworks/Python.framework/Versions/3.11/bin:$PATH
python3 -m pip install --upgrade pip
python3 -m pip install .[contrib]
python3 -m pip install coverage codecov
python3.11 -m pip install --upgrade pip
python3.11 -m pip install .[contrib]
python3.11 -m pip install coverage codecov
- name: Test with unittest on ${{ matrix.platform }}
run: |
coverage run -m unittest -v
9 changes: 6 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Metadata for citation of this software according to the CFF format (https://citation-file-format.github.io/)
cff-version: 1.1.0
message: If you use this software, please cite it using these metadata.
title: "MatterMiners/tardis: 0.8.0"
title: "MatterMiners/tardis: 0.8.1"
doi: 10.5281/zenodo.8426261
authors:
- given-names: Manuel
Expand Down Expand Up @@ -40,7 +40,10 @@ authors:
- given-names: Peter
family-names: Wienemann
affiliation: University of Bonn
version: 0.8.0
date-released: 2023-10-10
- given-names:Raphael
family-names: Kleinemühl
affiliation: University of Wuppertal
version: 0.8.1
date-released: 2023-11-29
repository-code: https://github.com/MatterMiners/tardis
license: MIT
8 changes: 5 additions & 3 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
.. Created by changelog.py at 2023-11-28, command
.. Created by changelog.py at 2023-11-29, command
'/Users/giffler/.cache/pre-commit/repor6pnmwlm/py_env-python3.10/bin/changelog docs/source/changes compile --categories Added Changed Fixed Security Deprecated --output=docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'

#########
CHANGELOG
#########

[Unreleased] - 2023-11-28
=========================
[0.8.1] - 2023-11-29
====================

Changed
-------

* Add drone_uuid tag to the telegraf record
* Bump pyauditor version to 0.3.1
* Enable support for SSH command restrictions in Moab adapter

Fixed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
category: fixed
summary: "Fix type of sshexecutor stdin parameter"
description: |
In the SSHExecutor it was assumed that asyncssh requires stdin to be in bytes format.
However, according to the documentation it is required to be in string format. Therefore, the type of stdin parameter
has been changed from byte format into string format.
description: "In the SSHExecutor it was assumed that asyncssh requires stdin to be\
\ in bytes format. \nHowever, according to the documentation it is required to be\
\ in string format. Therefore, the type of stdin parameter \nhas been changed from\
\ byte format into string format.\n"
pull requests:
- 314
version: 0.8.1
11 changes: 11 additions & 0 deletions docs/source/changes/318.add_drone_uuid_telegraf_tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
category: changed
summary: "Add drone_uuid tag to the telegraf record"
description: "So far, the telegraf plugin sends only state changes of the drones to\
\ telegraf, however it does not include \nthe `drone_uuid`, so that the information\
\ cannot be associated to a specific drone. Now, the `drone_uuid` is added as \n\
a tag to the record send to telegraf.\n"
issues:
- 313
pull requests:
- 318
version: 0.8.1
9 changes: 9 additions & 0 deletions docs/source/changes/321.bump_pyauditor_version_to_0_3_1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
category: changed
summary: "Bump pyauditor version to 0.3.1"
description: |
Bump `pyauditor` to version 0.3.1
issues:
- 320
pull requests:
- 321
version: 0.8.1
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
category: changed
summary: "Enable support for SSH command restrictions in Moab adapter"
description: |
The NEMO HPC is going to enable 2FA on the login nodes and SSH can be restricted to certain commands only. This
requires to avoid `&&` and `$(whoami)` in commands.
description: "The NEMO HPC is going to enable 2FA on the login nodes and SSH can be\
\ restricted to certain commands only. This \nrequires to avoid `&&` and `$(whoami)`\
\ in commands.\n"
pull requests:
- 322
version: 0.8.1
2 changes: 2 additions & 0 deletions docs/source/changes/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- semver: 0.8.1
date: '2023-11-29'
- semver: 0.8.0
date: '2023-10-05'
- semver: 0.7.1
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def get_cryptography_version():
"kubernetes_asyncio",
"pydantic<2.0.0",
"asyncstdlib",
"async-timeout",
"typing_extensions",
"python-auditor==0.3.1",
"tzlocal",
Expand Down
2 changes: 1 addition & 1 deletion tardis/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__summary__ = "Transparent Adaptive Resource Dynamic Integration System"
__url__ = "https://github.com/matterminers/tardis"

__version__ = "0.8.0"
__version__ = "0.8.1"
__author__ = "Manuel Giffels, Matthias Schnepf"
__email__ = "giffels@gmail.com"
__copyright__ = "2018 - 2023 %s and Contributors" % __author__
Expand Down