Skip to content

Commit

Permalink
Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ipspace committed Oct 1, 2022
1 parent 8991848 commit 8bb6f28
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Interested? [Read the documentation](https://netsim-tools.readthedocs.io/) and [

## Releases

The latest release is [release 1.3.1](https://github.com/ipspace/netlab/releases/tag/release_1.3.1). It should be pretty stable, otherwise there's always the 1.2 release train.
The latest release is [release 1.3.2](https://github.com/ipspace/netlab/releases/tag/release_1.3.2). It should be pretty stable, otherwise there's always the 1.2 release train.

More details in [release notes](https://netsim-tools.readthedocs.io/en/latest/release.html).

Expand Down
11 changes: 11 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Release notes
=============

2022-10-01 (release 1.3.2)
* Mikrotik RouterOS version 7 support by Stefano Sasso, including IPv4, IPv6, VLANs, VRFs, OSPFv2, OSPFv3, BGP, MPLS, MPLS/VPN
* Nokia SR OS support for VLAN, VXLAN, EVPN, VRF, and OSPFv3 by Jeroen van Bemmel
* OSPFv3 on Cumulus Linux and Nexus OS
* EVPN (bridging and symmetric IRB) on Nexus OS
* EVPN VLAN bundle service on SR Linux
* EVPN transit VNI shared between VRFs
* Define VLAN and VRF parameters in groups

:doc:`More details <release/1.3>`

2022-09-17 (release 1.3.1)
* VXLAN, VLANs, VRFs, and EVPN implemented on FRR and Cumulus Linux
* BGP local-as implemented in the BGP configuration module and supported on Arista EOS, Cisco IOS, Dell OS10, FRR, and Nokia SR Linux.
Expand Down
35 changes: 35 additions & 0 deletions docs/release/1.3.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changes in Release 1.3

## New Functionality in Release 1.3.2

* [Mikrotik RouterOS version 7](../platforms.md) support by Stefano Sasso, including IPv4, IPv6, VLANs, VRFs, OSPFv2, OSPFv3, BGP, MPLS, MPLS/VPN, and libvirt [box building recipe](../labs/routeros7.md)
* [Nokia SR OS support](../platforms.md#supported-configuration-modules) for VLAN, VXLAN, EVPN, VRF, and OSPFv3 by Jeroen van Bemmel
* [OSPFv3](../module/ospf.md) on Cumulus Linux and Nexus OS
* [EVPN](../module/evpn.md) (bridging and symmetric IRB) on Nexus OS
* EVPN VLAN bundle service on SR Linux
* EVPN transit VNI [shared between VRFs](../module/evpn.md#integrated-routing-and-bridging)
* [Define VLAN and VRF parameters in groups](../groups.md#using-group-node-data-with-vrfs-and-vlans)
* [Disable OSPF, EIGRP, or IS-IS](routing_disable) on a link or an interface
* [Disable EBGP sessions](routing_disable) on a link or an interface
* EVPN over IPv6 LLA sessions on Cumulus Linux and FRR
* BGP local-as on EBGP VRF sessions on Cumulus Linux
* Configurable BGP address families on VyOS and Dell OS10
* Static IPv4/IPv6 address on *containerlab* management network

## New Functionality in Release 1.3.1

* VXLAN, VLANs, VRFs, and EVPN [implemented on](platform-dataplane-support) FRR and Cumulus Linux
Expand Down Expand Up @@ -37,6 +53,25 @@ We renamed *netsim-tools* project to *netlab*. There is no change to the functio

The Python package has been renamed to *networklab* which is a dependency of *netsim-tools* package. Upgrading *netsim-tools* will also install or upgrade *networklab*.

## Bug Fixes in Release 1.3.2

* Check global- and device-specific module requirements for each node
* Control IPv6 interface state on FRR
* Pull VRFs associated with node VLANs into node data
* 'netlab libvirt package' cannot use inactivated vagrant-libvirt network
* Cumulus Linux VM does not recognize all files in /etc/network/interface.d
* Pass multiple CLI parameters to network devices with 'netlab connect'
* 'netlab libvirt package' command works with virt-install 4.0.0 on Ubuntu 22.04
* Remove IGP parameters from a VRF l2-only interface
* Don't enable LDP on interfaces without an IPv4 address
* Use a route-map to implement IPv4/IPv6 next-hop-self on Arista EOS
* Use only valid IPv4 addresses from non-hosts as LAN default gateway
* Copying VRF-aware node attributes into interface data
* Fix routed native VLAN handling
* FRR: Upgrade to v8.3.1 broke OSPFv3 configuration
* Linux: avoid static routes to interface subnets overlapping address pools
* Normalize IP address pool strings (check pool prefixes for host bits)

## Bug Fixes in Release 1.3.1

* Cumulus Linux OSPF template would crash in VRF-only scenarios
Expand Down
2 changes: 1 addition & 1 deletion legacy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

sys.path.append('..')

version="1.3.1-post3"
version="1.3.2"

setup(
name="netsim-tools",
Expand Down
2 changes: 1 addition & 1 deletion netsim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env python3

__version__ = "1.3.1-post3"
__version__ = "1.3.2"

0 comments on commit 8bb6f28

Please sign in to comment.