File tree Expand file tree Collapse file tree 8 files changed +26
-8
lines changed Expand file tree Collapse file tree 8 files changed +26
-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.26.0] - 2025-08-18
12
+
11
13
### Added
12
14
13
15
- snapshot list and set property commands
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.4
5
- ENV PYTHON_LINSTOR_VERSION 1.25.3
4
+ ENV LINSTOR_CLI_VERSION 1.26.0
5
+ ENV PYTHON_LINSTOR_VERSION 1.26.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.25.4
45
+ ENV LINSTOR_CLI_VERSION 1.26.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.26.0-1) experimental; urgency=medium
2
+
3
+ [ Rene Peinthor ]
4
+ * Add snapshot list-properties and set property commands
5
+ * gitlab: python version shouldn't contain 0
6
+ * drbd-opts: fix out of range, unit display
7
+
8
+ [ Gabor Hernadi ]
9
+ * Node,list: Improve Auto-eviction message
10
+ * Drbd: Move Ports column from RscDfn to Rsc
11
+ * Removed EXOS
12
+ * Snap,ship: Remove
13
+ * Snap,rollback: Add --zfs-rollback-strategy option
14
+
15
+ -- Rene Peinthor <
[email protected] > Mon, 18 Aug 2025 09:10:21 +0000
16
+
1
17
linstor-client (1.25.4-1) experimental; urgency=medium
2
18
3
19
* rd/clone: fix crash if --curl was set
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.3 ),
22
+ python-linstor (>=1.26.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.25.4 "
24
+ VERSION = "1.26.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.25.3
9
+ python-linstor >= 1.26.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.25.3
9
+ python-linstor >= 1.26.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.25.3 "
201
+ "python-linstor>=1.26.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