diff --git a/ceph-iscsi-3.3+1570532654.g93940a4.tar.gz b/ceph-iscsi-3.3+1570532654.g93940a4.tar.gz deleted file mode 100644 index 51ea5eb..0000000 --- a/ceph-iscsi-3.3+1570532654.g93940a4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b5fb71dc0909cd5786c6962423c11ca0b72f6c813e516edb0f69c859342e10fc -size 132025 diff --git a/ceph-iscsi-3.4+1600349408.g516d37d.tar.gz b/ceph-iscsi-3.4+1600349408.g516d37d.tar.gz new file mode 100644 index 0000000..6f6eaee --- /dev/null +++ b/ceph-iscsi-3.4+1600349408.g516d37d.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e37f4e9da940c24f9a8e9a1874c600685dec9b324bfb596d5f8473b6e840951c +size 136555 diff --git a/ceph-iscsi.changes b/ceph-iscsi.changes index 2f4b289..e7f0333 100644 --- a/ceph-iscsi.changes +++ b/ceph-iscsi.changes @@ -1,3 +1,58 @@ +------------------------------------------------------------------- +Thu Sep 17 13:32:02 UTC 2020 - Ricardo Marques + +- Update to 3.4+1600349408.g516d37d + + Fix gateway creation crash in python3 (#196) + + Report tcmu-runner device status (#210) + + Fix list access violiation when load config (#200) + + Fix delete disk error when disk owner is not specified (#206) + + Support specified gateway config name (#207) + + Added dependency on ceph-common package (#201) + +------------------------------------------------------------------- +Tue Sep 15 12:14:23 UTC 2020 - Nathan Cutler + +- Update to 3.4+1600172042.g4d04457 + + Rename blacklist to blocklist (#216) + +------------------------------------------------------------------- +Thu May 14 15:12:32 UTC 2020 - Ricardo Marques + +- Update to 3.4+1589469085.ga007663 + + Add a config option to log to stderr (#186) + + Don't store to config if create_target fails (#187) + + Fixed numerous string format issues on errors paths (#189) + +------------------------------------------------------------------- +Thu Apr 30 17:14:48 UTC 2020 - Ricardo Marques + +- Update to 3.4+1588266755.g4a5a2cb + + Attempt to pull SSL crt and key's from mon config-key store (#173) + +------------------------------------------------------------------- +Tue Apr 14 13:08:30 UTC 2020 - Ricardo Marques + +- Update to 3.4+1586869678.gf041d18 + + Allow target reconfigure without clients (bsc#1164571) + + Fix ceph blacklist ls test (#171) + + Always perform full deletion on local node (#170) + + Fix crash during unblacklisting with python3 (#170) + + Fix metrics crash if gw not setup yet (#170) + + Fix keys() crash with python 3 (#168) + + Add option to force deletion of unreachable gw (#156) + + Fix next() crash with python 3 (#164) + + Fix config upgrade from 2 to 3 (#162) + + Fix ZeroDivisionError (#155) + +------------------------------------------------------------------- +Fri Nov 15 15:55:16 UTC 2019 - Ricardo Marques + +- Update to 3.3+1573833100.g55d02da: + + Allow explicit set LUN number and WWN (bsc#1145756) + + Should be possible to use a single gateway (bsc#1155283) + + Fix group disk add on python3 + + Fix crash when CephCluster fails to get Rados object + ------------------------------------------------------------------- Tue Oct 8 11:05:09 UTC 2019 - Nathan Cutler diff --git a/ceph-iscsi.spec b/ceph-iscsi.spec index 882bf17..90d2ee5 100644 --- a/ceph-iscsi.spec +++ b/ceph-iscsi.spec @@ -19,7 +19,7 @@ %endif Name: ceph-iscsi -Version: 3.3+1570532654.g93940a4 +Version: 3.4+1600349408.g516d37d Release: 1%{?dist} Group: System/Filesystems Summary: Python modules for Ceph iSCSI gateway configuration management @@ -33,19 +33,14 @@ Source0: %{name}-%{version}.tar.gz %if 0%{?suse_version} Source98: checkin.sh Source99: README-checkin.txt -%if 0%{?is_opensuse} ExclusiveArch: x86_64 aarch64 ppc64le s390x %endif -%endif - -%if ! 0%{?is_opensuse} -BuildArch: noarch -%endif Obsoletes: ceph-iscsi-config Obsoletes: ceph-iscsi-cli Requires: tcmu-runner >= 1.4.0 +Requires: ceph-common >= 10.2.2 %if 0%{?with_python2} BuildRequires: python2-devel BuildRequires: python2-setuptools diff --git a/checkin.sh b/checkin.sh index 5116fb6..462557a 100644 --- a/checkin.sh +++ b/checkin.sh @@ -98,8 +98,8 @@ VERSION=$(grep ^Version *spec | sed -r "s/^Version:\s+//") VERSION="${VERSION}+$(date +%s).${GIT_SHA1}" sed -i -e 's/^Version:.*/Version: '$VERSION'/' $PROJECT.spec sed -i -e 's#^Source0:.*#Source0: %{name}-%{version}.tar.gz#' $PROJECT.spec +sed -i -e '/Source0/a %if 0%{?suse_version}\nSource98: checkin.sh\nSource99: README-checkin.txt\nExclusiveArch: x86_64 aarch64 ppc64le s390x\n%endif' $PROJECT.spec sed -i -e '/BuildArch:\s\+noarch/d' $PROJECT.spec -sed -i -e '/Source0/a %if 0%{?suse_version}\nSource98: checkin.sh\nSource99: README-checkin.txt\n%if 0%{?is_opensuse}\nExclusiveArch: x86_64 aarch64 ppc64le s390x\n%endif\n%endif\n\n%if ! 0%{?is_opensuse}\nBuildArch: noarch\n%endif' $PROJECT.spec sed -i -e 'N;/^\n$/D;P;D;' $PROJECT.spec # collapse multiple adjacent newlines down to a single newline cp $PROJECT.spec $THIS_DIR echo "Version number is ->$VERSION<-"