From f8a2473bfdd9802f165a75161c8d8716b372e559 Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Thu, 23 Oct 2025 21:08:37 +0530 Subject: [PATCH 1/2] [chores/deps] Bumped openwisp-utils~=1.2.0 --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 8e903696c..ae74c9863 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -3,4 +3,4 @@ coveralls sphinx openwisp-sphinx-theme~=1.0.2 # commit message style check -openwisp-utils[qa] @ https://github.com/openwisp/openwisp-utils/tarball/1.2 +openwisp-utils[qa]~=1.2.0 From e77cfd58b155718e1e254bf292f6854eb71c4317 Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Thu, 23 Oct 2025 21:14:29 +0530 Subject: [PATCH 2/2] 1.2.0 release --- CHANGES.rst | 23 +++++++++++++++++++++-- netjsonconfig/version.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 5995cee28..5e3e838fd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,29 @@ Change log ========== -Version 1.2.0 [Unreleased] +Version 1.2.0 [2025-10-23] -------------------------- -Work in progress. +Changes +~~~~~~~ + +Dependencies +++++++++++++ + +- Bumped ``jinja2~=3.1.6``. +- Bumped ``jsonschema~=4.25.1``. +- Added support for Python ``3.11``, ``3.12``, and ``3.13``. +- Dropped support for Python ``3.8``. + +Bugfixes +~~~~~~~~ + +- Fixed parsing issues with complex bridge VLAN filtering configurations + `#356 `_. Added an + example in the documentation showing how to override ``bridge-vlan`` + interfaces. +- Fixed missing ``bridge-vlan`` sections when ``ula_prefix`` was present + `#357 `_. Version 1.1.3 [2025-07-31] -------------------------- diff --git a/netjsonconfig/version.py b/netjsonconfig/version.py index 51f73e4fd..f0b05c9fb 100644 --- a/netjsonconfig/version.py +++ b/netjsonconfig/version.py @@ -1,4 +1,4 @@ -VERSION = (1, 2, 0, "alpha") +VERSION = (1, 2, 0, "final") __version__ = VERSION