[PR #125] [MERGED] Release v1.0.6 #11991

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/125
Author: @jeremystretch
Created: 6/29/2016
Status: Merged
Merged: 6/29/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 522a0c2 Replace pydot by graphviz
  • aa000bf Fixes #110: Added status field to bulk editing form for Prefixes and VLANs
  • a1953ba Added a link to the GitHub issues page to the server error page
  • fbbdb38 Fixes #108: Added search for Sites
  • d6920ec Merge pull request #100 from pitkley/replace-pydot
  • b8b1736 Fixed PEP8 error
  • 48d607f Added VERSION to settings and page footer
  • 2e27389 Corrected capitalization of rack face in example
  • 76baa6f Update getting-started.md
  • 995447a Suppressed 'all' field name in BulkImportForm validation

📊 Changes

18 files changed (+215 additions, -43 deletions)

View changed files

📝 .gitignore (+1 -1)
📝 README.md (+2 -0)
📝 docs/getting-started.md (+84 -9)
📝 netbox/dcim/filters.py (+21 -0)
📝 netbox/dcim/forms.py (+11 -7)
📝 netbox/dcim/models.py (+4 -1)
📝 netbox/dcim/views.py (+1 -0)
📝 netbox/extras/api/views.py (+14 -19)
📝 netbox/ipam/forms.py (+6 -0)
📝 netbox/netbox/settings.py (+2 -0)
📝 netbox/templates/500.html (+2 -0)
📝 netbox/templates/_base.html (+1 -1)
📝 netbox/templates/dcim/device_import.html (+2 -2)
📝 netbox/templates/dcim/site.html (+20 -0)
📝 netbox/templates/dcim/site_list.html (+24 -1)
📝 netbox/utilities/forms.py (+4 -1)
📝 requirements.txt (+1 -1)
upgrade.sh (+15 -0)

📄 Description

  • Replaced pydot in favor of graphviz's Python library
  • #110: Fixed bulk editing of prefixes and VLANs
  • #108: Added the ability to search sites
  • Added the current NetBox release to the page footer
  • #117: Improved device import validation
  • Introduced upgrade.sh to assist with upgrading NetBox
  • Added nginx instructions for Let's Encrypt to "getting started" doc

🔄 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/125 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/29/2016 **Status:** ✅ Merged **Merged:** 6/29/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`522a0c2`](https://github.com/netbox-community/netbox/commit/522a0c20e7a0c13a7a675ad67be1751613bd307d) Replace pydot by graphviz - [`aa000bf`](https://github.com/netbox-community/netbox/commit/aa000bf26d947877fc8abd67e435d68e13fdbc3a) Fixes #110: Added status field to bulk editing form for Prefixes and VLANs - [`a1953ba`](https://github.com/netbox-community/netbox/commit/a1953bab8bbec4503ae9e7fb5f9f88f04141f087) Added a link to the GitHub issues page to the server error page - [`fbbdb38`](https://github.com/netbox-community/netbox/commit/fbbdb3807ccd173835e7d32ff6e9773ee03b5f93) Fixes #108: Added search for Sites - [`d6920ec`](https://github.com/netbox-community/netbox/commit/d6920eceb11e651b7cf7afb6ebb6e04047da8308) Merge pull request #100 from pitkley/replace-pydot - [`b8b1736`](https://github.com/netbox-community/netbox/commit/b8b173674fdbfd62a4d5fabbe4e34cb5d1a84782) Fixed PEP8 error - [`48d607f`](https://github.com/netbox-community/netbox/commit/48d607fb966b33876f8f7f31cf0a7d607e40dca6) Added VERSION to settings and page footer - [`2e27389`](https://github.com/netbox-community/netbox/commit/2e27389cda234ae83e0831ae14d2ef766277cfab) Corrected capitalization of rack face in example - [`76baa6f`](https://github.com/netbox-community/netbox/commit/76baa6fd2da046612264c6144f9092fc8e891740) Update getting-started.md - [`995447a`](https://github.com/netbox-community/netbox/commit/995447ae0b438c07d07eb339f09b220f8d820746) Suppressed '__all__' field name in BulkImportForm validation ### 📊 Changes **18 files changed** (+215 additions, -43 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -1) 📝 `README.md` (+2 -0) 📝 `docs/getting-started.md` (+84 -9) 📝 `netbox/dcim/filters.py` (+21 -0) 📝 `netbox/dcim/forms.py` (+11 -7) 📝 `netbox/dcim/models.py` (+4 -1) 📝 `netbox/dcim/views.py` (+1 -0) 📝 `netbox/extras/api/views.py` (+14 -19) 📝 `netbox/ipam/forms.py` (+6 -0) 📝 `netbox/netbox/settings.py` (+2 -0) 📝 `netbox/templates/500.html` (+2 -0) 📝 `netbox/templates/_base.html` (+1 -1) 📝 `netbox/templates/dcim/device_import.html` (+2 -2) 📝 `netbox/templates/dcim/site.html` (+20 -0) 📝 `netbox/templates/dcim/site_list.html` (+24 -1) 📝 `netbox/utilities/forms.py` (+4 -1) 📝 `requirements.txt` (+1 -1) ➕ `upgrade.sh` (+15 -0) </details> ### 📄 Description - Replaced pydot in favor of graphviz's Python library - #110: Fixed bulk editing of prefixes and VLANs - #108: Added the ability to search sites - Added the current NetBox release to the page footer - #117: Improved device import validation - Introduced upgrade.sh to assist with upgrading NetBox - Added nginx instructions for Let's Encrypt to "getting started" doc --- <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:18:59 +01:00
adam closed this issue 2025-12-29 22:19: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#11991