[PR #1042] [MERGED] Release v2.0 Beta 2 #12155

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

📋 Pull Request Information

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

Base: v2-betaHead: v2-develop


📝 Commits (10+)

  • 3fe3151 Filter on mac address on interface
  • f2dc287 Filter on mac address on interface
  • f26253e Filter on mac address on interface
  • 007fe6a Markdown fixes
  • 66a6a8f Closes #983: Include peer device names when listing circuits in device view
  • 32bf17c Closes #978: Allow filtering device types by function and subdevice role
  • 0899a10 Only attempt to process session key if user is authenticated
  • b875cea Filter on mac address on interface via API
  • fb6cfa4 Merge pull request #974 from marc-us/develop
  • c0417c1 Closes #972: Add ability to filter connections list by device name

📊 Changes

190 files changed (+25944 additions, -18975 deletions)

View changed files

📝 README.md (+0 -4)
📝 docs/api/authentication.md (+1 -1)
📝 docs/api/overview.md (+1 -1)
📝 docs/data-model/dcim.md (+0 -4)
📝 docs/data-model/extras.md (+7 -0)
netbox/circuits/admin.py (+0 -29)
📝 netbox/circuits/forms.py (+2 -2)
📝 netbox/circuits/tables.py (+35 -17)
netbox/dcim/admin.py (+0 -212)
📝 netbox/dcim/api/urls.py (+3 -1)
📝 netbox/dcim/api/views.py (+19 -5)
📝 netbox/dcim/filters.py (+58 -13)
📝 netbox/dcim/forms.py (+30 -12)
📝 netbox/dcim/models.py (+8 -5)
📝 netbox/dcim/tables.py (+91 -25)
📝 netbox/dcim/tests/test_api.py (+86 -0)
📝 netbox/dcim/urls.py (+5 -0)
📝 netbox/dcim/views.py (+3 -2)
📝 netbox/extras/api/customfields.py (+32 -22)
📝 netbox/extras/api/serializers.py (+54 -3)

...and 80 more files

📄 Description

This release is not suitable for production use.

This is the second beta release of NetBox v2.0. Please be sure to raise a bug report noting any issues you experience.

New Features

  • #152 - Image attachments for sites, racks, and devices
  • #159 - Global search

Improvements

  • #973 - Removed redundant functionality from the admin UI
  • #985 - Added preserve_key to get-session-key endpoint
  • #1033 - Upgraded to Django 1.11

Bug Fixes

  • #996 - Fixed NoReverseMatch Exception: Add Interface Connection
  • #1021 - Corrected evaluation of API token expiration time
  • #1025 - Applied missing API view filters
  • #1028 - Corrected API endpoint URL name in IPAddressForm

🔄 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/1042 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/5/2017 **Status:** ✅ Merged **Merged:** 4/5/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `v2-beta` ← **Head:** `v2-develop` --- ### 📝 Commits (10+) - [`3fe3151`](https://github.com/netbox-community/netbox/commit/3fe3151af7db860d8c65c6eff1bb7a27323e0f6c) Filter on mac address on interface - [`f2dc287`](https://github.com/netbox-community/netbox/commit/f2dc287f1429b2338b44169e2c358cc55b95c93a) Filter on mac address on interface - [`f26253e`](https://github.com/netbox-community/netbox/commit/f26253ec491d699844f995a05f6a9b36e481c724) Filter on mac address on interface - [`007fe6a`](https://github.com/netbox-community/netbox/commit/007fe6a030a3d78cb57cd1419a2f8f85a687ad55) Markdown fixes - [`66a6a8f`](https://github.com/netbox-community/netbox/commit/66a6a8f33caedb678c3aab8fd2ae5ff6c24e56e4) Closes #983: Include peer device names when listing circuits in device view - [`32bf17c`](https://github.com/netbox-community/netbox/commit/32bf17c076741b0e4e615a796b6129c1e52efd83) Closes #978: Allow filtering device types by function and subdevice role - [`0899a10`](https://github.com/netbox-community/netbox/commit/0899a1052ead0aa0359d6d173259ff52fab55e8f) Only attempt to process session key if user is authenticated - [`b875cea`](https://github.com/netbox-community/netbox/commit/b875cea10d5f6a59a250a37a023d32867285ec8b) Filter on mac address on interface via API - [`fb6cfa4`](https://github.com/netbox-community/netbox/commit/fb6cfa45fdbc027f9a7d524e705470fabef818ad) Merge pull request #974 from marc-us/develop - [`c0417c1`](https://github.com/netbox-community/netbox/commit/c0417c19897af27c01147449ec57581384a632ef) Closes #972: Add ability to filter connections list by device name ### 📊 Changes **190 files changed** (+25944 additions, -18975 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+0 -4) 📝 `docs/api/authentication.md` (+1 -1) 📝 `docs/api/overview.md` (+1 -1) 📝 `docs/data-model/dcim.md` (+0 -4) 📝 `docs/data-model/extras.md` (+7 -0) ➖ `netbox/circuits/admin.py` (+0 -29) 📝 `netbox/circuits/forms.py` (+2 -2) 📝 `netbox/circuits/tables.py` (+35 -17) ➖ `netbox/dcim/admin.py` (+0 -212) 📝 `netbox/dcim/api/urls.py` (+3 -1) 📝 `netbox/dcim/api/views.py` (+19 -5) 📝 `netbox/dcim/filters.py` (+58 -13) 📝 `netbox/dcim/forms.py` (+30 -12) 📝 `netbox/dcim/models.py` (+8 -5) 📝 `netbox/dcim/tables.py` (+91 -25) 📝 `netbox/dcim/tests/test_api.py` (+86 -0) 📝 `netbox/dcim/urls.py` (+5 -0) 📝 `netbox/dcim/views.py` (+3 -2) 📝 `netbox/extras/api/customfields.py` (+32 -22) 📝 `netbox/extras/api/serializers.py` (+54 -3) _...and 80 more files_ </details> ### 📄 Description **This release is not suitable for production use.** This is the second 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. ## New Features * [#152](https://github.com/digitalocean/netbox/issues/152) - Image attachments for sites, racks, and devices * [#159](https://github.com/digitalocean/netbox/issues/159) - Global search ## Improvements * [#973](https://github.com/digitalocean/netbox/issues/973) - Removed redundant functionality from the admin UI * [#985](https://github.com/digitalocean/netbox/issues/985) - Added preserve_key to get-session-key endpoint * [#1033](https://github.com/digitalocean/netbox/issues/1033) - Upgraded to Django 1.11 ## Bug Fixes * [#996](https://github.com/digitalocean/netbox/issues/996) - Fixed NoReverseMatch Exception: Add Interface Connection * [#1021](https://github.com/digitalocean/netbox/issues/1021) - Corrected evaluation of API token expiration time * [#1025](https://github.com/digitalocean/netbox/issues/1025) - Applied missing API view filters * [#1028](https://github.com/digitalocean/netbox/issues/1028) - Corrected API endpoint URL name in IPAddressForm --- <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:56 +01:00
adam closed this issue 2025-12-29 22:19:56 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12155