[PR #1112] [MERGED] V2 develop #12165

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/1112
Author: @jeremystretch
Created: 4/27/2017
Status: Merged
Merged: 4/27/2017
Merged by: @jeremystretch

Base: v2-betaHead: v2-develop


📝 Commits (10+)

📊 Changes

86 files changed (+1222 additions, -880 deletions)

View changed files

Dockerfile (+0 -20)
📝 README.md (+1 -1)
docker-compose.yml (+0 -53)
docker/docker-entrypoint.sh (+0 -22)
docker/gunicorn_config.py (+0 -5)
docker/nginx.conf (+0 -35)
docs/installation/docker.md (+0 -51)
📝 docs/installation/netbox.md (+13 -2)
📝 docs/installation/postgresql.md (+3 -2)
📝 mkdocs.yml (+0 -1)
📝 netbox/circuits/api/serializers.py (+10 -4)
📝 netbox/circuits/api/urls.py (+1 -0)
netbox/circuits/migrations/0008_circuittermination_interface_protect_on_delete.py (+21 -0)
📝 netbox/circuits/models.py (+8 -4)
📝 netbox/circuits/urls.py (+1 -0)
📝 netbox/circuits/views.py (+3 -5)
📝 netbox/dcim/api/serializers.py (+9 -9)
📝 netbox/dcim/api/urls.py (+1 -0)
📝 netbox/dcim/api/views.py (+5 -4)
📝 netbox/dcim/filters.py (+45 -4)

...and 66 more files

📄 Description

This release is not suitable for production use.

This is the third (and hopefully final) beta release of NetBox v2.0. Please be sure to raise a bug report noting any issues you experience.

Improvements

  • #1091 - Custom fields are now writable via the API

Bug Fixes

  • #1043 - Corrected queryset in WritableDeviceSerializer validation
  • #1045 - DeviceComponentFilterSet by name expects int instead of str
  • #1049 - Prompt user if missing session key when adding/editing a secret
  • #1051 - Upgraded django-rest-swagger (API docs)
  • #1078 - Increase default limit for number of objects returned by web form API call
  • #1107 - Corrected exception when creating/deleting image attachments
  • #1111 - Corrected database ordering of SessionKey model

🔄 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/1112 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/27/2017 **Status:** ✅ Merged **Merged:** 4/27/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `v2-beta` ← **Head:** `v2-develop` --- ### 📝 Commits (10+) - [`7766e1f`](https://github.com/netbox-community/netbox/commit/7766e1f6847f2d1651f1a7a1ce4482ea76098745) Fixes #1037: Fixed error on VLAN import with duplicate VLAN group names - [`78b0072`](https://github.com/netbox-community/netbox/commit/78b00720513ebd8c7f4236097c336777c8eeaeb4) Limit <v2.0 installations to Django 1.10 - [`91d3590`](https://github.com/netbox-community/netbox/commit/91d35905fd3144d7db9bea522c1018a904dc8c3f) Reset version - [`d4ac6db`](https://github.com/netbox-community/netbox/commit/d4ac6dbfe4613badcdc22ef67825a6b41a463a83) Fixes #1043: Corrected queryset in WritableDeviceSerializer validation - [`369d3aa`](https://github.com/netbox-community/netbox/commit/369d3aa62e3c7d5b601bacedb5212343f145c758) Rearranged URL namespaces to satisfy deprecation warnings - [`d98e9e1`](https://github.com/netbox-community/netbox/commit/d98e9e1838e796595ee834f9bec2cbf6110a12a4) Resolved RemovedInDjango20Warning deprecation warnings - [`e7cf7d5`](https://github.com/netbox-community/netbox/commit/e7cf7d58b83603196d741881cbd18aea13c68cd1) Fixes #1045 - [`fc46f70`](https://github.com/netbox-community/netbox/commit/fc46f70153bdae560e6d279137a59896a30907a3) Closes #430: Include circuits when rendering topology maps - [`4accdf7`](https://github.com/netbox-community/netbox/commit/4accdf77f851e8a958cfd72b409bab6e634b6a4f) Closes #578: Show topology maps not assigned to a site on the home view - [`bcdf9ac`](https://github.com/netbox-community/netbox/commit/bcdf9ac5ca16d3579dd3e1bf377efec10c695eea) Merge pull request #1046 from digitalocean/component-filter-by-name ### 📊 Changes **86 files changed** (+1222 additions, -880 deletions) <details> <summary>View changed files</summary> ➖ `Dockerfile` (+0 -20) 📝 `README.md` (+1 -1) ➖ `docker-compose.yml` (+0 -53) ➖ `docker/docker-entrypoint.sh` (+0 -22) ➖ `docker/gunicorn_config.py` (+0 -5) ➖ `docker/nginx.conf` (+0 -35) ➖ `docs/installation/docker.md` (+0 -51) 📝 `docs/installation/netbox.md` (+13 -2) 📝 `docs/installation/postgresql.md` (+3 -2) 📝 `mkdocs.yml` (+0 -1) 📝 `netbox/circuits/api/serializers.py` (+10 -4) 📝 `netbox/circuits/api/urls.py` (+1 -0) ➕ `netbox/circuits/migrations/0008_circuittermination_interface_protect_on_delete.py` (+21 -0) 📝 `netbox/circuits/models.py` (+8 -4) 📝 `netbox/circuits/urls.py` (+1 -0) 📝 `netbox/circuits/views.py` (+3 -5) 📝 `netbox/dcim/api/serializers.py` (+9 -9) 📝 `netbox/dcim/api/urls.py` (+1 -0) 📝 `netbox/dcim/api/views.py` (+5 -4) 📝 `netbox/dcim/filters.py` (+45 -4) _...and 66 more files_ </details> ### 📄 Description **This release is not suitable for production use.** This is the third (and hopefully final) beta release of NetBox v2.0. Please be sure to [raise a bug report](https://github.com/digitalocean/netbox/issues) noting any issues you experience. ## Improvements * [#1091](https://github.com/digitalocean/netbox/issues/1091) - Custom fields are now writable via the API ## Bug Fixes * [#1043](https://github.com/digitalocean/netbox/issues/1043) - Corrected queryset in WritableDeviceSerializer validation * [#1045](https://github.com/digitalocean/netbox/issues/1045) - DeviceComponentFilterSet by name expects int instead of str * [#1049](https://github.com/digitalocean/netbox/issues/1049) - Prompt user if missing session key when adding/editing a secret * [#1051](https://github.com/digitalocean/netbox/issues/1051) - Upgraded django-rest-swagger (API docs) * [#1078](https://github.com/digitalocean/netbox/issues/1078) - Increase default limit for number of objects returned by web form API call * [#1107](https://github.com/digitalocean/netbox/issues/1107) - Corrected exception when creating/deleting image attachments * [#1111](https://github.com/digitalocean/netbox/issues/1111) - Corrected database ordering of SessionKey model --- <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:59 +01:00
adam closed this issue 2025-12-29 22:19:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12165