File tree Expand file tree Collapse file tree 8 files changed +27
-8
lines changed Expand file tree Collapse file tree 8 files changed +27
-8
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 1.24.0] - 2024-12-17
12
+
11
13
### Added
12
14
13
15
- Added options --target-resource-group and --force-move-resource-group to backup ship, restore and schedule enable.
Original file line number Diff line number Diff line change 1
1
ARG BUILDER=registry.access.redhat.com/ubi8/ubi
2
2
FROM $BUILDER as builder
3
3
4
- ENV LINSTOR_CLI_VERSION 1.23.2
5
- ENV PYTHON_LINSTOR_VERSION 1.23.1
4
+ ENV LINSTOR_CLI_VERSION 1.24.0
5
+ ENV PYTHON_LINSTOR_VERSION 1.24.0
6
6
7
7
ENV LINSTOR_CLI_PKGNAME linstor-client
8
8
ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi8/ubi
42
42
MAINTAINER Roland Kammerer <
[email protected] >
43
43
44
44
# ENV can not be shared between builder and "main"
45
- ENV LINSTOR_CLI_VERSION 1.23.2
45
+ ENV LINSTOR_CLI_VERSION 1.24.0
46
46
ARG release=1
47
47
48
48
LABEL name="linstor-client" \
Original file line number Diff line number Diff line change
1
+ linstor-client (1.24.0-1) experimental; urgency=medium
2
+
3
+ [ Gabor Hernadi ]
4
+ * DRBD-Options: Fix help text
5
+ * Backup: Added --target-resource-group and --force-move-resource-group
6
+
7
+ [ Rene Peinthor ]
8
+ * linstor-cloudstack: add orphaned resources helper script
9
+ * rscdfn-clone: add --layer-list argument
10
+ * rscdfn: add resource-group argument to clone
11
+ * vlm-list: change column order rsc,node
12
+ * rsc-dfn-list: show layers as column
13
+ * rsc-list: show layers instead of port in table
14
+ * resource/volume-list: show multiple primaries as yellow
15
+
16
+ -- Rene Peinthor <
[email protected] > Tue, 17 Dec 2024 10:12:23 +0000
17
+
1
18
linstor-client (1.23.2-1) experimental; urgency=medium
2
19
3
20
* Fix missing commands.utils package
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Architecture: all
19
19
Depends: ${misc:Depends},
20
20
python3-natsort,
21
21
python3-setuptools,
22
- python-linstor (>=1.23.1 ),
22
+ python-linstor (>=1.24.0 ),
23
23
${python3:Depends}
24
24
Description: Linstor client command line tool
25
25
This is a command client that communicates with the Linstor controller
Original file line number Diff line number Diff line change 21
21
Global constants for linstor client
22
22
"""
23
23
24
- VERSION = "1.23.2 "
24
+ VERSION = "1.24.0 "
25
25
26
26
try :
27
27
from linstor_client .consts_githash import GITHASH
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH
6
6
build_requires =
7
7
python3-setuptools
8
8
requires =
9
- python-linstor >= 1.23.1
9
+ python-linstor >= 1.24.0
10
10
11
11
[flake8]
12
12
count = True
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
6
6
build_requires =
7
7
python2-setuptools
8
8
requires =
9
- python-linstor >= 1.23.1
9
+ python-linstor >= 1.24.0
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ def gen_data_files():
198
198
"linstor_client.commands.utils" ,
199
199
],
200
200
install_requires = [
201
- "python-linstor>=1.23.1 "
201
+ "python-linstor>=1.24.0 "
202
202
],
203
203
py_modules = ["linstor_client_main" ],
204
204
scripts = ["scripts/linstor" ],
You can’t perform that action at this time.
0 commit comments