[PR #3387] [MERGED] Release v2.6.2 #12551

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3387
Author: @jeremystretch
Created: 8/2/2019
Status: Merged
Merged: 8/2/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 74f14c5 Post-release version bump
  • 821924f Create NOTICE file
  • 2bb9464 Merge pull request #3296 from michaelxniu/patch-1
  • 6c3c6fb Closes #984: Allow ordering circuits by A/Z side
  • 7a41b02 Add line for PowerPanel count
  • ddced4f Add stats.powerpanel_count
  • 3da9af5 Fixes #3317: Fix permissions for ConfigContextBulkDeleteView
  • 118ec35 Fixes #3324: Doc incorrectly states child devices shown as non-racked
  • 6276f5f Fixes #3323: Interface Connections view inaccessible with "dcim.view_interface" permission
  • 30ef4b2 Replacing references to digitalocean org

📊 Changes

31 files changed (+1147 additions, -1062 deletions)

View changed files

📝 CHANGELOG.md (+1000 -975)
📝 CONTRIBUTING.md (+3 -3)
NOTICE (+1 -0)
📝 README.md (+2 -2)
📝 docs/core-functionality/devices.md (+1 -1)
📝 docs/development/index.md (+2 -2)
📝 docs/development/release-checklist.md (+1 -1)
📝 docs/installation/2-netbox.md (+3 -3)
📝 docs/installation/upgrading.md (+2 -2)
📝 mkdocs.yml (+1 -1)
📝 netbox/circuits/tables.py (+7 -12)
📝 netbox/circuits/views.py (+5 -3)
📝 netbox/dcim/api/views.py (+1 -0)
📝 netbox/dcim/constants.py (+4 -0)
📝 netbox/dcim/filters.py (+21 -32)
📝 netbox/dcim/forms.py (+36 -2)
📝 netbox/dcim/models.py (+11 -1)
📝 netbox/dcim/tables.py (+1 -1)
📝 netbox/dcim/views.py (+1 -1)
📝 netbox/extras/views.py (+9 -2)

...and 11 more files

📄 Description

Enhancements

  • #984 - Allow ordering circuits by A/Z side
  • #3307 - Add power panels count to home page
  • #3314 - Paginate object changelog entries
  • #3367 - Add BNC port type and coaxial cable type
  • #3368 - Indicate indefinite changelog retention when applicable
  • #3370 - Add filter class to VirtualChassis API

Bug Fixes

  • #3018 - Components connected via a cable must have an equal number of positions
  • #3289 - Prevent position from being nullified when moving a device to a new rack
  • #3293 - Enable filtering device components by multiple device IDs
  • #3315 - Enable filtering devices/interfaces by multiple MAC addresses
  • #3317 - Fix permissions for ConfigContextBulkDeleteView
  • #3323 - Fix permission evaluation for interface connections view
  • #3342 - Fix cluster delete button
  • #3384 - Maximum and allocated draw fields should be included on power port template creation form
  • #3385 - Fix power panels list when bulk editing power feeds

🔄 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/3387 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/2/2019 **Status:** ✅ Merged **Merged:** 8/2/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`74f14c5`](https://github.com/netbox-community/netbox/commit/74f14c5535314e13e6dbe112c0a3773ac2c0409a) Post-release version bump - [`821924f`](https://github.com/netbox-community/netbox/commit/821924f57fc72a391434b596d058fbf13f5de0b2) Create NOTICE file - [`2bb9464`](https://github.com/netbox-community/netbox/commit/2bb9464905a075122f7404616f713e3fd24e0e8d) Merge pull request #3296 from michaelxniu/patch-1 - [`6c3c6fb`](https://github.com/netbox-community/netbox/commit/6c3c6fba62360382a0972548b5adac833801fa08) Closes #984: Allow ordering circuits by A/Z side - [`7a41b02`](https://github.com/netbox-community/netbox/commit/7a41b02fdd87e0b835ebeaf41851681a5ec33f8e) Add line for PowerPanel count - [`ddced4f`](https://github.com/netbox-community/netbox/commit/ddced4fc2b41ec5e88116991d4c0ab392df67af7) Add stats.powerpanel_count - [`3da9af5`](https://github.com/netbox-community/netbox/commit/3da9af5a9f05b91c4132a531fc39960ec9212995) Fixes #3317: Fix permissions for ConfigContextBulkDeleteView - [`118ec35`](https://github.com/netbox-community/netbox/commit/118ec358c0c7fdfd44a70e4a757fa47362219163) Fixes #3324: Doc incorrectly states child devices shown as non-racked - [`6276f5f`](https://github.com/netbox-community/netbox/commit/6276f5f7b9499cc450cbbd3b01a91418987a10a3) Fixes #3323: Interface Connections view inaccessible with "dcim.view_interface" permission - [`30ef4b2`](https://github.com/netbox-community/netbox/commit/30ef4b208c341ce8472a33acd0bc83b78da4f2f7) Replacing references to digitalocean org ### 📊 Changes **31 files changed** (+1147 additions, -1062 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+1000 -975) 📝 `CONTRIBUTING.md` (+3 -3) ➕ `NOTICE` (+1 -0) 📝 `README.md` (+2 -2) 📝 `docs/core-functionality/devices.md` (+1 -1) 📝 `docs/development/index.md` (+2 -2) 📝 `docs/development/release-checklist.md` (+1 -1) 📝 `docs/installation/2-netbox.md` (+3 -3) 📝 `docs/installation/upgrading.md` (+2 -2) 📝 `mkdocs.yml` (+1 -1) 📝 `netbox/circuits/tables.py` (+7 -12) 📝 `netbox/circuits/views.py` (+5 -3) 📝 `netbox/dcim/api/views.py` (+1 -0) 📝 `netbox/dcim/constants.py` (+4 -0) 📝 `netbox/dcim/filters.py` (+21 -32) 📝 `netbox/dcim/forms.py` (+36 -2) 📝 `netbox/dcim/models.py` (+11 -1) 📝 `netbox/dcim/tables.py` (+1 -1) 📝 `netbox/dcim/views.py` (+1 -1) 📝 `netbox/extras/views.py` (+9 -2) _...and 11 more files_ </details> ### 📄 Description ## Enhancements * [#984](https://github.com/netbox-community/netbox/issues/984) - Allow ordering circuits by A/Z side * [#3307](https://github.com/netbox-community/netbox/issues/3307) - Add power panels count to home page * [#3314](https://github.com/netbox-community/netbox/issues/3314) - Paginate object changelog entries * [#3367](https://github.com/netbox-community/netbox/issues/3367) - Add BNC port type and coaxial cable type * [#3368](https://github.com/netbox-community/netbox/issues/3368) - Indicate indefinite changelog retention when applicable * [#3370](https://github.com/netbox-community/netbox/issues/3370) - Add filter class to VirtualChassis API ## Bug Fixes * [#3018](https://github.com/netbox-community/netbox/issues/3018) - Components connected via a cable must have an equal number of positions * [#3289](https://github.com/netbox-community/netbox/issues/3289) - Prevent position from being nullified when moving a device to a new rack * [#3293](https://github.com/netbox-community/netbox/issues/3293) - Enable filtering device components by multiple device IDs * [#3315](https://github.com/netbox-community/netbox/issues/3315) - Enable filtering devices/interfaces by multiple MAC addresses * [#3317](https://github.com/netbox-community/netbox/issues/3317) - Fix permissions for ConfigContextBulkDeleteView * [#3323](https://github.com/netbox-community/netbox/issues/3323) - Fix permission evaluation for interface connections view * [#3342](https://github.com/netbox-community/netbox/issues/3342) - Fix cluster delete button * [#3384](https://github.com/netbox-community/netbox/issues/3384) - Maximum and allocated draw fields should be included on power port template creation form * [#3385](https://github.com/netbox-community/netbox/issues/3385) - Fix power panels list when bulk editing power feeds --- <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:22:13 +01:00
adam closed this issue 2025-12-29 22:22:13 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12551