[PR #989] [MERGED] Release v1.9.3 #12145

Closed
opened 2025-12-29 22:19:52 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/989
Author: @jeremystretch
Created: 3/23/2017
Status: Merged
Merged: 3/23/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 13c29cb Post-release version bump
  • e2ef0bc Added survey announcement to README
  • 92d726b Added examples to the graphs documentation
  • 3ce2f0d Fix error when assigning a new interface to a LAG
  • 1c1fd8f Limit tests to one per major Python version
  • 3fe3151 Filter on mac address on interface
  • f2dc287 Filter on mac address on interface
  • f26253e Filter on mac address on interface
  • 1682de5 Added a footer link to the GitHub wiki
  • 05b7156 Closes #981: Allow filtering primary objects by a given set of IDs

📊 Changes

16 files changed (+147 additions, -25 deletions)

View changed files

📝 .travis.yml (+0 -2)
📝 README.md (+4 -0)
📝 docs/data-model/extras.md (+16 -0)
📝 netbox/circuits/filters.py (+3 -1)
📝 netbox/dcim/filters.py (+54 -13)
📝 netbox/dcim/forms.py (+19 -1)
📝 netbox/dcim/tables.py (+12 -1)
📝 netbox/dcim/views.py (+6 -1)
📝 netbox/ipam/filters.py (+7 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/secrets/filters.py (+2 -0)
📝 netbox/templates/_base.html (+2 -1)
📝 netbox/templates/dcim/device_import.html (+1 -1)
📝 netbox/templates/dcim/inc/interface.html (+7 -1)
📝 netbox/tenancy/filters.py (+2 -1)
📝 netbox/utilities/filters.py (+11 -0)

📄 Description

Improvements

  • #972 - Add ability to filter connections list by device name
  • #974 - Added MAC address filter to API interfaces list
  • #978 - Allow filtering device types by function and subdevice role
  • #981 - Allow filtering primary objects by a given set of IDs
  • #983 - Include peer device names when listing circuits in device view

Bug Fixes

  • #967 - Fix error when assigning a new interface to a LAG

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/989 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/23/2017 **Status:** ✅ Merged **Merged:** 3/23/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`13c29cb`](https://github.com/netbox-community/netbox/commit/13c29cb7a9e87609434d508533c0861064c620c0) Post-release version bump - [`e2ef0bc`](https://github.com/netbox-community/netbox/commit/e2ef0bc3a6583f058dcaea2bfc5e717caf73d5a9) Added survey announcement to README - [`92d726b`](https://github.com/netbox-community/netbox/commit/92d726bbd43965a9e40031008d1940338212cf42) Added examples to the graphs documentation - [`3ce2f0d`](https://github.com/netbox-community/netbox/commit/3ce2f0d100bd1702092f20afed8b08ecab442ac2) Fix error when assigning a new interface to a LAG - [`1c1fd8f`](https://github.com/netbox-community/netbox/commit/1c1fd8f2102351cfef86a0dc85fe4114f5da09c2) Limit tests to one per major Python version - [`3fe3151`](https://github.com/netbox-community/netbox/commit/3fe3151af7db860d8c65c6eff1bb7a27323e0f6c) Filter on mac address on interface - [`f2dc287`](https://github.com/netbox-community/netbox/commit/f2dc287f1429b2338b44169e2c358cc55b95c93a) Filter on mac address on interface - [`f26253e`](https://github.com/netbox-community/netbox/commit/f26253ec491d699844f995a05f6a9b36e481c724) Filter on mac address on interface - [`1682de5`](https://github.com/netbox-community/netbox/commit/1682de59df31dac6a74d193918a83141577158b4) Added a footer link to the GitHub wiki - [`05b7156`](https://github.com/netbox-community/netbox/commit/05b71564d887b38078d912d2e85901e9c04ccd2a) Closes #981: Allow filtering primary objects by a given set of IDs ### 📊 Changes **16 files changed** (+147 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+0 -2) 📝 `README.md` (+4 -0) 📝 `docs/data-model/extras.md` (+16 -0) 📝 `netbox/circuits/filters.py` (+3 -1) 📝 `netbox/dcim/filters.py` (+54 -13) 📝 `netbox/dcim/forms.py` (+19 -1) 📝 `netbox/dcim/tables.py` (+12 -1) 📝 `netbox/dcim/views.py` (+6 -1) 📝 `netbox/ipam/filters.py` (+7 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/secrets/filters.py` (+2 -0) 📝 `netbox/templates/_base.html` (+2 -1) 📝 `netbox/templates/dcim/device_import.html` (+1 -1) 📝 `netbox/templates/dcim/inc/interface.html` (+7 -1) 📝 `netbox/tenancy/filters.py` (+2 -1) 📝 `netbox/utilities/filters.py` (+11 -0) </details> ### 📄 Description ## Improvements * [#972](https://github.com/digitalocean/netbox/issues/972) - Add ability to filter connections list by device name * [#974](https://github.com/digitalocean/netbox/issues/974) - Added MAC address filter to API interfaces list * [#978](https://github.com/digitalocean/netbox/issues/978) - Allow filtering device types by function and subdevice role * [#981](https://github.com/digitalocean/netbox/issues/981) - Allow filtering primary objects by a given set of IDs * [#983](https://github.com/digitalocean/netbox/issues/983) - Include peer device names when listing circuits in device view ## Bug Fixes * [#967](https://github.com/digitalocean/netbox/issues/967) - Fix error when assigning a new interface to a LAG --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:19:52 +01:00
adam closed this issue 2025-12-29 22:19:52 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12145