Skip to content

Commit

Permalink
Release 1.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ipspace committed Jun 22, 2024
1 parent 3770a6f commit 6309d1a
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 3 deletions.
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm

ENV NETLAB_DEVICES_FRR_CLAB_GROUP__VARS_NETLAB__MGMT__VRF=False
ENV ANSIBLE_CONFIG=./ansible.cfg
LABEL org.opencontainers.image.source https://github.com/ipspace/netlab

RUN echo "deb [trusted=yes] https://netdevops.fury.site/apt/ /" | \
tee -a /etc/apt/sources.list.d/netdevops.list
Expand Down
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://netlab.tools) and [installation gui

## Releases

The latest release is [release 1.8.3](https://github.com/ipspace/netlab/releases/tag/release_1.8.3), and as always, it might have a few bugs. Should you encounter one of those creatures, please report it with [a GitHub issue](https://github.com/ipspace/netlab/issues/new/choose) and use release [1.8.2](https://github.com/ipspace/netlab/releases/tag/release_1.8.2) or [1.7.2](https://github.com/ipspace/netlab/releases/tag/release_1.7.2).
The latest release is [release 1.8.4](https://github.com/ipspace/netlab/releases/tag/release_1.8.4), and as always, it might have a few bugs. Should you encounter one of those creatures, please report it with [a GitHub issue](https://github.com/ipspace/netlab/issues/new/choose) and use release [1.8.3](https://github.com/ipspace/netlab/releases/tag/release_1.8.2) or [1.7.2](https://github.com/ipspace/netlab/releases/tag/release_1.7.2).

<!--
If you encounter bugs using release 1.7.x, please downgrade to [1.6.4](https://github.com/ipspace/netlab/releases/tag/release_1.6.4) and [open a GitHub issue](https://github.com/ipspace/netlab/issues).
Expand Down
8 changes: 8 additions & 0 deletions docs/release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release Notes
=============

**[Release 1.8.4](release-1.8.4) (2024-06-22)**

* Support for [Cisco Catalyst 8000v](platform-devices)
* Unified support of [vrnetlab containers](clab-vrnetlab) (including ArubaCX, Cisco Catalyst 8000v, Cisco CSR 1000v, Dell OS10, Cisco Nexus 9000v, Mikrotik RouterOS, Juniper vMX, vPTX and vSRX)
* Automated build of [GitHub Codespaces devcontainer](https://github.com/users/ipspace/packages/container/package/netlab%2Fdevcontainer)
* Handle keyboard interrupts in long-running netlab commands, including **[netlab up](netlab-up)**, **[netlab initial](netlab-initial)** and **[netlab validate](netlab-validate)**.
* Add `--ready` action to **[netlab initial](netlab-initial)** command to wait for lab devices to become ready without configuring them.

**[Release 1.8.3](release-1.8.3) (2024-06-16)**

* [RIPv2/RIPng configuration module](module-ripv2)
Expand Down
21 changes: 21 additions & 0 deletions docs/release/1.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@

## New Functionality

(release-1.8.4)=
### Release 1.8.4

* Support for [Cisco Catalyst 8000v](platform-devices)
* Unified support of [vrnetlab containers](clab-vrnetlab) (including ArubaCX, Cisco Catalyst 8000v, Cisco CSR 1000v, Dell OS10, Cisco Nexus 9000v, Mikrotik RouterOS, Juniper vMX, vPTX and vSRX)
* Automated build of GitHub Codespaces devcontainer
* Handle keyboard interrupts in long-running netlab commands, including **[netlab up](netlab-up)**, **[netlab initial](netlab-initial)** and **[netlab validate](netlab-validate)**.
* Add `--ready` action to **[netlab initial](netlab-initial)** command to wait for lab devices to become ready without configuring them.

(release-1.8.4-device-features)=
**New device features:**

* VyOS: support for RIPv2 and RIPng

(release-1.8.3)=
### Release 1.8.3

Expand Down Expand Up @@ -270,6 +284,13 @@ devices.linux.group_vars.netlab_lldp_enable: True

## Bug Fixes

(bug-fixes-1.8.4)=
### Bug Fixes in Release 1.8.4

* Add missing IOS XR initial configuration file
* Fix OSPFv3 unnumbered integration test
* Rewrite FRR/clab modprobe test to work around Ansible stupidities

(bug-fixes-1.8.3)=
### Bug Fixes in Release 1.8.3

Expand Down
2 changes: 1 addition & 1 deletion legacy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

sys.path.append('..')

version="1.8.3"
version="1.8.4"

long_description = (Path(__file__).parent / "README.md").read_text()

Expand Down
2 changes: 1 addition & 1 deletion netsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

__version__ = "1.8.3"
__version__ = "1.8.4"

try:
import box
Expand Down

0 comments on commit 6309d1a

Please sign in to comment.