[PR #2600] [MERGED] Release v2.4.8 #12410

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2600
Author: @jeremystretch
Created: 11/20/2018
Status: Merged
Merged: 11/20/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 8bad25b Post-release version bump
  • c716ca1 Changelog query optimization
  • c183810 Add lag description to lag column
  • 69d829c Fixes #2473: Fix encoding of long (>127 character) secrets
  • 61ca7ee Closes #2559: Add a pre-commit git hook to enforce PEP8 validation
  • 845d467 Fixes #2575: Correct model specified for rack roles table
  • 5785fb6 Added development docs for extending a model
  • b6a256d Expanded the development style guide
  • 0c33af2 Fixes #2558: Filter on all tags when multiple are passed
  • 2fce7eb Fixes #2565: Improved rendering of Markdown tables

📊 Changes

40 files changed (+469 additions, -114 deletions)

View changed files

📝 CHANGELOG.md (+18 -0)
docs/development/extending-models.md (+70 -0)
📝 docs/development/index.md (+0 -7)
docs/development/style-guide.md (+41 -0)
📝 mkdocs.yml (+2 -0)
📝 netbox/circuits/filters.py (+3 -7)
📝 netbox/dcim/api/views.py (+4 -2)
📝 netbox/dcim/filters.py (+8 -22)
📝 netbox/dcim/tables.py (+2 -2)
📝 netbox/dcim/views.py (+4 -2)
📝 netbox/extras/forms.py (+29 -2)
📝 netbox/extras/tables.py (+29 -1)
📝 netbox/extras/urls.py (+2 -0)
📝 netbox/extras/views.py (+59 -6)
📝 netbox/ipam/filters.py (+7 -19)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views.py (+1 -1)
📝 netbox/project-static/css/base.css (+13 -0)
📝 netbox/secrets/filters.py (+2 -4)
📝 netbox/secrets/models.py (+10 -6)

...and 20 more files

📄 Description

Enhancements

  • #2490 - Added bulk editing for config contexts
  • #2557 - Added object view for tags

Bug Fixes

  • #2473 - Fix encoding of long (>127 character) secrets
  • #2558 - Filter on all tags when multiple are passed
  • #2565 - Improved rendering of Markdown tables
  • #2575 - Correct model specified for rack roles table
  • #2588 - Catch all exceptions from failed NAPALM API Calls
  • #2589 - Virtual machine API serializer should require cluster assignment

🔄 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/2600 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/20/2018 **Status:** ✅ Merged **Merged:** 11/20/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`8bad25b`](https://github.com/netbox-community/netbox/commit/8bad25b860db1c6815d5db73f3020d9380171c85) Post-release version bump - [`c716ca1`](https://github.com/netbox-community/netbox/commit/c716ca1e874162499f400d2be0ad9ea887c27241) Changelog query optimization - [`c183810`](https://github.com/netbox-community/netbox/commit/c1838104aef40cbbcdf80abbc6b41e8396b22386) Add lag description to lag column - [`69d829c`](https://github.com/netbox-community/netbox/commit/69d829ce8d46e3a66752818c0894730d7182781d) Fixes #2473: Fix encoding of long (>127 character) secrets - [`61ca7ee`](https://github.com/netbox-community/netbox/commit/61ca7ee7c2d4deb87a9f4b3ce5538ff3fd8d06fd) Closes #2559: Add a pre-commit git hook to enforce PEP8 validation - [`845d467`](https://github.com/netbox-community/netbox/commit/845d467fd97ab499e5547b16b16af5e385d9d483) Fixes #2575: Correct model specified for rack roles table - [`5785fb6`](https://github.com/netbox-community/netbox/commit/5785fb6ba258d0bb597e9a02fefc986ce81941a5) Added development docs for extending a model - [`b6a256d`](https://github.com/netbox-community/netbox/commit/b6a256dc5db57360773530477ec9aee46c3177dc) Expanded the development style guide - [`0c33af2`](https://github.com/netbox-community/netbox/commit/0c33af2140d18e3179880d44c71d1e5c7bc14ef7) Fixes #2558: Filter on all tags when multiple are passed - [`2fce7eb`](https://github.com/netbox-community/netbox/commit/2fce7ebd8fee511a0fef8b3aada11037e8ef8e9f) Fixes #2565: Improved rendering of Markdown tables ### 📊 Changes **40 files changed** (+469 additions, -114 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+18 -0) ➕ `docs/development/extending-models.md` (+70 -0) 📝 `docs/development/index.md` (+0 -7) ➕ `docs/development/style-guide.md` (+41 -0) 📝 `mkdocs.yml` (+2 -0) 📝 `netbox/circuits/filters.py` (+3 -7) 📝 `netbox/dcim/api/views.py` (+4 -2) 📝 `netbox/dcim/filters.py` (+8 -22) 📝 `netbox/dcim/tables.py` (+2 -2) 📝 `netbox/dcim/views.py` (+4 -2) 📝 `netbox/extras/forms.py` (+29 -2) 📝 `netbox/extras/tables.py` (+29 -1) 📝 `netbox/extras/urls.py` (+2 -0) 📝 `netbox/extras/views.py` (+59 -6) 📝 `netbox/ipam/filters.py` (+7 -19) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views.py` (+1 -1) 📝 `netbox/project-static/css/base.css` (+13 -0) 📝 `netbox/secrets/filters.py` (+2 -4) 📝 `netbox/secrets/models.py` (+10 -6) _...and 20 more files_ </details> ### 📄 Description ## Enhancements * [#2490](https://github.com/digitalocean/netbox/issues/2490) - Added bulk editing for config contexts * [#2557](https://github.com/digitalocean/netbox/issues/2557) - Added object view for tags ## Bug Fixes * [#2473](https://github.com/digitalocean/netbox/issues/2473) - Fix encoding of long (>127 character) secrets * [#2558](https://github.com/digitalocean/netbox/issues/2558) - Filter on all tags when multiple are passed * [#2565](https://github.com/digitalocean/netbox/issues/2565) - Improved rendering of Markdown tables * [#2575](https://github.com/digitalocean/netbox/issues/2575) - Correct model specified for rack roles table * [#2588](https://github.com/digitalocean/netbox/issues/2588) - Catch all exceptions from failed NAPALM API Calls * [#2589](https://github.com/digitalocean/netbox/issues/2589) - Virtual machine API serializer should require cluster assignment --- <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:21:20 +01:00
adam closed this issue 2025-12-29 22:21:21 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12410