Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.0 release #225

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 39 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,47 @@
Changelog
=========

Version 1.1.0 [Unreleased]
Version 1.1.0 [2024-09-10]
--------------------------

WIP
Features
~~~~~~~~

- Added integration with `OpenWISP Monitoring to generate WiFi mesh
network topology
<https://openwisp.io/docs/dev/network-topology/user/integrations.html>`_.
- Added WireGuard topology parser and integration with OpenWISP Controller
- Added ZeroTier topology parser and integration with OpenWISP Controller
- Implemented real-time updates for topologies
- Added autocomplete support for filters in the admin interface
- Added filters to the REST API.

Changes
~~~~~~~

- Moved REST API topology collection database writes to a background
worker
- Hid the "receive_url" field in ``TopologyAdmin`` when adding a topology

Dependencies
++++++++++++

- Bumped ``openwisp-users~=1.1.0``
- Bumped ``netdiff~=1.1.0``
- Bumped ``django-flat-json-widget~=0.3.0``
- Bumped ``openwisp-util~=1.1.0``
- Added support for Django ``4.1.x`` and ``4.2.x``
- Added support for Python ``3.10``
- Dropped support for Python ``3.7``
- Dropped support for Django ``3.0.x`` and ``3.1.x``

Bugfixes
~~~~~~~~

- Fixed visualizer issues in both admin and non-admin interfaces
- Fixed changing status of link from admin page
- Resolved graph visualizer issue for unpublished topologies in admin
- User need to have required model permissions to perform admin actions

Version 1.0.0 [2022-05-06]
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion openwisp_network_topology/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 1, 0, 'alpha')
VERSION = (1, 1, 0, 'final')
__version__ = VERSION # alias


Expand Down