[PR #10411] [CLOSED] DRAFT: 7016 postgresql search #13624

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/10411
Author: @arthanson
Created: 9/19/2022
Status: Closed

Base: featureHead: 7016-postgresql-search


📝 Commits (10+)

  • 7fd7c87 #7016 base search classes
  • afbc755 Merge branch 'develop' into 7016-postgresql-search
  • 133b342 Merge branch 'feature' into 7016-postgresql-search
  • 2fad277 7016 add search indexes
  • 3afec02 7016 add search indexes
  • 8bfb166 7016 add search indexes
  • 17af2bd 7016 add search indexes
  • 12d6ec6 7016 add search indexes
  • b634760 7016 add search indexes
  • c1bf9c4 Merge branch 'feature' into 7016-postgresql-search

📊 Changes

15 files changed (+709 additions, -271 deletions)

View changed files

netbox/circuits/search_indexes.py (+42 -0)
netbox/dcim/search_indexes.py (+171 -0)
netbox/extras/search_indexes.py (+20 -0)
netbox/ipam/search_indexes.py (+82 -0)
📝 netbox/netbox/forms/__init__.py (+5 -8)
📝 netbox/netbox/search.py (+14 -258)
📝 netbox/netbox/settings.py (+1 -0)
📝 netbox/netbox/views/__init__.py (+5 -5)
netbox/search/__init__.py (+0 -0)
netbox/search/apps.py (+33 -0)
netbox/search/backends.py (+137 -0)
netbox/search/models.py (+95 -0)
netbox/tenancy/search_indexes.py (+32 -0)
netbox/virtualization/search_indexes.py (+39 -0)
netbox/wireless/search_indexes.py (+33 -0)

📄 Description

Fixes: #7016


🔄 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/10411 **Author:** [@arthanson](https://github.com/arthanson) **Created:** 9/19/2022 **Status:** ❌ Closed **Base:** `feature` ← **Head:** `7016-postgresql-search` --- ### 📝 Commits (10+) - [`7fd7c87`](https://github.com/netbox-community/netbox/commit/7fd7c8715b3d254ddb4f13593d55ba184092e1a6) #7016 base search classes - [`afbc755`](https://github.com/netbox-community/netbox/commit/afbc75551d5619c8361af2cd3231b4f1dc638ec9) Merge branch 'develop' into 7016-postgresql-search - [`133b342`](https://github.com/netbox-community/netbox/commit/133b342238e6919dffe192211e5ad3dd1e0a3bcd) Merge branch 'feature' into 7016-postgresql-search - [`2fad277`](https://github.com/netbox-community/netbox/commit/2fad277c89bb6da34f9bcc11605d6b2d8c66543c) 7016 add search indexes - [`3afec02`](https://github.com/netbox-community/netbox/commit/3afec0205581522ba521f5e1114af6c94da12277) 7016 add search indexes - [`8bfb166`](https://github.com/netbox-community/netbox/commit/8bfb1665ac7cc6eebc801141097b999535277dc2) 7016 add search indexes - [`17af2bd`](https://github.com/netbox-community/netbox/commit/17af2bdbd07397cd68da55c705f0156857195536) 7016 add search indexes - [`12d6ec6`](https://github.com/netbox-community/netbox/commit/12d6ec67d5efca45f3d84158c7a918d6523024f2) 7016 add search indexes - [`b634760`](https://github.com/netbox-community/netbox/commit/b6347602b9ebf705e38455e43c8c65588ff61979) 7016 add search indexes - [`c1bf9c4`](https://github.com/netbox-community/netbox/commit/c1bf9c400f76c3e44ee0be9b73d54d7010cde6d8) Merge branch 'feature' into 7016-postgresql-search ### 📊 Changes **15 files changed** (+709 additions, -271 deletions) <details> <summary>View changed files</summary> ➕ `netbox/circuits/search_indexes.py` (+42 -0) ➕ `netbox/dcim/search_indexes.py` (+171 -0) ➕ `netbox/extras/search_indexes.py` (+20 -0) ➕ `netbox/ipam/search_indexes.py` (+82 -0) 📝 `netbox/netbox/forms/__init__.py` (+5 -8) 📝 `netbox/netbox/search.py` (+14 -258) 📝 `netbox/netbox/settings.py` (+1 -0) 📝 `netbox/netbox/views/__init__.py` (+5 -5) ➕ `netbox/search/__init__.py` (+0 -0) ➕ `netbox/search/apps.py` (+33 -0) ➕ `netbox/search/backends.py` (+137 -0) ➕ `netbox/search/models.py` (+95 -0) ➕ `netbox/tenancy/search_indexes.py` (+32 -0) ➕ `netbox/virtualization/search_indexes.py` (+39 -0) ➕ `netbox/wireless/search_indexes.py` (+33 -0) </details> ### 📄 Description <!-- Thank you for your interest in contributing to NetBox! Please note that our contribution policy requires that a feature request or bug report be approved and assigned prior to filing a pull request. This helps avoid wasting time and effort on something that we might not be able to accept. IF YOUR PULL REQUEST DOES NOT REFERENCE AN ISSUE WHICH HAS BEEN ASSIGNED TO YOU, IT WE BE CLOSED AUTOMATICALLY. Specify your assigned issue number on the line below. --> ### Fixes: #7016 <!-- Please include a summary of the proposed changes below. --> --- <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 23:19:55 +01:00
adam closed this issue 2025-12-29 23: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#13624