|
|
aa1b57 |
%?python_enable_dependency_generator
|
|
|
aa1b57 |
%define srcname nmstate
|
|
|
aa1b57 |
%define libname libnmstate
|
|
|
aa1b57 |
|
|
|
aa1b57 |
Name: nmstate
|
|
|
103d3f |
Version: 1.2.1
|
|
|
103d3f |
Release: 0.1.alpha1%{?dist}
|
|
|
aa1b57 |
Summary: Declarative network manager API
|
|
|
aa1b57 |
License: LGPLv2+
|
|
|
aa1b57 |
URL: https://github.com/%{srcname}/%{srcname}
|
|
|
103d3f |
Source0: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha1.tar.gz
|
|
|
103d3f |
Source1: %{url}/releases/download/v%{version}/%{srcname}-%{version}-alpha1.tar.gz.asc
|
|
|
04140e |
Source2: https://www.nmstate.io/nmstate.gpg
|
|
|
103d3f |
Source3: nmstate-rust-vendor-%{version}-alpha1.tar.xz
|
|
|
aa1b57 |
BuildRequires: python3-devel
|
|
|
aa1b57 |
BuildRequires: python3-setuptools
|
|
|
aa1b57 |
BuildRequires: gnupg2
|
|
|
abcb34 |
BuildRequires: rust-toolset
|
|
|
abcb34 |
BuildRequires: pkg-config
|
|
|
aa1b57 |
Requires: python3-setuptools
|
|
|
aa1b57 |
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
aa1b57 |
|
|
|
aa1b57 |
%description
|
|
|
aa1b57 |
Nmstate is a library with an accompanying command line tool that manages host
|
|
|
aa1b57 |
networking settings in a declarative manner and aimed to satisfy enterprise
|
|
|
aa1b57 |
needs to manage host networking through a northbound declarative API and multi
|
|
|
aa1b57 |
provider support on the southbound.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
|
|
|
aa1b57 |
%package -n python3-%{libname}
|
|
|
aa1b57 |
Summary: nmstate Python 3 API library
|
|
|
abcb34 |
BuildArch: noarch
|
|
|
1efb16 |
Requires: NetworkManager-libnm >= 1:1.26.0
|
|
|
aa1b57 |
# Use Recommends for NetworkManager because only access to NM DBus is required,
|
|
|
aa1b57 |
# but NM could be running on a different host
|
|
|
aa1b57 |
Recommends: NetworkManager
|
|
|
aa1b57 |
# Avoid automatically generated profiles
|
|
|
aa1b57 |
Recommends: NetworkManager-config-server
|
|
|
aa1b57 |
# Use Suggests for NetworkManager-ovs and NetworkManager-team since it is only
|
|
|
aa1b57 |
# required for OVS and team support
|
|
|
aa1b57 |
Suggests: NetworkManager-ovs
|
|
|
aa1b57 |
Suggests: NetworkManager-team
|
|
|
9ba9be |
Requires: nispor
|
|
|
9ba9be |
Requires: python3dist(varlink)
|
|
|
aa1b57 |
|
|
|
04140e |
%package -n nmstate-plugin-ovsdb
|
|
|
04140e |
Summary: nmstate plugin for OVS database manipulation
|
|
|
abcb34 |
BuildArch: noarch
|
|
|
04140e |
Requires: python3-%{libname} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
04140e |
# The python-openvswitch rpm pacakge is not in the same repo with nmstate,
|
|
|
04140e |
# hence state it as Recommends, no requires.
|
|
|
04140e |
Recommends: python3dist(ovs)
|
|
|
aa1b57 |
|
|
|
abcb34 |
|
|
|
abcb34 |
%package libs
|
|
|
abcb34 |
Summary: C binding of nmstate
|
|
|
abcb34 |
License: ASL 2.0
|
|
|
abcb34 |
|
|
|
abcb34 |
%package devel
|
|
|
abcb34 |
Summary: C binding development files of nmstate
|
|
|
abcb34 |
License: ASL 2.0
|
|
|
abcb34 |
Requires: nmstate-libs%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
abcb34 |
|
|
|
abcb34 |
%description libs
|
|
|
abcb34 |
This package contains the C binding of nmstate.
|
|
|
abcb34 |
|
|
|
abcb34 |
%description devel
|
|
|
abcb34 |
This package contains the C binding development files of nmstate.
|
|
|
abcb34 |
|
|
|
aa1b57 |
%description -n python3-%{libname}
|
|
|
aa1b57 |
This package contains the Python 3 library for nmstate.
|
|
|
aa1b57 |
|
|
|
04140e |
%description -n nmstate-plugin-ovsdb
|
|
|
04140e |
This package contains the nmstate plugin for OVS database manipulation.
|
|
|
04140e |
|
|
|
aa1b57 |
%prep
|
|
|
14e0a8 |
gpg2 --import --import-options import-export,import-minimal %{SOURCE2} > ./gpgkey-mantainers.gpg
|
|
|
14e0a8 |
gpgv2 --keyring ./gpgkey-mantainers.gpg %{SOURCE1} %{SOURCE0}
|
|
|
aa1b57 |
%autosetup -p1
|
|
|
aa1b57 |
|
|
|
abcb34 |
pushd rust
|
|
|
abcb34 |
# Source3 is vendored dependencies
|
|
|
abcb34 |
%cargo_prep -V 3
|
|
|
abcb34 |
|
|
|
abcb34 |
# The cargo_prep will create `.cargo/config` which take precedence over
|
|
|
abcb34 |
# `.cargo/config.toml` shipped by upstream which fix the SONAME of cdylib.
|
|
|
abcb34 |
# To workaround that, merge upstream rustflags into cargo_prep created one.
|
|
|
abcb34 |
_FLAGS=`sed -ne 's/rustflags = "\(.\+\)"/\1/p' .cargo/config.toml`
|
|
|
abcb34 |
sed -i -e "s/rustflags = \[\(.\+\), \]$/rustflags = [\1, \"$_FLAGS\"]/" \
|
|
|
abcb34 |
.cargo/config
|
|
|
abcb34 |
rm .cargo/config.toml
|
|
|
abcb34 |
|
|
|
abcb34 |
popd
|
|
|
abcb34 |
|
|
|
aa1b57 |
%build
|
|
|
aa1b57 |
%py3_build
|
|
|
aa1b57 |
|
|
|
abcb34 |
pushd rust
|
|
|
abcb34 |
make
|
|
|
abcb34 |
popd
|
|
|
abcb34 |
|
|
|
aa1b57 |
%install
|
|
|
aa1b57 |
%py3_install
|
|
|
abcb34 |
pushd rust
|
|
|
abcb34 |
env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} LIBDIR=%{_libdir} %make_install
|
|
|
abcb34 |
popd
|
|
|
aa1b57 |
|
|
|
aa1b57 |
%files
|
|
|
aa1b57 |
%doc README.md
|
|
|
aa1b57 |
%doc examples/
|
|
|
aa1b57 |
%{_mandir}/man8/nmstatectl.8*
|
|
|
814c5f |
%{_mandir}/man8/nmstate-autoconf.8*
|
|
|
aa1b57 |
%{python3_sitelib}/nmstatectl
|
|
|
aa1b57 |
%{_bindir}/nmstatectl
|
|
|
abcb34 |
%{_bindir}/nmstatectl-rust
|
|
|
814c5f |
%{_bindir}/nmstate-autoconf
|
|
|
aa1b57 |
|
|
|
aa1b57 |
%files -n python3-%{libname}
|
|
|
aa1b57 |
%license LICENSE
|
|
|
aa1b57 |
%{python3_sitelib}/%{libname}
|
|
|
aa1b57 |
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
|
04140e |
%exclude %{python3_sitelib}/%{libname}/plugins/nmstate_plugin_*
|
|
|
04140e |
%exclude %{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_*
|
|
|
04140e |
|
|
|
04140e |
%files -n nmstate-plugin-ovsdb
|
|
|
04140e |
%{python3_sitelib}/%{libname}/plugins/nmstate_plugin_ovsdb*
|
|
|
04140e |
%{python3_sitelib}/%{libname}/plugins/__pycache__/nmstate_plugin_ovsdb*
|
|
|
aa1b57 |
|
|
|
abcb34 |
%files libs
|
|
|
abcb34 |
%license rust/LICENSE
|
|
|
abcb34 |
%{_libdir}/libnmstate.so.*
|
|
|
abcb34 |
|
|
|
abcb34 |
%files devel
|
|
|
abcb34 |
%license LICENSE
|
|
|
abcb34 |
%{_libdir}/libnmstate.so
|
|
|
abcb34 |
%{_includedir}/nmstate.h
|
|
|
abcb34 |
%{_libdir}/pkgconfig/nmstate.pc
|
|
|
abcb34 |
|
|
|
abcb34 |
%post libs
|
|
|
abcb34 |
/sbin/ldconfig
|
|
|
abcb34 |
|
|
|
abcb34 |
%postun libs
|
|
|
abcb34 |
/sbin/ldconfig
|
|
|
abcb34 |
|
|
|
aa1b57 |
%changelog
|
|
|
103d3f |
* Thu Jan 13 2022 Gris Ge <fge@redhat.com> - 1.2.1-0.1.alpha1
|
|
|
103d3f |
- Upgrade to 1.2.1 alpha1. RHBZ#1996618
|
|
|
103d3f |
|
|
|
38c211 |
* Thu Dec 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.2.0-1
|
|
|
38c211 |
- Upgrade to 1.2.0. RHBZ#1996618
|
|
|
38c211 |
|
|
|
abcb34 |
* Thu Dec 09 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha2
|
|
|
abcb34 |
- Upgrade to 1.2.0 alpha2. RHBZ#1996618
|
|
|
abcb34 |
|
|
|
b43e9e |
* Tue Oct 12 2021 Gris Ge <fge@redhat.com> - 1.2.0-0.1.alpha1
|
|
|
b43e9e |
- Upgrade to 1.2.0 alpha1.
|
|
|
b43e9e |
|
|
|
3183b1 |
* Wed Sep 15 2021 Ana Cabral <acabral@redhat.com> - 1.1.1-0.1.alpha1
|
|
|
3183b1 |
- Upgrade to 1.1.1 alpha1.
|
|
|
b43e9e |
- Canonicalize ipv6 addresses for dns nameservers. RHBZ#1911241
|
|
|
b43e9e |
- Throw better error when peer is missing for veth interfaces. RHBZ#1973973
|
|
|
3183b1 |
|
|
|
e6c094 |
* Tue Jul 27 2021 Gris Ge <fge@redhat.com> - 1.1.0-3
|
|
|
e6c094 |
- Fix state=ignore for OVS interface. RHBZ#1944054
|
|
|
e6c094 |
- Fix verification for next hop address 0.0.0.0. RHBZ#1985879
|
|
|
e6c094 |
|
|
|
e3e53c |
* Fri Jul 23 2021 Gris Ge <fge@redhat.com> - 1.1.0-2
|
|
|
e3e53c |
- Preserving existing ethtool settings. RHBZ#1984764
|
|
|
e3e53c |
|
|
|
814c5f |
* Thu Jul 15 2021 Gris Ge <fge@redhat.com> - 1.1.0-1
|
|
|
814c5f |
- Upgrade to 1.1.0.
|
|
|
814c5f |
|
|
|
42bd20 |
* Fri Jul 09 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.7.alpha7
|
|
|
42bd20 |
- Upgarde to 1.1.0 alpha7.
|
|
|
42bd20 |
|
|
|
072bb2 |
* Thu Jul 01 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.6.alpha6
|
|
|
072bb2 |
- Upgrade to 1.1.0 alpha6.
|
|
|
072bb2 |
|
|
|
b80e40 |
* Mon Jun 21 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.5.alpha4
|
|
|
b80e40 |
- Upgrade to 1.1.0 alpha4.
|
|
|
b80e40 |
|
|
|
b80e40 |
* Wed Jun 16 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.4.alpha3
|
|
|
b80e40 |
- Rebuild to introduce CI gating tier1 tests. RHBZ#1813357
|
|
|
b80e40 |
|
|
|
7796e6 |
* Tue Jun 08 2021 Gris Ge <fge@redhat.com> - 1.1.0-0.3.alpha3
|
|
|
7796e6 |
- Upgrade to 1.1.0 alpha3.
|
|
|
7796e6 |
|
|
|
239852 |
* Mon Jun 07 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.1.0-0.2
|
|
|
239852 |
- Upgrade to 1.1.0 alpha2.
|
|
|
239852 |
|
|
|
e84017 |
* Wed May 19 2021 Wen Liang <wenliang@redhat.com> - 1.1.0-0.1
|
|
|
e84017 |
- Upgrade to 1.1.0 alpha1.
|
|
|
e84017 |
|
|
|
e84017 |
* Tue Apr 20 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.3-1
|
|
|
e84017 |
- Upgrade to 1.0.3. RHBZ#1942458
|
|
|
e84017 |
|
|
|
c2c30c |
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-6
|
|
|
c2c30c |
- Rebuild for RHEL 8.5. RHBZ#1935710
|
|
|
c2c30c |
|
|
|
c2c30c |
* Fri Mar 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-5
|
|
|
c2c30c |
- New patch for fixing unmanaged interfaces being managed. RHBZ#1935710
|
|
|
b2ff4f |
|
|
|
a23721 |
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-4
|
|
|
a23721 |
- New patch for SRIOV decrease VF amount. RHBZ#1931355
|
|
|
a23721 |
|
|
|
a23721 |
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-3
|
|
|
a23721 |
- Fix actiation failure when decrease VF mount on i40e. RHBZ#1931355
|
|
|
a23721 |
|
|
|
a23721 |
* Tue Feb 23 2021 Gris Ge <fge@redhat.com> - 1.0.2-2
|
|
|
a23721 |
- Fix nmstatectl return code of `set` command. RHBZ#1931751
|
|
|
a23721 |
|
|
|
256424 |
* Fri Feb 19 2021 Gris Ge <fge@redhat.com> - 1.0.2-1
|
|
|
256424 |
- Upgrade to 1.0.2.
|
|
|
256424 |
|
|
|
d4cae7 |
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.3
|
|
|
d4cae7 |
- Fix sources name
|
|
|
d4cae7 |
|
|
|
d4cae7 |
* Wed Feb 10 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.2
|
|
|
d4cae7 |
- Upgrade to 1.0.2 alpha 2
|
|
|
d4cae7 |
|
|
|
f4b6f9 |
* Tue Jan 26 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.2-0.1
|
|
|
f4b6f9 |
- Upgrade to 1.0.2 alpha 1
|
|
|
f4b6f9 |
|
|
|
65d260 |
* Tue Jan 19 2021 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.1-1
|
|
|
65d260 |
- Upgrade to 1.0.1. RHBZ#1881287
|
|
|
65d260 |
|
|
|
42f1fb |
* Tue Jan 05 2021 Gris Ge <fge@redhat.com> - 1.0.1-0.1
|
|
|
42f1fb |
- Upgrade to 1.0.1 alpha 1
|
|
|
42f1fb |
|
|
|
a9ab5e |
* Tue Dec 08 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 1.0.0-1
|
|
|
a9ab5e |
- Upgrade to 1.0.0
|
|
|
a9ab5e |
|
|
|
a9ab5e |
* Mon Nov 16 2020 Gris Ge <fge@redhat.com> - 1.0.0-0.1
|
|
|
a9ab5e |
- Upgrade to 1.0.0 alpha 1
|
|
|
a9ab5e |
|
|
|
5b7831 |
* Wed Oct 28 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-2
|
|
|
5b7831 |
- Allow VRF port to hold IP information
|
|
|
5b7831 |
|
|
|
a9ab5e |
* Thu Oct 22 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.1-1
|
|
|
fd0524 |
- Upgrade to 0.4.1
|
|
|
fd0524 |
|
|
|
9ba9be |
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-3
|
|
|
9ba9be |
- Add nispor as a dependency for CI gating
|
|
|
9ba9be |
|
|
|
9ba9be |
* Tue Oct 20 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-2
|
|
|
9ba9be |
- Rebuild for CI gating
|
|
|
9ba9be |
- Remove old patches from the repository
|
|
|
9ba9be |
|
|
|
9ba9be |
* Mon Sep 14 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.4.0-1
|
|
|
9ba9be |
- Upgrade to 0.4.0
|
|
|
9ba9be |
- Sync. up with upstream spec file.
|
|
|
9ba9be |
|
|
|
65926b |
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-12
|
|
|
65926b |
- New patch: OVSDB: Allowing remove all OVS ports. RHBZ#1869345
|
|
|
65926b |
|
|
|
65926b |
* Tue Aug 18 2020 Gris Ge <fge@redhat.com> - 0.3.4-11
|
|
|
65926b |
- OVSDB: Allowing remove all OVS ports. RHBZ#1869345
|
|
|
65926b |
|
|
|
6b96d4 |
* Thu Aug 06 2020 Gris Ge <fge@redhat.com> - 0.3.4-10
|
|
|
6b96d4 |
- OVSDB: Preserv old external_ids. RHBZ#1866269
|
|
|
6b96d4 |
|
|
|
97e10a |
* Tue Aug 04 2020 Gris Ge <fge@redhat.com> - 0.3.4-9
|
|
|
97e10a |
- Fix converting memory only profile to persistent. RHBZ#1859844
|
|
|
97e10a |
|
|
|
97e10a |
* Mon Aug 03 2020 Gris Ge <fge@redhat.com> - 0.3.4-8
|
|
|
97e10a |
- Fix failure when adding ovs bond to existing bridge. RHBZ#1858758
|
|
|
97e10a |
|
|
|
58157e |
* Thu Jul 30 2020 Gris Ge <fge@redhat.com> - 0.3.4-7
|
|
|
58157e |
- Remove existing inactivate NM profiles. RHBZ#1862025
|
|
|
58157e |
|
|
|
7b1ef6 |
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-6
|
|
|
7b1ef6 |
- New build to retrigger the CI gating.
|
|
|
7b1ef6 |
|
|
|
7b1ef6 |
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-5
|
|
|
7b1ef6 |
- Use new patch. RHBZ#1861668
|
|
|
7b1ef6 |
|
|
|
7b1ef6 |
* Wed Jul 29 2020 Gris Ge <fge@redhat.com> - 0.3.4-4
|
|
|
7b1ef6 |
- Ignore unknown interface. RHBZ#1861668
|
|
|
7b1ef6 |
|
|
|
96886b |
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-3
|
|
|
96886b |
- Add support NetworkManaged exteranl managed interface. RHBZ#1861263
|
|
|
96886b |
|
|
|
96886b |
* Tue Jul 28 2020 Gris Ge <fge@redhat.com> - 0.3.4-2
|
|
|
96886b |
- Hide MTU for OVS patch port. RHBZ#1858762
|
|
|
96886b |
|
|
|
1efb16 |
* Sat Jul 25 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.4-1
|
|
|
1efb16 |
- Upgrade to 0.3.4
|
|
|
1efb16 |
|
|
|
1efb16 |
* Fri Jul 24 2020 Gris Ge <fge@redhat.com> - 0.3.3-3
|
|
|
1efb16 |
- Allowing child been marked absent. RHBZ#1859148
|
|
|
1efb16 |
|
|
|
04140e |
* Mon Jul 06 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-2
|
|
|
04140e |
- Fix bug 1850698
|
|
|
04140e |
|
|
|
04140e |
* Thu Jul 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.3-1
|
|
|
04140e |
- Upgrade to 0.3.3
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-6
|
|
|
04140e |
- Improve performance by remove unneeded calls. RHBZ#1820009
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-5
|
|
|
04140e |
- Sort the pretty state with priority. RHBZ#1806474
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-4
|
|
|
04140e |
- Canonicalize IP address. RHBZ#1816612
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-3
|
|
|
04140e |
- Improve VLAN MTU error message. RHBZ#1788763
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 29 2020 Gris Ge <fge@redhat.com> - 0.3.2-2
|
|
|
04140e |
- Fix bug 1850698
|
|
|
04140e |
|
|
|
04140e |
* Mon Jun 15 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.2-1
|
|
|
04140e |
- Upgrade to 0.3.2
|
|
|
04140e |
- Sync. up with upstream spec file
|
|
|
04140e |
|
|
|
04140e |
* Thu Jun 11 2020 Gris Ge <fge@redhat.com> - 0.3.1-1
|
|
|
04140e |
- Upgrade to 0.3.1
|
|
|
04140e |
|
|
|
14e0a8 |
* Wed May 13 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.3.0-1
|
|
|
14e0a8 |
- Upgrade to 0.3.0
|
|
|
14e0a8 |
- Sync. up with upstream spec file.
|
|
|
14e0a8 |
- Update signature verification.
|
|
|
14e0a8 |
|
|
|
14e0a8 |
* Tue Mar 31 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.9-1
|
|
|
14e0a8 |
- Upgrade to 0.2.9
|
|
|
14e0a8 |
|
|
|
aa1b57 |
* Wed Mar 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-6
|
|
|
aa1b57 |
- Support 3+ DNS name server(IPv4 only or IPv6 only). RHBZ #1816043
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Mar 20 2020 Gris Ge <fge@redhat.com> - 0.2.6-5
|
|
|
aa1b57 |
- Support static DNS with DHCP. RHBZ #1815112
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Mar 12 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-4.8
|
|
|
aa1b57 |
- Fix bond mac and options regression. RHBZ #1809330
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Mar 09 2020 Gris Ge <fge@redhat.com> - 0.2.6-3.8
|
|
|
aa1b57 |
- Fix change bond mode. RHBZ #1809330
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Mar 02 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.6-2.7
|
|
|
aa1b57 |
- Fix cmd stuck when trying to create ovs-bond. RHBZ #1806249.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Feb 25 2020 Gris Ge <fge@redhat.com> - 0.2.6-1
|
|
|
aa1b57 |
- Upgrade to 0.2.6
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Feb 20 2020 Gris Ge <fge@redhat.com> - 0.2.5-1
|
|
|
aa1b57 |
- Upgrade to 0.2.5
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-2
|
|
|
aa1b57 |
- Fix failure when editing existing OVS interface. RHBZ #1786935
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Feb 13 2020 Gris Ge <fge@redhat.com> - 0.2.4-1
|
|
|
aa1b57 |
- Upgrade to 0.2.4
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Wed Feb 05 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.3-1
|
|
|
aa1b57 |
- Upgrade to 0.2.3
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-3
|
|
|
aa1b57 |
- Fix the incorrect source
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Feb 04 2020 Fernando Fernandez Mancera <ferferna@redhat.com> - 0.2.2-2
|
|
|
aa1b57 |
- Upgrade to 0.2.2
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Wed Jan 22 2020 Gris Ge <fge@redhat.com> - 0.2.0-3.1
|
|
|
aa1b57 |
- Fix the memeory leak of NM.Client. RHBZ #1784707
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-2
|
|
|
aa1b57 |
- Fix the incorrect source tarbal.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.2.0-1
|
|
|
aa1b57 |
- Upgrade to nmstate 0.2.0
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-4
|
|
|
aa1b57 |
- Fix the problem found by CI gating.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-3
|
|
|
aa1b57 |
- Bump dist number as RHEL 8.1.1 took 0.1.1-2.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Dec 02 2019 Gris Ge <fge@redhat.com> - 0.1.1-2
|
|
|
aa1b57 |
- Upgrade to nmstate 0.1.1.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Sep 10 2019 Gris Ge <fge@redhat.com> - 0.0.8-15
|
|
|
aa1b57 |
- Detach slaves without deleting them: RHBZ #1749632
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-14
|
|
|
aa1b57 |
- Preserve (dynamic) IPv6 address base on MAC address: RHBZ #1748825
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Sep 06 2019 Gris Ge <fge@redhat.com> - 0.0.8-13
|
|
|
aa1b57 |
- Prioritize master interfaces activaction: RHBZ #1749314
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Sep 02 2019 Gris Ge <fge@redhat.com> - 0.0.8-12
|
|
|
aa1b57 |
- Fix slave activatoin race: RHBZ #1741440
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Sep 02 2019 Gris Ge
|
|
|
aa1b57 |
- Add NetworkManager-config-server dependency: Fix RHBZ #1740085
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Aug 15 2019 Gris Ge <fge@redhat.com> - 0.0.8-10
|
|
|
aa1b57 |
- Fix RHBZ #1740125
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-9
|
|
|
aa1b57 |
- Fix RHBZ #1741049
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Wed Aug 14 2019 Gris Ge <fge@redhat.com> - 0.0.8-8
|
|
|
aa1b57 |
- Fix RHBZ #1740584
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-7
|
|
|
aa1b57 |
- Fix RHBZ #1740554
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-6
|
|
|
aa1b57 |
- Bump release tag as CNV took the -5.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-5
|
|
|
aa1b57 |
- Bump release tag as CNV took the -4.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Tue Aug 13 2019 Gris Ge <fge@redhat.com> - 0.0.8-4
|
|
|
aa1b57 |
- Disable reapply on ipv6 to fix bug 1738101.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-3
|
|
|
aa1b57 |
- Fix the license to meet Fedora/RHEL guideline.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-2
|
|
|
aa1b57 |
- Relicense to LGPL2.1+.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Jul 26 2019 Gris Ge <fge@redhat.com> - 0.0.8-1
|
|
|
aa1b57 |
- Upgrade to 0.0.8.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Fri Jun 14 2019 Gris Ge <fge@redhat.com> - 0.0.7-1
|
|
|
aa1b57 |
- Upgrade to 0.0.7.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Apr 22 2019 Gris Ge <fge@redhat.com> - 0.0.5-3
|
|
|
aa1b57 |
- Add missing runtime dependency.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Thu Mar 21 2019 Gris Ge <fge@redhat.com> - 0.0.5-2
|
|
|
aa1b57 |
- Rebuild to enable CI testing.
|
|
|
aa1b57 |
|
|
|
aa1b57 |
* Mon Mar 18 2019 Gris Ge <fge@redhat.com> - 0.0.5-1
|
|
|
aa1b57 |
- Initial release
|