[PR #299] [MERGED] Release v1.2.2 #12032

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/299
Author: @jeremystretch
Created: 7/14/2016
Status: Merged
Merged: 7/14/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • da50cd0 allow filtering by rack group
  • 6a6cf14 Update forms.py
  • 69affb7 fixed "rack group" filter label for/dcim/racks/
  • 35a2671 Use overflow-y: scoll on html element to avoid jumping around when the previous/next page adds a vertical scrollbar.
  • 9098001 Post-release version bump
  • 07fc2e5 Merge pull request #273 from bellwood/devices-filter-add-rackgroup
  • 9421ec0 Fixes #271: Add rack group filter for devices
  • bafbc05 Fixes #270: Add rack group filter for devices
  • 1e3a03c Merge branch 'develop' of github.com:digitalocean/netbox into develop
  • d3a5b82 Fixes #282: De-select "all" checkbox if one or more objects are deselected

📊 Changes

25 files changed (+227 additions, -19 deletions)

View changed files

📝 docs/installation/netbox.md (+3 -0)
📝 netbox/circuits/filters.py (+31 -0)
📝 netbox/circuits/forms.py (+10 -0)
netbox/circuits/migrations/0003_provider_32bit_asn_support.py (+21 -0)
📝 netbox/circuits/models.py (+2 -1)
📝 netbox/circuits/views.py (+2 -0)
📝 netbox/dcim/fields.py (+9 -0)
📝 netbox/dcim/filters.py (+5 -0)
📝 netbox/dcim/forms.py (+8 -1)
netbox/dcim/migrations/0009_site_32bit_asn_support.py (+21 -0)
📝 netbox/dcim/models.py (+2 -2)
📝 netbox/dcim/views.py (+7 -2)
📝 netbox/netbox/settings.py (+1 -2)
📝 netbox/project-static/css/base.css (+3 -0)
📝 netbox/project-static/js/forms.js (+7 -1)
📝 netbox/templates/circuits/provider_list.html (+21 -1)
📝 netbox/templates/dcim/device_list.html (+1 -0)
📝 netbox/templates/dcim/devicetype.html (+63 -8)
📝 netbox/templates/dcim/inc/devicetype_component_table.html (+4 -1)
📝 netbox/templates/dcim/rack_list.html (+1 -0)

...and 5 more files

📄 Description

Improvements

  • #174 - Added search and site filter to provider list
  • #270 - Added the ability to filter devices by rack group

Bug Fixes

  • #115 - Fix deprecated django.core.context_processors reference
  • #268 - Added support for entire 32-bit ASN space
  • #282 - De-select "all" checkbox if one or more objects are deselected
  • #290 - Always display management interfaces for a device type (even if is_network_device is not set)

🔄 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/299 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/14/2016 **Status:** ✅ Merged **Merged:** 7/14/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`da50cd0`](https://github.com/netbox-community/netbox/commit/da50cd0f03ff388b58fb86a33f72dd16b1eb0b9c) allow filtering by rack group - [`6a6cf14`](https://github.com/netbox-community/netbox/commit/6a6cf14a38f37ae0e7911c1cda9ae61168307187) Update forms.py - [`69affb7`](https://github.com/netbox-community/netbox/commit/69affb7a6e1b97d17a2852ab5aa766590f57ef84) fixed "rack group" filter label for/dcim/racks/ - [`35a2671`](https://github.com/netbox-community/netbox/commit/35a2671525c5597766c5c1d0fa7f036a63454154) Use overflow-y: scoll on html element to avoid jumping around when the previous/next page adds a vertical scrollbar. - [`9098001`](https://github.com/netbox-community/netbox/commit/9098001bcb67d56ae5d5ac0b8bfd9c04c40d56e9) Post-release version bump - [`07fc2e5`](https://github.com/netbox-community/netbox/commit/07fc2e5502af51b0af65565b3b2f4395725093c5) Merge pull request #273 from bellwood/devices-filter-add-rackgroup - [`9421ec0`](https://github.com/netbox-community/netbox/commit/9421ec040c62f79ddb63579ce01326c7e5c8308e) Fixes #271: Add rack group filter for devices - [`bafbc05`](https://github.com/netbox-community/netbox/commit/bafbc052e2aed145697001d7954c5afa9b870c26) Fixes #270: Add rack group filter for devices - [`1e3a03c`](https://github.com/netbox-community/netbox/commit/1e3a03c4636468da06133f1038fcd9ab1cfb33b6) Merge branch 'develop' of github.com:digitalocean/netbox into develop - [`d3a5b82`](https://github.com/netbox-community/netbox/commit/d3a5b82d9325af3915c57d9a411075242e4e5f64) Fixes #282: De-select "all" checkbox if one or more objects are deselected ### 📊 Changes **25 files changed** (+227 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/netbox.md` (+3 -0) 📝 `netbox/circuits/filters.py` (+31 -0) 📝 `netbox/circuits/forms.py` (+10 -0) ➕ `netbox/circuits/migrations/0003_provider_32bit_asn_support.py` (+21 -0) 📝 `netbox/circuits/models.py` (+2 -1) 📝 `netbox/circuits/views.py` (+2 -0) 📝 `netbox/dcim/fields.py` (+9 -0) 📝 `netbox/dcim/filters.py` (+5 -0) 📝 `netbox/dcim/forms.py` (+8 -1) ➕ `netbox/dcim/migrations/0009_site_32bit_asn_support.py` (+21 -0) 📝 `netbox/dcim/models.py` (+2 -2) 📝 `netbox/dcim/views.py` (+7 -2) 📝 `netbox/netbox/settings.py` (+1 -2) 📝 `netbox/project-static/css/base.css` (+3 -0) 📝 `netbox/project-static/js/forms.js` (+7 -1) 📝 `netbox/templates/circuits/provider_list.html` (+21 -1) 📝 `netbox/templates/dcim/device_list.html` (+1 -0) 📝 `netbox/templates/dcim/devicetype.html` (+63 -8) 📝 `netbox/templates/dcim/inc/devicetype_component_table.html` (+4 -1) 📝 `netbox/templates/dcim/rack_list.html` (+1 -0) _...and 5 more files_ </details> ### 📄 Description ## Improvements - [#174](https://github.com/digitalocean/netbox/issues/174) - Added search and site filter to provider list - [#270](https://github.com/digitalocean/netbox/issues/270) - Added the ability to filter devices by rack group ## Bug Fixes - [#115](https://github.com/digitalocean/netbox/issues/115) - Fix deprecated django.core.context_processors reference - [#268](https://github.com/digitalocean/netbox/issues/268) - Added support for entire 32-bit ASN space - [#282](https://github.com/digitalocean/netbox/issues/282) - De-select "all" checkbox if one or more objects are deselected - [#290](https://github.com/digitalocean/netbox/issues/290) - Always display management interfaces for a device type (even if `is_network_device` is not set) --- <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:14 +01:00
adam closed this issue 2025-12-29 22:19:15 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12032