|
|
|
@ -3,27 +3,21 @@
|
|
|
|
|
%define libname libnmstate
|
|
|
|
|
|
|
|
|
|
Name: nmstate
|
|
|
|
|
Version: 1.4.6
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
Version: 2.2.35
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Declarative network manager API
|
|
|
|
|
License: LGPLv2+
|
|
|
|
|
URL: https://github.com/%{srcname}/%{srcname}
|
|
|
|
|
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
|
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.asc
|
|
|
|
|
Source2: https://www.nmstate.io/nmstate.gpg
|
|
|
|
|
Source3: %{url}/releases/download/v%{version}/%{srcname}-vendor-%{version}.tar.xz
|
|
|
|
|
# Patches 0X are reserved to downstream only
|
|
|
|
|
Patch0: BZ_2132570-nm-reverse-IPv6-order-before-adding-them-to-setting.patch
|
|
|
|
|
Patch10: 0001-clib-Use-build.rs-to-fix-SONAME.patch
|
|
|
|
|
Patch11: RHEL-44623-fix-global-dns.patch
|
|
|
|
|
Patch12: RHEL-31095-do-not-clear-iface-dns-when-not-desired.patch
|
|
|
|
|
Source0: https://github.com/nmstate/nmstate/releases/download/v%{version}/nmstate-%{version}.tar.gz
|
|
|
|
|
Source1: https://github.com/nmstate/nmstate/releases/download/v%{version}/nmstate-%{version}.tar.gz.asc
|
|
|
|
|
Source2: https://nmstate.io/nmstate.gpg
|
|
|
|
|
Source3: https://github.com/nmstate/nmstate/releases/download/v%{version}/nmstate-vendor-%{version}.tar.xz
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
BuildRequires: gnupg2
|
|
|
|
|
BuildRequires: rust-toolset
|
|
|
|
|
BuildRequires: pkg-config
|
|
|
|
|
Requires: python3-setuptools
|
|
|
|
|
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
BuildRequires: systemd
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Nmstate is a library with an accompanying command line tool that manages host
|
|
|
|
@ -32,10 +26,17 @@ needs to manage host networking through a northbound declarative API and multi
|
|
|
|
|
provider support on the southbound.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
|
Summary: C binding of nmstate
|
|
|
|
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
|
|
|
# but NM could be running on a different host
|
|
|
|
|
Recommends: NetworkManager
|
|
|
|
|
# Avoid automatically generated profiles
|
|
|
|
|
Recommends: NetworkManager-config-server
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{libname}
|
|
|
|
|
Summary: nmstate Python 3 API library
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: NetworkManager-libnm >= 1:1.26.0
|
|
|
|
|
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
|
|
|
# but NM could be running on a different host
|
|
|
|
|
Recommends: NetworkManager
|
|
|
|
@ -45,38 +46,33 @@ Recommends: NetworkManager-config-server
|
|
|
|
|
# required for OVS and team support
|
|
|
|
|
Suggests: NetworkManager-ovs
|
|
|
|
|
Suggests: NetworkManager-team
|
|
|
|
|
Requires: nispor
|
|
|
|
|
Requires: python3dist(varlink)
|
|
|
|
|
|
|
|
|
|
%package -n nmstate-plugin-ovsdb
|
|
|
|
|
Summary: nmstate plugin for OVS database manipulation
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
# The python-openvswitch rpm pacakge is not in the same repo with nmstate,
|
|
|
|
|
# hence state it as Recommends, no requires.
|
|
|
|
|
Recommends: python3dist(ovs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package libs
|
|
|
|
|
Summary: C binding of nmstate
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
# FIXME: Once upstream included nispor into requirement.txt, remove below line
|
|
|
|
|
Provides: nmstate-plugin-ovsdb = %{version}-%{release}
|
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
|
Obsoletes: nmstate-plugin-ovsdb < 2.1-1
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: C binding development files of nmstate
|
|
|
|
|
License: ASL 2.0
|
|
|
|
|
Requires: nmstate-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%package static
|
|
|
|
|
Summary: Static development files for nmstate
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description static
|
|
|
|
|
Static C library bindings for nmstate.
|
|
|
|
|
|
|
|
|
|
%description libs
|
|
|
|
|
This package contains the C binding of nmstate.
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
This package contains the C binding development files of nmstate.
|
|
|
|
|
|
|
|
|
|
%description -n python3-%{libname}
|
|
|
|
|
This package contains the Python 3 library for nmstate.
|
|
|
|
|
|
|
|
|
|
%description -n nmstate-plugin-ovsdb
|
|
|
|
|
This package contains the nmstate plugin for OVS database manipulation.
|
|
|
|
|
%description -n python3-%{libname}
|
|
|
|
|
This package contains the Python 3 library for Nmstate.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
gpg2 --import --import-options import-export,import-minimal %{SOURCE2} > ./gpgkey-mantainers.gpg
|
|
|
|
@ -86,46 +82,45 @@ gpgv2 --keyring ./gpgkey-mantainers.gpg %{SOURCE1} %{SOURCE0}
|
|
|
|
|
pushd rust
|
|
|
|
|
# Source3 is vendored dependencies
|
|
|
|
|
%cargo_prep -V 3
|
|
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
pushd rust/src/python
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
pushd rust
|
|
|
|
|
# It is safe to ignore minimum rust version. The main blocker on MSRV is
|
|
|
|
|
# toml which just increase their MSRV by a robot for no hard reason.
|
|
|
|
|
%cargo_build --ignore-rust-version
|
|
|
|
|
%cargo_build
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%py3_install
|
|
|
|
|
pushd rust
|
|
|
|
|
env SKIP_PYTHON_INSTALL=1 \
|
|
|
|
|
PREFIX=%{_prefix} \
|
|
|
|
|
LIBDIR=%{_libdir} \
|
|
|
|
|
%make_install
|
|
|
|
|
PREFIX=%{_prefix} \
|
|
|
|
|
LIBDIR=%{_libdir} \
|
|
|
|
|
SYSCONFDIR=%{_sysconfdir} \
|
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
|
|
pushd rust/src/python
|
|
|
|
|
%py3_install
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc README.md
|
|
|
|
|
%doc examples/
|
|
|
|
|
%{_mandir}/man8/nmstate.service.8*
|
|
|
|
|
%{_mandir}/man8/nmstatectl.8*
|
|
|
|
|
%{_mandir}/man8/nmstate-autoconf.8*
|
|
|
|
|
%{python3_sitelib}/nmstatectl
|
|
|
|
|
%{_bindir}/nmstatectl
|
|
|
|
|
%{_bindir}/nmstatectl-rust
|
|
|
|
|
%{_bindir}/nmstate-autoconf
|
|
|
|
|
%{_unitdir}/nmstate.service
|
|
|
|
|
%dir %{_sysconfdir}/%{name}
|
|
|
|
|
%{_sysconfdir}/%{name}/README
|
|
|
|
|
|
|
|
|
|
%files -n python3-%{libname}
|
|
|
|
|
%license LICENSE
|
|
|
|
|
%{python3_sitelib}/%{libname}
|
|
|
|
|
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/plugins/nmstate_plugin_*
|
|
|
|
|
%exclude %{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_*
|
|
|
|
|
|
|
|
|
|
%files -n nmstate-plugin-ovsdb
|
|
|
|
|
%{python3_sitelib}/%{libname}/plugins/nmstate_plugin_ovsdb*
|
|
|
|
|
%{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_ovsdb*
|
|
|
|
|
|
|
|
|
|
%files libs
|
|
|
|
|
%license rust/LICENSE
|
|
|
|
@ -137,6 +132,9 @@ popd
|
|
|
|
|
%{_includedir}/nmstate.h
|
|
|
|
|
%{_libdir}/pkgconfig/nmstate.pc
|
|
|
|
|
|
|
|
|
|
%files static
|
|
|
|
|
%{_libdir}/libnmstate.a
|
|
|
|
|
|
|
|
|
|
%post libs
|
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
|
@ -144,388 +142,402 @@ popd
|
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Sun Jul 14 2024 Gris Ge <fge@redhat.com> - 1.4.6-4
|
|
|
|
|
- Do not clear iface DNS if not desired. RHEL-31095
|
|
|
|
|
* Thu Aug 22 2024 Gris Ge <fge@redhat.com> - 2.2.35-1
|
|
|
|
|
- Upgrade to 2.2.35
|
|
|
|
|
- Fix gen_diff on VLAN ID change. RHEL-38623
|
|
|
|
|
- Fix Nmpolicy on mac-address identifier. RHEL-54292
|
|
|
|
|
- Fix reapply. RHEL-50556
|
|
|
|
|
|
|
|
|
|
* Wed Jun 26 2024 Gris Ge <fge@redhat.com> - 1.4.6-3
|
|
|
|
|
- Fix global DNS on second apply. RHEL-44623
|
|
|
|
|
* Thu Jun 13 2024 Gris Ge <fge@redhat.com> - 2.2.33-1
|
|
|
|
|
- Upgrade to 2.2.33
|
|
|
|
|
- Fix validation of controller overbook. RHEL-40683
|
|
|
|
|
- Support DNS and route in kernel mode. RHEL-37665
|
|
|
|
|
|
|
|
|
|
* Fri May 17 2024 Gris Ge <fge@redhat.com> - 1.4.6-2
|
|
|
|
|
- Fix clib SONAME. RHEL-32218
|
|
|
|
|
* Thu May 30 2024 Gris Ge <fge@redhat.com> - 2.2.32-1
|
|
|
|
|
- Upgrade to 2.2.32
|
|
|
|
|
- Set VLAN reorder-headers to true by default. RHEL-33362
|
|
|
|
|
|
|
|
|
|
* Thu May 16 2024 Gris Ge <fge@redhat.com> - 1.4.6-1
|
|
|
|
|
- Do not touch interface DNS if global DNS is used. RHEL-32218
|
|
|
|
|
* Mon May 20 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.31-1
|
|
|
|
|
- Upgrade to 2.2.31
|
|
|
|
|
- Support IPSec leftsubnet property. RHEL-26755
|
|
|
|
|
|
|
|
|
|
* Wed Nov 15 2023 Gris Ge <fge@redhat.com> - 1.4.5-2
|
|
|
|
|
- Fix use case on purging DNS option. RHEL-13936
|
|
|
|
|
* Fri May 03 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.30-1
|
|
|
|
|
- Upgrade to 2.2.30
|
|
|
|
|
|
|
|
|
|
* Thu Nov 02 2023 Gris Ge <fge@redhat.com> - 1.4.5-1
|
|
|
|
|
- Support DNS option. RHEL-13936
|
|
|
|
|
* Thu Apr 25 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.29-1
|
|
|
|
|
- Upgrade to 2.2.29
|
|
|
|
|
|
|
|
|
|
* Wed Oct 04 2023 Wen Liang <wenliang@redhat.com> - 1.4.4-5
|
|
|
|
|
- Support treating string as int for address prefix-length. RHEL-3358
|
|
|
|
|
* Mon Apr 22 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.28-1
|
|
|
|
|
- Upgrade to 2.2.28
|
|
|
|
|
|
|
|
|
|
* Wed Aug 30 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.4.4-4
|
|
|
|
|
- Fix issue with ovs-bridge and ovs-interface with same name. RHBZ#2231843
|
|
|
|
|
* Thu Mar 21 2024 Gris Ge <fge@redhat.com> - 2.2.27-1
|
|
|
|
|
### Breaking changes
|
|
|
|
|
- N/A
|
|
|
|
|
|
|
|
|
|
* Tue May 30 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.4.4-3
|
|
|
|
|
- Support static route with auto-ip. RHBZ#2203277
|
|
|
|
|
### New features
|
|
|
|
|
- Support TCP congestion window(cwnd) in route. (59f99632)
|
|
|
|
|
- Support query interface driver. (67817c23)
|
|
|
|
|
- New API to generate changed state. (fe5327a2)
|
|
|
|
|
|
|
|
|
|
* Mon Apr 24 2023 Gris Ge <fge@redhat.com> - 1.4.4-2
|
|
|
|
|
- Enable CI gating.
|
|
|
|
|
### Bug fixes
|
|
|
|
|
- Include driver information for `persist-nic-names` subcommand. (1129e46b)
|
|
|
|
|
- nm: Protect global DNS config in checkpoint. (881373ba)
|
|
|
|
|
- route rule: Append rule instead of overriding when iface defined. (88d3d3ef)
|
|
|
|
|
- Resolves RHEL-19409
|
|
|
|
|
|
|
|
|
|
* Sun Apr 23 2023 Gris Ge <fge@redhat.com> - 1.4.4-1
|
|
|
|
|
- Upgrade to nmstate 1.4.4
|
|
|
|
|
* Wed Mar 13 2024 Gris Ge <fge@redhat.com> - 2.2.26-1
|
|
|
|
|
- Upgrade to 2.2.26
|
|
|
|
|
|
|
|
|
|
* Wed Mar 29 2023 Gris Ge <fge@redhat.com> - 1.4.3-1
|
|
|
|
|
- Upgrade to nmstate 1.4.3. RHBZ#2179899
|
|
|
|
|
* Thu Feb 22 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.25-1
|
|
|
|
|
- Upgrade to 2.2.25
|
|
|
|
|
|
|
|
|
|
* Mon Feb 27 2023 Gris Ge <fge@redhat.com> - 1.4.2-4
|
|
|
|
|
- Ignore undesired iface config. RHBZ#2160416
|
|
|
|
|
* Thu Feb 08 2024 Gris Ge <fge@redhat.com> - 2.2.24-1
|
|
|
|
|
- Upgrade to 2.2.24
|
|
|
|
|
|
|
|
|
|
* Thu Feb 23 2023 Gris Ge <fge@redhat.com> - 1.4.2-3
|
|
|
|
|
- Additional patch for SR-IOV. RHBZ#2160416
|
|
|
|
|
* Thu Jan 18 2024 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.23-1
|
|
|
|
|
- Upgrade to 2.2.23.
|
|
|
|
|
|
|
|
|
|
* Wed Feb 22 2023 Gris Ge <fge@redhat.com> - 1.4.2-2
|
|
|
|
|
- Enable YAML API in rust clib.
|
|
|
|
|
* Fri Jan 05 2024 Gris Ge <fge@redhat.com> - 2.2.22-1
|
|
|
|
|
- Upgrade to 2.2.22.
|
|
|
|
|
|
|
|
|
|
* Sat Feb 18 2023 Gris Ge <fge@redhat.com> - 1.4.2-1
|
|
|
|
|
- Upgrade to nmstate 1.4.2
|
|
|
|
|
* Tue Dec 19 2023 Gris Ge <fge@redhat.com> - 2.2.21-2
|
|
|
|
|
- Fix `ipsec-interface` option. RHEL-17403
|
|
|
|
|
|
|
|
|
|
* Mon Jan 09 2023 Gris Ge <fge@redhat.com> - 1.4.1-1
|
|
|
|
|
- Upgrade to nmstate-1.4.1
|
|
|
|
|
* Fri Dec 15 2023 Íñigo Huguet <ihuguet@redhat.com> - 2.2.21-1
|
|
|
|
|
- Upgrade to 2.2.21.
|
|
|
|
|
|
|
|
|
|
* Wed Dec 14 2022 Gris Ge <fge@redhat.com> - 1.4.0-1
|
|
|
|
|
- Upgrade to nmstate-1.4.0
|
|
|
|
|
* Thu Nov 30 2023 Gris Ge <fge@redhat.com> - 2.2.20-1
|
|
|
|
|
- Upgrade to 2.2.20.
|
|
|
|
|
|
|
|
|
|
* Thu Dec 01 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.4.0.alpha.20221201
|
|
|
|
|
- Upgrade to nmstate-1.4.0.alpha.20221201
|
|
|
|
|
* Wed Nov 15 2023 Gris Ge <fge@redhat.com> - 2.2.19-1
|
|
|
|
|
- Upgrade to 2.2.19.
|
|
|
|
|
|
|
|
|
|
* Fri Nov 18 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.4.alpha.20221118
|
|
|
|
|
- Upgrade to nmstate-1.3.4.alpha.20221118
|
|
|
|
|
* Thu Nov 02 2023 Gris Ge <fge@redhat.com> - 2.2.18-1
|
|
|
|
|
- Upgrade to 2.2.18.
|
|
|
|
|
|
|
|
|
|
* Mon Oct 24 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.4.alpha.20221024
|
|
|
|
|
- Undo the branching misdone by Fernando.
|
|
|
|
|
* Thu Sep 21 2023 Gris Ge <fge@redhat.com> - 2.2.16-1
|
|
|
|
|
- Upgrade to 2.2.16.
|
|
|
|
|
|
|
|
|
|
* Mon Aug 15 2022 Gris Ge <fge@redhat.com> - 1.3.3-1
|
|
|
|
|
- Upgrade to nmstate-1.3.3
|
|
|
|
|
* Mon Sep 04 2023 Gris Ge <fge@redhat.com> - 2.2.15-3
|
|
|
|
|
- Rebuild for RHEL 9.4.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 02 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.2-1
|
|
|
|
|
- Upgrade to nmstate-1.3.2
|
|
|
|
|
* Wed Aug 30 2023 Gris Ge <fge@redhat.com> - 2.2.15-2
|
|
|
|
|
- Rebuild for RHEL 9.3.
|
|
|
|
|
|
|
|
|
|
* Wed Jul 20 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.1-1
|
|
|
|
|
- Upgrade to nmstate-1.3.1
|
|
|
|
|
* Wed Aug 23 2023 Gris Ge <fge@redhat.com> - 2.2.15-1
|
|
|
|
|
- Upgrade to 2.2.15
|
|
|
|
|
|
|
|
|
|
* Fri Jul 01 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.1-0.alpha.20220701
|
|
|
|
|
- Upgrade to nmstate-1.3.1-0.alpha.20220701
|
|
|
|
|
* Wed Jul 26 2023 Gris Ge <fge@redhat.com> - 2.2.14-1
|
|
|
|
|
- Upgrade to 2.2.14
|
|
|
|
|
|
|
|
|
|
* Mon Jun 13 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.0-1
|
|
|
|
|
- Upgrade to nmstate-1.3.0-1
|
|
|
|
|
* Thu Jul 13 2023 Gris Ge <fge@redhat.com> - 2.2.13-1
|
|
|
|
|
- Upgrade to 2.2.13
|
|
|
|
|
|
|
|
|
|
* Thu May 05 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.0-0.alpha.20220505
|
|
|
|
|
- Upgrade to nmstate-1.3.0.alpha.20220505
|
|
|
|
|
* Wed Jun 07 2023 Gris Ge <fge@redhat.com> - 2.2.12-2
|
|
|
|
|
- Fix regression on SRIOV timeout. RHBZ#2212380
|
|
|
|
|
|
|
|
|
|
* Thu Apr 07 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.3.0-0.alpha.20220407
|
|
|
|
|
- Upgrade to nmstate-1.3.0.alpha.20220407
|
|
|
|
|
* Thu Jun 01 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.12-1
|
|
|
|
|
- Upgrade to 2.2.12
|
|
|
|
|
|
|
|
|
|
* Thu Mar 10 2022 Gris Ge <fge@redhat.com> - 1.3.0-0.alpha.20220310
|
|
|
|
|
Upgrade to nmstate-1.3.0-0.alpha.20220310
|
|
|
|
|
* Wed May 17 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.11-1
|
|
|
|
|
- Upgrade to 2.2.11
|
|
|
|
|
|
|
|
|
|
* Mon Feb 14 2022 Gris Ge <fge@redhat.com> - 1.2.1-1
|
|
|
|
|
- Upgrade to 1.2.1. RHBZ#1996618
|
|
|
|
|
* Tue Apr 25 2023 Gris Ge <fge@redhat.com> - 2.2.10-3
|
|
|
|
|
- Fix error when DHCP enabled with auto ip on STP bridge
|
|
|
|
|
|
|
|
|
|
* Thu Jan 27 2022 Gris Ge <ferferna@redhat.com> - 1.2.1-0.2.alpha2
|
|
|
|
|
- Upgrade to 1.2.1 alpha2. RHBZ#1996618
|
|
|
|
|
* Sun Apr 23 2023 Gris Ge <fge@redhat.com> - 2.2.10-2
|
|
|
|
|
- Do not pin NIC if `net.ifnames=0`
|
|
|
|
|
|
|
|
|
|
* Thu Jan 13 2022 Gris Ge <fge@redhat.com> - 1.2.1-0.1.alpha1
|
|
|
|
|
- Upgrade to 1.2.1 alpha1. RHBZ#1996618
|
|
|
|
|
* Thu Mar 23 2023 Gris Ge <fge@redhat.com> - 2.2.9-1
|
|
|
|
|
- Upgrade to 2.2.9
|
|
|
|
|
|
|
|
|
|
* Thu Dec 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.2.0-1
|
|
|
|
|
- Upgrade to 1.2.0. RHBZ#1996618
|
|
|
|
|
* Sun Mar 12 2023 Gris Ge <fge@redhat.com> - 2.2.8-1
|
|
|
|
|
- Upgrade to 2.2.8
|
|
|
|
|
|
|
|
|
|
* Thu Dec 09 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha2
|
|
|
|
|
- Upgrade to 1.2.0 alpha2. RHBZ#1996618
|
|
|
|
|
* Fri Feb 17 2023 Gris Ge <fge@redhat.com> - 2.2.7-1
|
|
|
|
|
- Upgrade to 2.2.7
|
|
|
|
|
|
|
|
|
|
* Tue Oct 12 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha1
|
|
|
|
|
- Upgrade to 1.2.0 alpha1.
|
|
|
|
|
* Thu Feb 09 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.6-1
|
|
|
|
|
- Upgrade to 2.2.6
|
|
|
|
|
|
|
|
|
|
* Wed Sep 15 2021 Ana Cabral <acabral@redhat.com> - 1.1.1-0.1.alpha1
|
|
|
|
|
- Upgrade to 1.1.1 alpha1.
|
|
|
|
|
- Canonicalize ipv6 addresses for dns nameservers. RHBZ#1911241
|
|
|
|
|
- Throw better error when peer is missing for veth interfaces. RHBZ#1973973
|
|
|
|
|
* Thu Jan 26 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.5-1
|
|
|
|
|
- Upgrade to 2.2.5
|
|
|
|
|
|
|
|
|
|
* Tue Jul 27 2021 Gris Ge <fge@redhat.com> - 1.1.0-3
|
|
|
|
|
- Fix state=ignore for OVS interface. RHBZ#1944054
|
|
|
|
|
- Fix verification for next hop address 0.0.0.0. RHBZ#1985879
|
|
|
|
|
* Thu Jan 19 2023 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.4-1
|
|
|
|
|
- Upgrade to 2.2.4
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Gris Ge <fge@redhat.com> - 1.1.0-2
|
|
|
|
|
- Preserving existing ethtool settings. RHBZ#1984764
|
|
|
|
|
* Wed Jan 11 2023 Gris Ge <fge@redhat.com> - 2.2.3-3
|
|
|
|
|
- Fix OVSDB verification error
|
|
|
|
|
|
|
|
|
|
* Thu Jul 15 2021 Gris Ge <fge@redhat.com> - 1.1.0-1
|
|
|
|
|
- Upgrade to 1.1.0.
|
|
|
|
|
* Tue Jan 10 2023 Gris Ge <fge@redhat.com> - 2.2.3-2
|
|
|
|
|
- Enable error message for rpm CI gating
|
|
|
|
|
|
|
|
|
|
* Fri Jul 09 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.7.alpha7
|
|
|
|
|
- Upgarde to 1.1.0 alpha7.
|
|
|
|
|
* Mon Jan 09 2023 Gris Ge <fge@redhat.com> - 2.2.3-1
|
|
|
|
|
- Upgrade to 2.2.3
|
|
|
|
|
|
|
|
|
|
* Thu Jul 01 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.6.alpha6
|
|
|
|
|
- Upgrade to 1.1.0 alpha6.
|
|
|
|
|
* Thu Dec 15 2022 Gris Ge <fge@redhat.com> - 2.2.2-2
|
|
|
|
|
- Fix regression on VRF interface.
|
|
|
|
|
|
|
|
|
|
* Mon Jun 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.5.alpha4
|
|
|
|
|
- Upgrade to 1.1.0 alpha4.
|
|
|
|
|
* Wed Dec 14 2022 Gris Ge <fge@redhat.com> - 2.2.2-1
|
|
|
|
|
- Upgrade to 2.2.2
|
|
|
|
|
|
|
|
|
|
* Wed Jun 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.4.alpha3
|
|
|
|
|
- Rebuild to introduce CI gating tier1 tests. RHBZ#1813357
|
|
|
|
|
* Thu Dec 01 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.2-0.alpha.20221201.c8c776e9
|
|
|
|
|
- Upgrade to 2.2.2-0.alpha.20221201.c8c776e9
|
|
|
|
|
|
|
|
|
|
* Tue Jun 08 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.3.alpha3
|
|
|
|
|
- Upgrade to 1.1.0 alpha3.
|
|
|
|
|
* Wed Nov 16 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.1-1
|
|
|
|
|
- Upgrade to 2.2.1
|
|
|
|
|
|
|
|
|
|
* Mon Jun 07 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.2
|
|
|
|
|
- Upgrade to 1.1.0 alpha2.
|
|
|
|
|
* Thu Nov 10 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.1-0.alpha.20221110.a9cee09d
|
|
|
|
|
- Upgrade to 2.2.1-0.alpha.20221110.a9cee09d
|
|
|
|
|
|
|
|
|
|
* Wed May 19 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.1
|
|
|
|
|
- Upgrade to 1.1.0 alpha1.
|
|
|
|
|
* Mon Oct 17 2022 Gris Ge <fge@redhat.com> - 2.2.0-1
|
|
|
|
|
- Upgrade to 2.2.0
|
|
|
|
|
|
|
|
|
|
* Tue Apr 20 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.3-1
|
|
|
|
|
- Upgrade to 1.0.3. RHBZ#1942458
|
|
|
|
|
* Fri Oct 14 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.2.0-0.alpha.20221014.e54d9ae0
|
|
|
|
|
- Upgrade to 2.2.0-alpha.20221014.e54d9ae0
|
|
|
|
|
|
|
|
|
|
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-6
|
|
|
|
|
- Rebuild for RHEL 8.5. RHBZ#1935710
|
|
|
|
|
* Mon Aug 15 2022 Gris Ge <fge@rehda.tcom> - 2.1.4-1
|
|
|
|
|
- Upgrade to 2.1.4
|
|
|
|
|
|
|
|
|
|
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-5
|
|
|
|
|
- New patch for fixing unmanaged interfaces being managed. RHBZ#1935710
|
|
|
|
|
* Thu Jul 28 2022 Gris Ge <fge@redhat.com> - 2.1.3-1
|
|
|
|
|
- Upgraded to 2.1.3
|
|
|
|
|
|
|
|
|
|
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-4
|
|
|
|
|
- New patch for SRIOV decrease VF amount. RHBZ#1931355
|
|
|
|
|
* Wed Jul 20 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.3-20220720.cf972e4d
|
|
|
|
|
- Upgrade to nmstate-2.1.3-20220720.cf972e4d
|
|
|
|
|
|
|
|
|
|
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-3
|
|
|
|
|
- Fix actiation failure when decrease VF mount on i40e. RHBZ#1931355
|
|
|
|
|
* Thu Jul 14 2022 Gris Ge <fge@redhat.com> - 2.1.3-20220714.81d80992
|
|
|
|
|
- Upgrade to nmstate-2.1.3-20220714.81d80992
|
|
|
|
|
|
|
|
|
|
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-2
|
|
|
|
|
- Fix nmstatectl return code of `set` command. RHBZ#1931751
|
|
|
|
|
* Thu Jun 30 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.2-1
|
|
|
|
|
- Upgrade to 2.1.2
|
|
|
|
|
|
|
|
|
|
* Fri Feb 19 2021 Gris Ge <fge@redhat.com> - 1.0.2-1
|
|
|
|
|
- Upgrade to 1.0.2.
|
|
|
|
|
* Mon Jun 13 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.1-1
|
|
|
|
|
- Upgrade to 2.1.1
|
|
|
|
|
|
|
|
|
|
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.3
|
|
|
|
|
- Fix sources name
|
|
|
|
|
* Thu Jun 02 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.1-0.alpha.20220602.5accbd1
|
|
|
|
|
- Upgrade to nmstate-2.1.1-0.alpha.20220602.5accbd1
|
|
|
|
|
|
|
|
|
|
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.2
|
|
|
|
|
- Upgrade to 1.0.2 alpha 2
|
|
|
|
|
* Thu May 19 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.1-0.alpha.20220519.437e4a9
|
|
|
|
|
- Upgrade to nmstate-2.1.1-0.alpha.20220519.437e4a9
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.1
|
|
|
|
|
- Upgrade to 1.0.2 alpha 1
|
|
|
|
|
* Fri Apr 22 2022 Gris Ge <fge@redhat.com> - 2.1.0-1
|
|
|
|
|
- Upgrade to 2.1.0
|
|
|
|
|
|
|
|
|
|
* Tue Apr 19 2022 Gris Ge <fge@redhat.com> - 2.1.0-0.alpha.20220419.d613311d
|
|
|
|
|
- Upgrade to nmstate-2.1.0-0.alpha.20220419.d613311d
|
|
|
|
|
|
|
|
|
|
* Thu Apr 07 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.1.0-0.alpha.20220407
|
|
|
|
|
- Upgrade to nmstate-2.1.0-0.alpha.20220407
|
|
|
|
|
|
|
|
|
|
* Fri Mar 11 2022 Gris Ge <fge@redhat.com> - 2.1.0-0.alpha.20220311.6f7c2be
|
|
|
|
|
- Upgrade to nmstate-2.1.0-0.alpha.20220311.6f7c2be
|
|
|
|
|
|
|
|
|
|
* Thu Feb 24 2022 Gris Ge <fge@redhat.com> - 2.0.0-2
|
|
|
|
|
- Force python3-libnmstate and nmstate-plugin-ovsdb as noarch. RHBZ#1996575
|
|
|
|
|
|
|
|
|
|
* Wed Feb 16 2022 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.0.0-1
|
|
|
|
|
- Upgrade to 2.0.0. RHBZ#1996575
|
|
|
|
|
|
|
|
|
|
* Thu Jan 13 2022 Gris Ge <fge@redhat.com> - 2.0.0-0.7.alpha6
|
|
|
|
|
- Add gating.yaml. RHBZ#1996575
|
|
|
|
|
|
|
|
|
|
* Wed Jan 12 2022 Gris Ge <fge@redhat.com> - 2.0.0-0.6.alpha6
|
|
|
|
|
- Upgrade to 2.0.0. alpha 6. Resolves: RHBZ#1996575
|
|
|
|
|
|
|
|
|
|
* Thu Dec 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 2.0.0-0.5.alpha5
|
|
|
|
|
- Upgrade to 2.0.0 alpha 5. Resolves: RHBZ#1996575
|
|
|
|
|
- Fix release number.
|
|
|
|
|
|
|
|
|
|
* Thu Dec 09 2021 Gris Ge <fge@redhat.com> - 2.0.0-0.1.alpha4
|
|
|
|
|
- Upgrade to 2.0.0 alpha 4. Resolves: RHBZ#1996575
|
|
|
|
|
|
|
|
|
|
* Thu Sep 23 2021 Ana Cabral <acabral@redhat.com> - 2.0.0-0.4.alpha3
|
|
|
|
|
- Upgrade to 2.0.0 alpha 3. Resolves: RHBZ#1996575
|
|
|
|
|
- Remove connection renaming behaviour. Resolves: RHBZ#1998222
|
|
|
|
|
- Add prefixes to OVS bridges and interfaces connections. Resolves: RHBZ#1998218
|
|
|
|
|
- Improve OVS bridge start with nmstate. Resolves: RHBZ#1660250
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.0.0-0.3.alpha2
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Wed Jul 14 2021 Gris Ge <fge@redhat.com> - 2.0.0-0.2.alpha2
|
|
|
|
|
- Upgrade to 2.0.0 alpha2
|
|
|
|
|
|
|
|
|
|
* Fri Jul 02 2021 Wen Liang <wenliang@redhat.com> - 2.0.0-0.1
|
|
|
|
|
- Upgrade to 2.0.0 alpha1
|
|
|
|
|
|
|
|
|
|
* Fri Jun 18 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.3
|
|
|
|
|
- Fix the 'Release' error. Resolves: RHBZ#1962381
|
|
|
|
|
|
|
|
|
|
* Thu Jun 10 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.3
|
|
|
|
|
- Upgrade to 1.1.0 alpha3
|
|
|
|
|
|
|
|
|
|
* Thu May 27 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.1
|
|
|
|
|
- Upgrade to 1.1.0 alpha1
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.2-3
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
|
|
|
|
|
* Sun Feb 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-2
|
|
|
|
|
- Add missing source to source file
|
|
|
|
|
|
|
|
|
|
* Sun Feb 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-1
|
|
|
|
|
- Upgrade to 1.0.2
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jan 19 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-1
|
|
|
|
|
- Upgrade to 1.0.1. RHBZ#1881287
|
|
|
|
|
|
|
|
|
|
* Tue Jan 05 2021 Gris Ge <fge@redhat.com> - 1.0.1-0.1
|
|
|
|
|
- Upgrade to 1.0.1 alpha 1
|
|
|
|
|
- Upgrade to 1.0.1
|
|
|
|
|
|
|
|
|
|
* Tue Dec 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.0-1
|
|
|
|
|
- Upgrade to 1.0.0
|
|
|
|
|
|
|
|
|
|
* Mon Nov 16 2020 Gris Ge <fge@redhat.com> - 1.0.0-0.1
|
|
|
|
|
- Upgrade to 1.0.0 alpha 1
|
|
|
|
|
|
|
|
|
|
* Wed Oct 28 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-2
|
|
|
|
|
- Allow VRF port to hold IP information
|
|
|
|
|
|
|
|
|
|
* Thu Oct 22 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-1
|
|
|
|
|
- Upgrade to 0.4.1
|
|
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-3
|
|
|
|
|
- Add nispor as a dependency for CI gating
|
|
|
|
|
* Tue Oct 13 2020 Gris Ge <fge@redhat.com> - 0.4.0-2
|
|
|
|
|
- Fix the ELN build by put ovs stuff as soft requirement.
|
|
|
|
|
|
|
|
|
|
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-2
|
|
|
|
|
- Rebuild for CI gating
|
|
|
|
|
- Remove old patches from the repository
|
|
|
|
|
|
|
|
|
|
* Mon Sep 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-1
|
|
|
|
|
* Sun Sep 20 2020 Gris Ge <fge@redhat.com> - 0.4.0-1
|
|
|
|
|
- Upgrade to 0.4.0
|
|
|
|
|
- Sync. up with upstream spec file.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-12
|
|
|
|
|
- New patch: OVSDB: Allowing remove all OVS ports. RHBZ#1869345
|
|
|
|
|
* Mon Aug 31 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.5-1
|
|
|
|
|
- Update to 0.3.5
|
|
|
|
|
|
|
|
|
|
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-11
|
|
|
|
|
- OVSDB: Allowing remove all OVS ports. RHBZ#1869345
|
|
|
|
|
|
|
|
|
|
* Thu Aug 06 2020 Gris Ge <fge@redhat.com> - 0.3.4-10
|
|
|
|
|
- OVSDB: Preserv old external_ids. RHBZ#1866269
|
|
|
|
|
|
|
|
|
|
* Tue Aug 04 2020 Gris Ge <fge@redhat.com> - 0.3.4-9
|
|
|
|
|
- Fix converting memory only profile to persistent. RHBZ#1859844
|
|
|
|
|
|
|
|
|
|
* Mon Aug 03 2020 Gris Ge <fge@redhat.com> - 0.3.4-8
|
|
|
|
|
- Fix failure when adding ovs bond to existing bridge. RHBZ#1858758
|
|
|
|
|
|
|
|
|
|
* Thu Jul 30 2020 Gris Ge <fge@redhat.com> - 0.3.4-7
|
|
|
|
|
- Remove existing inactivate NM profiles. RHBZ#1862025
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-6
|
|
|
|
|
- New build to retrigger the CI gating.
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-5
|
|
|
|
|
- Use new patch. RHBZ#1861668
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-4
|
|
|
|
|
- Ignore unknown interface. RHBZ#1861668
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-3
|
|
|
|
|
- Add support NetworkManaged exteranl managed interface. RHBZ#1861263
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-2
|
|
|
|
|
- Hide MTU for OVS patch port. RHBZ#1858762
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.4-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jul 25 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.4-1
|
|
|
|
|
- Upgrade to 0.3.4
|
|
|
|
|
|
|
|
|
|
* Fri Jul 24 2020 Gris Ge <fge@redhat.com> - 0.3.3-3
|
|
|
|
|
- Allowing child been marked absent. RHBZ#1859148
|
|
|
|
|
|
|
|
|
|
* Mon Jul 06 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-2
|
|
|
|
|
- Fix bug 1850698
|
|
|
|
|
- Update to 0.3.4
|
|
|
|
|
- Sync. with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Thu Jul 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-1
|
|
|
|
|
- Upgrade to 0.3.3
|
|
|
|
|
- Update to 0.3.3
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-6
|
|
|
|
|
- Improve performance by remove unneeded calls. RHBZ#1820009
|
|
|
|
|
* Tue Jun 16 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.2-1
|
|
|
|
|
- Update to 0.3.2
|
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-5
|
|
|
|
|
- Sort the pretty state with priority. RHBZ#1806474
|
|
|
|
|
* Tue Jun 09 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.1-1
|
|
|
|
|
- Update to 0.3.1
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-4
|
|
|
|
|
- Canonicalize IP address. RHBZ#1816612
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.3.0-5
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-3
|
|
|
|
|
- Improve VLAN MTU error message. RHBZ#1788763
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-4
|
|
|
|
|
- Fix source path
|
|
|
|
|
|
|
|
|
|
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-2
|
|
|
|
|
- Fix bug 1850698
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-3
|
|
|
|
|
- Fix signature verification
|
|
|
|
|
|
|
|
|
|
* Mon Jun 15 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.2-1
|
|
|
|
|
- Upgrade to 0.3.2
|
|
|
|
|
- Sync. up with upstream spec file
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-2
|
|
|
|
|
- Update signature verification
|
|
|
|
|
|
|
|
|
|
* Thu Jun 11 2020 Gris Ge <fge@redhat.com> - 0.3.1-1
|
|
|
|
|
- Upgrade to 0.3.1
|
|
|
|
|
* Fri May 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-1
|
|
|
|
|
- Update to 0.3.0
|
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Wed May 13 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-1
|
|
|
|
|
- Upgrade to 0.3.0
|
|
|
|
|
- Sync. up with upstream spec file.
|
|
|
|
|
- Update signature verification.
|
|
|
|
|
* Tue Apr 21 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.10-1
|
|
|
|
|
- Update to 0.2.10
|
|
|
|
|
|
|
|
|
|
* Tue Mar 31 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.9-1
|
|
|
|
|
- Upgrade to 0.2.9
|
|
|
|
|
* Thu Mar 26 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.9-1
|
|
|
|
|
- Update to 0.2.9
|
|
|
|
|
|
|
|
|
|
* Wed Mar 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-6
|
|
|
|
|
- Support 3+ DNS name server(IPv4 only or IPv6 only). RHBZ #1816043
|
|
|
|
|
* Fri Mar 13 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.8-1
|
|
|
|
|
- Update to 0.2.8
|
|
|
|
|
|
|
|
|
|
* Fri Mar 20 2020 Gris Ge <fge@redhat.com> - 0.2.6-5
|
|
|
|
|
- Support static DNS with DHCP. RHBZ #1815112
|
|
|
|
|
* Wed Mar 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.7-1
|
|
|
|
|
- Update to 0.2.7
|
|
|
|
|
|
|
|
|
|
* Thu Mar 12 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-4.8
|
|
|
|
|
- Fix bond mac and options regression. RHBZ #1809330
|
|
|
|
|
* Mon Feb 24 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-1
|
|
|
|
|
- Update to 0.2.6
|
|
|
|
|
|
|
|
|
|
* Mon Mar 09 2020 Gris Ge <fge@redhat.com> - 0.2.6-3.8
|
|
|
|
|
- Fix change bond mode. RHBZ #1809330
|
|
|
|
|
* Wed Feb 19 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.5-1
|
|
|
|
|
- Update to 0.2.5
|
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Mon Mar 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-2.7
|
|
|
|
|
- Fix cmd stuck when trying to create ovs-bond. RHBZ #1806249.
|
|
|
|
|
|
|
|
|
|
* Tue Feb 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-1
|
|
|
|
|
- Upgrade to 0.2.6
|
|
|
|
|
|
|
|
|
|
* Thu Feb 20 2020 Gris Ge <fge@redhat.com> - 0.2.5-1
|
|
|
|
|
- Upgrade to 0.2.5
|
|
|
|
|
|
|
|
|
|
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-2
|
|
|
|
|
- Fix failure when editing existing OVS interface. RHBZ #1786935
|
|
|
|
|
|
|
|
|
|
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-1
|
|
|
|
|
- Upgrade to 0.2.4
|
|
|
|
|
* Wed Feb 12 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.4-1
|
|
|
|
|
- Update to 0.2.4
|
|
|
|
|
|
|
|
|
|
* Wed Feb 05 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.3-1
|
|
|
|
|
- Upgrade to 0.2.3
|
|
|
|
|
- Update to 0.2.3
|
|
|
|
|
|
|
|
|
|
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-3
|
|
|
|
|
- Fix the incorrect source
|
|
|
|
|
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-1
|
|
|
|
|
- Update to 0.2.2
|
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-2
|
|
|
|
|
- Upgrade to 0.2.2
|
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Jan 22 2020 Gris Ge <fge@redhat.com> - 0.2.0-3.1
|
|
|
|
|
- Fix the memeory leak of NM.Client. RHBZ #1784707
|
|
|
|
|
* Tue Jan 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.1-2
|
|
|
|
|
- Fix changelog
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-2
|
|
|
|
|
- Fix the incorrect source tarbal.
|
|
|
|
|
* Tue Jan 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.1-1
|
|
|
|
|
- Update to 0.2.1
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-1
|
|
|
|
|
- Upgrade to nmstate 0.2.0
|
|
|
|
|
* Tue Dec 03 2019 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.0-2
|
|
|
|
|
- Fix changelog
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-4
|
|
|
|
|
- Fix the problem found by CI gating.
|
|
|
|
|
* Tue Dec 03 2019 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.0-1
|
|
|
|
|
- Update to 0.2.0
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-3
|
|
|
|
|
- Bump dist number as RHEL 8.1.1 took 0.1.1-2.
|
|
|
|
|
* Mon Dec 02 2019 Till Maas <opensource@till.name> - 0.1.1-1
|
|
|
|
|
- Update to 0.1.1
|
|
|
|
|
- Sync with upstream specfile
|
|
|
|
|
|
|
|
|
|
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-2
|
|
|
|
|
- Upgrade to nmstate 0.1.1.
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.8-3
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
* Tue Sep 10 2019 Gris Ge <fge@redhat.com> - 0.0.8-15
|
|
|
|
|
- Detach slaves without deleting them: RHBZ #1749632
|
|
|
|
|
|
|
|
|
|
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-14
|
|
|
|
|
- Preserve (dynamic) IPv6 address base on MAC address: RHBZ #1748825
|
|
|
|
|
|
|
|
|
|
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-13
|
|
|
|
|
- Prioritize master interfaces activaction: RHBZ #1749314
|
|
|
|
|
|
|
|
|
|
* Mon Sep 02 2019 Gris Ge <fge@redhat.com> - 0.0.8-12
|
|
|
|
|
- Fix slave activatoin race: RHBZ #1741440
|
|
|
|
|
|
|
|
|
|
* Mon Sep 02 2019 Gris Ge <fge@redhat.com - 0.0.8-11
|
|
|
|
|
- Add NetworkManager-config-server dependency: Fix RHBZ #1740085
|
|
|
|
|
|
|
|
|
|
* Thu Aug 15 2019 Gris Ge <fge@redhat.com> - 0.0.8-10
|
|
|
|
|
- Fix RHBZ #1740125
|
|
|
|
|
|
|
|
|
|
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-9
|
|
|
|
|
- Fix RHBZ #1741049
|
|
|
|
|
|
|
|
|
|
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-8
|
|
|
|
|
- Fix RHBZ #1740584
|
|
|
|
|
|
|
|
|
|
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-7
|
|
|
|
|
- Fix RHBZ #1740554
|
|
|
|
|
|
|
|
|
|
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-6
|
|
|
|
|
- Bump release tag as CNV took the -5.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-5
|
|
|
|
|
- Bump release tag as CNV took the -4.
|
|
|
|
|
|
|
|
|
|
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-4
|
|
|
|
|
- Disable reapply on ipv6 to fix bug 1738101.
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-3
|
|
|
|
|
- Fix the license to meet Fedora/RHEL guideline.
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-2
|
|
|
|
|
- Relicense to LGPL2.1+.
|
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.8-2
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-1
|
|
|
|
|
- Upgrade to 0.0.8.
|
|
|
|
|
|
|
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.7-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-2
|
|
|
|
|
- Workaround broken dbus-python packaging:
|
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1654774
|
|
|
|
|
|
|
|
|
|
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-1
|
|
|
|
|
- Upgrade to 0.0.7.
|
|
|
|
|
- Upgrade to 0.0.7
|
|
|
|
|
|
|
|
|
|
* Mon Apr 22 2019 Gris Ge <fge@redhat.com> - 0.0.5-3
|
|
|
|
|
- Add missing runtime dependency.
|
|
|
|
|
* Sun May 05 2019 Gris Ge <fge@redhat.com> - 0.0.6-1
|
|
|
|
|
- Upgrade to 0.0.6
|
|
|
|
|
|
|
|
|
|
* Thu Mar 21 2019 Gris Ge <fge@redhat.com> - 0.0.5-2
|
|
|
|
|
- Rebuild to enable CI testing.
|
|
|
|
|
* Fri Apr 12 2019 Gris Ge <fge@redhat.com - 0.0.5-2
|
|
|
|
|
- Add missing runtime requirement: python3-dbus
|
|
|
|
|
|
|
|
|
|
* Mon Mar 18 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
|
|
|
|
|
- Initial release
|
|
|
|
|
* Tue Mar 12 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
|
|
|
|
|
- Upgrade to 0.0.5
|
|
|
|
|
|
|
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.4-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jan 29 2019 Till Maas <opensource@till.name> - 0.0.4-2
|
|
|
|
|
- Sync with upstream spec
|
|
|
|
|
- Use Recommends for NetworkManager
|
|
|
|
|
- Add Suggests for NetworkManager-ovs
|
|
|
|
|
- package examples as doc
|
|
|
|
|
|
|
|
|
|
* Thu Jan 24 2019 Gris Ge <fge@redhat.com> - 0.0.4-1
|
|
|
|
|
- Upgrade to 0.0.4.
|
|
|
|
|
|
|
|
|
|
* Mon Jan 21 2019 Gris Ge <fge@redhat.com> - 0.0.3-3
|
|
|
|
|
- Add missing runtime dependency for nmstatectl.
|
|
|
|
|
|
|
|
|
|
* Wed Jan 02 2019 Gris Ge <fge@redhat.com> - 0.0.3-2
|
|
|
|
|
- Add source file PGP verification.
|
|
|
|
|
|
|
|
|
|
* Thu Dec 20 2018 Gris Ge <fge@redhat.com> - 0.0.3-1
|
|
|
|
|
- Upgrade to 0.0.3.
|
|
|
|
|
|
|
|
|
|
* Mon Dec 03 2018 Gris Ge <fge@redhat.com> - 0.0.2-2
|
|
|
|
|
- Trival RPM SPEC fix.
|
|
|
|
|
|
|
|
|
|
* Wed Nov 28 2018 Gris Ge <fge@redhat.com> - 0.0.2-1
|
|
|
|
|
- Initial release.
|
|
|
|
|