[PR #1201] [MERGED] Release v2.0.3 #12175

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1201
Author: @jeremystretch
Created: 5/18/2017
Status: Merged
Merged: 5/18/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 7ceb64b Post-release version bump
  • 2ff0d7a Added vagrant alternative installation link
  • 779446d Fixes #1187: Fixed table pagination by introducing a custom table template
  • e351ab0 Fixes #1186: Corrected VLAN edit form so that site assignment is not required
  • 657eed1 Merge pull request #1185 from ryanmerolle/patch-1
  • f2846af Fixes #1189: Enforce consistent ordering of objects returned by a global search
  • 6e69c9e Restored the option to hide the paginator on panel tables
  • d206be9 Fixes #1130: Added zlib1g-dev to Ubuntu/Debian packages list
  • 3bc51c8 Fixes #1191: Bulk selection of IPs under a prefix incorrect when "select all" is used
  • 7768b94 Fixes #1188: Serialize interface LAG as nested objected (API)

📊 Changes

59 files changed (+215 additions, -229 deletions)

View changed files

📝 README.md (+1 -0)
📝 docs/installation/netbox.md (+2 -2)
📝 docs/installation/web-server.md (+3 -0)
📝 netbox/dcim/api/serializers.py (+9 -0)
📝 netbox/dcim/filters.py (+5 -0)
📝 netbox/dcim/forms.py (+16 -10)
📝 netbox/ipam/forms.py (+31 -19)
📝 netbox/ipam/tables.py (+2 -2)
📝 netbox/ipam/views.py (+1 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views.py (+29 -28)
📝 netbox/project-static/css/base.css (+7 -0)
📝 netbox/project-static/js/secrets.js (+1 -1)
📝 netbox/templates/_base.html (+3 -3)
📝 netbox/templates/circuits/circuit_import.html (+0 -2)
📝 netbox/templates/circuits/provider_import.html (+0 -2)
📝 netbox/templates/dcim/console_connections_import.html (+0 -2)
📝 netbox/templates/dcim/console_connections_list.html (+1 -2)
📝 netbox/templates/dcim/device.html (+0 -1)
📝 netbox/templates/dcim/device_import.html (+0 -1)

...and 39 more files

📄 Description

Enhancements

  • #1196 - Added a lag_id filter to the API interfaces view
  • #1198 - Allow filtering unracked devices on device list

Bug Fixes

  • #1157 - Hide nav menu search bar on small displays
  • #1186 - Corrected VLAN edit form so that site assignment is not required
  • #1187 - Fixed table pagination by introducing a custom table template
  • #1188 - Serialize interface LAG as nested objected (API)
  • #1189 - Enforce consistent ordering of objects returned by a global search
  • #1191 - Bulk selection of IPs under a prefix incorrect when "select all" is used
  • #1195 - Unable to create an interface connection when searching for peer device
  • #1197 - Fixed status assignment during bulk import of devices, prefixes, IPs, and VLANs
  • #1199 - Bulk import of secrets does not prompt user to generate a session key
  • #1200 - Form validation error when connecting power ports to power outlets

🔄 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/1201 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/18/2017 **Status:** ✅ Merged **Merged:** 5/18/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`7ceb64b`](https://github.com/netbox-community/netbox/commit/7ceb64b57b4a4b28ea5d377ca399021ce87220b3) Post-release version bump - [`2ff0d7a`](https://github.com/netbox-community/netbox/commit/2ff0d7aa833b0eaa0f3d826c1156720ea46b8b1e) Added vagrant alternative installation link - [`779446d`](https://github.com/netbox-community/netbox/commit/779446da64267c626944266296691640a4b842a6) Fixes #1187: Fixed table pagination by introducing a custom table template - [`e351ab0`](https://github.com/netbox-community/netbox/commit/e351ab0171426431db3310544e1cc85ff469d86c) Fixes #1186: Corrected VLAN edit form so that site assignment is not required - [`657eed1`](https://github.com/netbox-community/netbox/commit/657eed1dc9c457e36765013926086bedc8b24b80) Merge pull request #1185 from ryanmerolle/patch-1 - [`f2846af`](https://github.com/netbox-community/netbox/commit/f2846af4ec9715cc19fb1e7853746ebab9851261) Fixes #1189: Enforce consistent ordering of objects returned by a global search - [`6e69c9e`](https://github.com/netbox-community/netbox/commit/6e69c9e3757fe3989781751a47fe562b92c94382) Restored the option to hide the paginator on panel tables - [`d206be9`](https://github.com/netbox-community/netbox/commit/d206be91d5ef12fddbed795dcbec411c5c47783c) Fixes #1130: Added zlib1g-dev to Ubuntu/Debian packages list - [`3bc51c8`](https://github.com/netbox-community/netbox/commit/3bc51c8e69e3bbcb911f57ab40db0a8d4b6e5d40) Fixes #1191: Bulk selection of IPs under a prefix incorrect when "select all" is used - [`7768b94`](https://github.com/netbox-community/netbox/commit/7768b942792720103bfa9d2abfda15d368c861d1) Fixes #1188: Serialize interface LAG as nested objected (API) ### 📊 Changes **59 files changed** (+215 additions, -229 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `docs/installation/netbox.md` (+2 -2) 📝 `docs/installation/web-server.md` (+3 -0) 📝 `netbox/dcim/api/serializers.py` (+9 -0) 📝 `netbox/dcim/filters.py` (+5 -0) 📝 `netbox/dcim/forms.py` (+16 -10) 📝 `netbox/ipam/forms.py` (+31 -19) 📝 `netbox/ipam/tables.py` (+2 -2) 📝 `netbox/ipam/views.py` (+1 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views.py` (+29 -28) 📝 `netbox/project-static/css/base.css` (+7 -0) 📝 `netbox/project-static/js/secrets.js` (+1 -1) 📝 `netbox/templates/_base.html` (+3 -3) 📝 `netbox/templates/circuits/circuit_import.html` (+0 -2) 📝 `netbox/templates/circuits/provider_import.html` (+0 -2) 📝 `netbox/templates/dcim/console_connections_import.html` (+0 -2) 📝 `netbox/templates/dcim/console_connections_list.html` (+1 -2) 📝 `netbox/templates/dcim/device.html` (+0 -1) 📝 `netbox/templates/dcim/device_import.html` (+0 -1) _...and 39 more files_ </details> ### 📄 Description ## Enhancements * [#1196](https://github.com/digitalocean/netbox/issues/1196) - Added a lag_id filter to the API interfaces view * [#1198](https://github.com/digitalocean/netbox/issues/1198) - Allow filtering unracked devices on device list ## Bug Fixes * [#1157](https://github.com/digitalocean/netbox/issues/1157) - Hide nav menu search bar on small displays * [#1186](https://github.com/digitalocean/netbox/issues/1186) - Corrected VLAN edit form so that site assignment is not required * [#1187](https://github.com/digitalocean/netbox/issues/1187) - Fixed table pagination by introducing a custom table template * [#1188](https://github.com/digitalocean/netbox/issues/1188) - Serialize interface LAG as nested objected (API) * [#1189](https://github.com/digitalocean/netbox/issues/1189) - Enforce consistent ordering of objects returned by a global search * [#1191](https://github.com/digitalocean/netbox/issues/1191) - Bulk selection of IPs under a prefix incorrect when "select all" is used * [#1195](https://github.com/digitalocean/netbox/issues/1195) - Unable to create an interface connection when searching for peer device * [#1197](https://github.com/digitalocean/netbox/issues/1197) - Fixed status assignment during bulk import of devices, prefixes, IPs, and VLANs * [#1199](https://github.com/digitalocean/netbox/issues/1199) - Bulk import of secrets does not prompt user to generate a session key * [#1200](https://github.com/digitalocean/netbox/issues/1200) - Form validation error when connecting power ports to power outlets --- <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:20:02 +01:00
adam closed this issue 2025-12-29 22:20:02 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12175