[PR #1259] [MERGED] Release v2.0.6 #12182

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1259
Author: @jeremystretch
Created: 6/12/2017
Status: Merged
Merged: 6/12/2017
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 2b921c2 Post-release version bump
  • f3e997e Closes #40: Added IP utilization graph to prefix list
  • 4f95926 Added utilization percetange to aggregate and prefix views
  • 7878992 First stab at an interactive shell which pre-imports all models
  • 0a929f2 Fixes #1253: Improved upgrade.sh to allow forcing Python2
  • 9e1d03b Formatting cleanup
  • 05a796f Closes #704: Allow filtering VLANs by group when editing prefixes
  • 8a849eb Closes #990: Enable logging configuration in configuration.py
  • 08883d8 Closes #913: Added headers to object CSV exports
  • cfff69a Closes #1180: Simplified the process of finding related devices when viewing a device

📊 Changes

20 files changed (+273 additions, -72 deletions)

View changed files

📝 docs/configuration/optional-settings.md (+28 -0)
📝 docs/installation/ldap.md (+14 -15)
📝 docs/installation/upgrading.md (+7 -0)
📝 netbox/circuits/models.py (+4 -0)
📝 netbox/dcim/models.py (+20 -0)
📝 netbox/dcim/views.py (+9 -14)
netbox/extras/management/commands/nbshell.py (+62 -0)
📝 netbox/ipam/forms.py (+22 -1)
📝 netbox/ipam/models.py (+31 -8)
📝 netbox/ipam/tables.py (+3 -2)
📝 netbox/netbox/configuration.example.py (+9 -0)
📝 netbox/netbox/settings.py (+21 -19)
📝 netbox/secrets/models.py (+1 -0)
📝 netbox/templates/ipam/aggregate.html (+6 -0)
📝 netbox/templates/ipam/prefix.html (+2 -2)
📝 netbox/templates/ipam/prefix_edit.html (+8 -2)
📝 netbox/tenancy/models.py (+2 -0)
📝 netbox/utilities/forms.py (+2 -2)
📝 netbox/utilities/views.py (+3 -1)
📝 upgrade.sh (+19 -6)

📄 Description

Enhancements

  • #40 - Added IP utilization graph to prefix list
  • #704 - Allow filtering VLANs by group when editing prefixes
  • #913 - Added headers to object CSV exports
  • #990 - Enable logging configuration in configuration.py
  • #1180 - Simplified the process of finding related devices when viewing a device

Bug Fixes

  • #1253 - Improved upgrade.sh to allow forcing Python2

🔄 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/1259 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/12/2017 **Status:** ✅ Merged **Merged:** 6/12/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2b921c2`](https://github.com/netbox-community/netbox/commit/2b921c21ffba96a619ac18ede1820f3d2d4956a2) Post-release version bump - [`f3e997e`](https://github.com/netbox-community/netbox/commit/f3e997ea39105d5032d02c54d26b459fd4d0c5c7) Closes #40: Added IP utilization graph to prefix list - [`4f95926`](https://github.com/netbox-community/netbox/commit/4f95926cbd956c070dad61be05bcf8afebd40aad) Added utilization percetange to aggregate and prefix views - [`7878992`](https://github.com/netbox-community/netbox/commit/787899257090cba501a1cdae3a3881d4f36a6958) First stab at an interactive shell which pre-imports all models - [`0a929f2`](https://github.com/netbox-community/netbox/commit/0a929f29714d3465e3734f72985f44825dfbe8db) Fixes #1253: Improved upgrade.sh to allow forcing Python2 - [`9e1d03b`](https://github.com/netbox-community/netbox/commit/9e1d03b3837e05f7f6ccfb391b84a87da0648296) Formatting cleanup - [`05a796f`](https://github.com/netbox-community/netbox/commit/05a796faf14f5a36349a2582adfbf4ae9a5289df) Closes #704: Allow filtering VLANs by group when editing prefixes - [`8a849eb`](https://github.com/netbox-community/netbox/commit/8a849ebeffcebe519238678c956730ee3582736a) Closes #990: Enable logging configuration in configuration.py - [`08883d8`](https://github.com/netbox-community/netbox/commit/08883d86ef7e7914804f058024c7ed3f09b186c1) Closes #913: Added headers to object CSV exports - [`cfff69a`](https://github.com/netbox-community/netbox/commit/cfff69a715c285b39d8b7bff40c0cf654ffb3046) Closes #1180: Simplified the process of finding related devices when viewing a device ### 📊 Changes **20 files changed** (+273 additions, -72 deletions) <details> <summary>View changed files</summary> 📝 `docs/configuration/optional-settings.md` (+28 -0) 📝 `docs/installation/ldap.md` (+14 -15) 📝 `docs/installation/upgrading.md` (+7 -0) 📝 `netbox/circuits/models.py` (+4 -0) 📝 `netbox/dcim/models.py` (+20 -0) 📝 `netbox/dcim/views.py` (+9 -14) ➕ `netbox/extras/management/commands/nbshell.py` (+62 -0) 📝 `netbox/ipam/forms.py` (+22 -1) 📝 `netbox/ipam/models.py` (+31 -8) 📝 `netbox/ipam/tables.py` (+3 -2) 📝 `netbox/netbox/configuration.example.py` (+9 -0) 📝 `netbox/netbox/settings.py` (+21 -19) 📝 `netbox/secrets/models.py` (+1 -0) 📝 `netbox/templates/ipam/aggregate.html` (+6 -0) 📝 `netbox/templates/ipam/prefix.html` (+2 -2) 📝 `netbox/templates/ipam/prefix_edit.html` (+8 -2) 📝 `netbox/tenancy/models.py` (+2 -0) 📝 `netbox/utilities/forms.py` (+2 -2) 📝 `netbox/utilities/views.py` (+3 -1) 📝 `upgrade.sh` (+19 -6) </details> ### 📄 Description ## Enhancements * [#40](https://github.com/digitalocean/netbox/issues/40) - Added IP utilization graph to prefix list * [#704](https://github.com/digitalocean/netbox/issues/704) - Allow filtering VLANs by group when editing prefixes * [#913](https://github.com/digitalocean/netbox/issues/913) - Added headers to object CSV exports * [#990](https://github.com/digitalocean/netbox/issues/990) - Enable logging configuration in configuration.py * [#1180](https://github.com/digitalocean/netbox/issues/1180) - Simplified the process of finding related devices when viewing a device ## Bug Fixes * [#1253](https://github.com/digitalocean/netbox/issues/1253) - Improved `upgrade.sh` to allow forcing Python2 --- <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:05 +01:00
adam closed this issue 2025-12-29 22:20:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12182