[PR #569] [MERGED] Release v1.6.1 #12079

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/569
Author: @jeremystretch
Created: 9/21/2016
Status: Merged
Merged: 9/21/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 0708942 Fixed csv reader to handle special characters
  • 4fa536b Post-release version bump
  • 4406108 fixes permissions on docker-build.sh
  • 5601be8 Merge pull request #551 from digitalocean/docker-build-perms
  • 9eec975 change ldap.py to ldap_config.py
  • 9718895 add django-auth-ldap to Dockerfile
  • 824d2d8 Implemented FilterChoiceField and get_filter_choices() to reduce filter form boilerplate
  • 5e4fce2 Fixes #558: Update slug field when name is populated without a key press
  • 2567412 Fixes #531: Order prefixes by VRF assignment
  • daadf7a Fixes #557: Add 'global' choice to VRF filter for prefixes and IP addresses

📊 Changes

36 files changed (+410 additions, -352 deletions)

View changed files

📝 Dockerfile (+4 -1)
📝 docs/data-model/extras.md (+2 -0)
📝 netbox/circuits/filters.py (+4 -2)
📝 netbox/circuits/forms.py (+10 -35)
📝 netbox/dcim/filters.py (+13 -12)
📝 netbox/dcim/forms.py (+23 -91)
📝 netbox/dcim/views.py (+1 -1)
📝 netbox/extras/filters.py (+15 -2)
📝 netbox/extras/forms.py (+5 -7)
📝 netbox/extras/models.py (+12 -1)
📝 netbox/ipam/filters.py (+47 -76)
📝 netbox/ipam/forms.py (+29 -90)
netbox/ipam/migrations/0008_prefix_change_order.py (+19 -0)
📝 netbox/ipam/models.py (+3 -2)
📝 netbox/netbox/settings.py (+2 -2)
📝 netbox/project-static/js/forms.js (+1 -1)
📝 netbox/secrets/forms.py (+2 -7)
📝 netbox/templates/circuits/circuit.html (+3 -0)
📝 netbox/templates/circuits/provider.html (+1 -1)
📝 netbox/templates/dcim/device.html (+1 -1)

...and 16 more files

📄 Description

Improvements

  • #415 - Add an expand/collapse toggle button to the prefix list
  • #552 - Allow filtering on custom select fields by "none"
  • #561 - Make custom fields accessible from within export templates

Bug Fixes

  • #493 - CSV import support for UTF-8
  • #531 - Order prefix list by VRF assignment
  • #542 - Add LDAP support in Docker
  • #557 - Add 'global' choice to VRF filter for prefixes and IP addresses
  • #558 - Update slug field when name is populated without a key press
  • #562 - Fixed bulk interface creation
  • #564 - Display custom fields for all applicable objects

🔄 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/569 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/21/2016 **Status:** ✅ Merged **Merged:** 9/21/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`0708942`](https://github.com/netbox-community/netbox/commit/0708942ab85817af41e64f06e7dba9beb6b0ca87) Fixed csv reader to handle special characters - [`4fa536b`](https://github.com/netbox-community/netbox/commit/4fa536b94067cf5cb38ebc2e2d74640af1f932af) Post-release version bump - [`4406108`](https://github.com/netbox-community/netbox/commit/440610836a170074c378b5965b4d60de0c8a7854) fixes permissions on docker-build.sh - [`5601be8`](https://github.com/netbox-community/netbox/commit/5601be87f764a4745b9f1167956726721198e997) Merge pull request #551 from digitalocean/docker-build-perms - [`9eec975`](https://github.com/netbox-community/netbox/commit/9eec975800c1f5a210a3ec85bc402b72092a3da3) change ldap.py to ldap_config.py - [`9718895`](https://github.com/netbox-community/netbox/commit/9718895ff9cbe88b16abbe56049eaddf9979c75a) add django-auth-ldap to Dockerfile - [`824d2d8`](https://github.com/netbox-community/netbox/commit/824d2d8205781e0dafa038cad9ac19865c4b7a1f) Implemented FilterChoiceField and get_filter_choices() to reduce filter form boilerplate - [`5e4fce2`](https://github.com/netbox-community/netbox/commit/5e4fce248c7a7fe8b4e2d4475332c465ea3a71de) Fixes #558: Update slug field when name is populated without a key press - [`2567412`](https://github.com/netbox-community/netbox/commit/2567412121e4fda06bc17652381f20ab942fd41b) Fixes #531: Order prefixes by VRF assignment - [`daadf7a`](https://github.com/netbox-community/netbox/commit/daadf7a49b3d5f2f70feb09881847f10825f7f41) Fixes #557: Add 'global' choice to VRF filter for prefixes and IP addresses ### 📊 Changes **36 files changed** (+410 additions, -352 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+4 -1) 📝 `docs/data-model/extras.md` (+2 -0) 📝 `netbox/circuits/filters.py` (+4 -2) 📝 `netbox/circuits/forms.py` (+10 -35) 📝 `netbox/dcim/filters.py` (+13 -12) 📝 `netbox/dcim/forms.py` (+23 -91) 📝 `netbox/dcim/views.py` (+1 -1) 📝 `netbox/extras/filters.py` (+15 -2) 📝 `netbox/extras/forms.py` (+5 -7) 📝 `netbox/extras/models.py` (+12 -1) 📝 `netbox/ipam/filters.py` (+47 -76) 📝 `netbox/ipam/forms.py` (+29 -90) ➕ `netbox/ipam/migrations/0008_prefix_change_order.py` (+19 -0) 📝 `netbox/ipam/models.py` (+3 -2) 📝 `netbox/netbox/settings.py` (+2 -2) 📝 `netbox/project-static/js/forms.js` (+1 -1) 📝 `netbox/secrets/forms.py` (+2 -7) 📝 `netbox/templates/circuits/circuit.html` (+3 -0) 📝 `netbox/templates/circuits/provider.html` (+1 -1) 📝 `netbox/templates/dcim/device.html` (+1 -1) _...and 16 more files_ </details> ### 📄 Description ## Improvements - [#415](https://github.com/digitalocean/netbox/issues/415) - Add an expand/collapse toggle button to the prefix list - [#552](https://github.com/digitalocean/netbox/issues/552) - Allow filtering on custom select fields by "none" - [#561](https://github.com/digitalocean/netbox/issues/561) - Make custom fields accessible from within export templates ## Bug Fixes - [#493](https://github.com/digitalocean/netbox/issues/493) - CSV import support for UTF-8 - [#531](https://github.com/digitalocean/netbox/issues/531) - Order prefix list by VRF assignment - [#542](https://github.com/digitalocean/netbox/issues/542) - Add LDAP support in Docker - [#557](https://github.com/digitalocean/netbox/issues/557) - Add 'global' choice to VRF filter for prefixes and IP addresses - [#558](https://github.com/digitalocean/netbox/issues/558) - Update slug field when name is populated without a key press - [#562](https://github.com/digitalocean/netbox/issues/562) - Fixed bulk interface creation - [#564](https://github.com/digitalocean/netbox/issues/564) - Display custom fields for all applicable objects --- <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:30 +01:00
adam closed this issue 2025-12-29 22:19:30 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12079