File tree Expand file tree Collapse file tree 8 files changed +16
-8
lines changed Expand file tree Collapse file tree 8 files changed +16
-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.25.4] - 2025-04-10
12
+
11
13
### Fixed
12
14
13
15
- rd clone: fix crash if --curl was set
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.25.3
5
- ENV PYTHON_LINSTOR_VERSION 1.25.2
4
+ ENV LINSTOR_CLI_VERSION 1.25.4
5
+ ENV PYTHON_LINSTOR_VERSION 1.25.3
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.25.3
45
+ ENV LINSTOR_CLI_VERSION 1.25.4
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.25.4-1) experimental; urgency=medium
2
+
3
+ * rd/clone: fix crash if --curl was set
4
+
5
+ -- Rene Peinthor <
[email protected] > Thu, 10 Apr 2025 11:47:01 +0000
6
+
1
7
linstor-client (1.25.3-1) experimental; urgency=medium
2
8
3
9
* volume-list: show empty replication states if there is no data provided
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.25.2 ),
22
+ python-linstor (>=1.25.3 ),
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.25.3 "
24
+ VERSION = "1.25.4 "
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.25.2
9
+ python-linstor >= 1.25.3
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.25.2
9
+ python-linstor >= 1.25.3
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.25.2 "
201
+ "python-linstor>=1.25.3 "
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