-
Notifications
You must be signed in to change notification settings - Fork 1
Update dependency netbox-community/netbox to v3.7.8 #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/netbox-community-netbox-3.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f14df93 to
964163f
Compare
964163f to
5297e05
Compare
5297e05 to
98c87c5
Compare
98c87c5 to
436a0aa
Compare
436a0aa to
bbe4b23
Compare
bbe4b23 to
ee30b08
Compare
ee30b08 to
ae5e973
Compare
ae5e973 to
2babe45
Compare
2babe45 to
5a3b70a
Compare
5a3b70a to
7b4e413
Compare
7b4e413 to
887e493
Compare
887e493 to
e264690
Compare
e264690 to
620a0bb
Compare
620a0bb to
03ff56c
Compare
03ff56c to
72ad690
Compare
72ad690 to
b5cef6b
Compare
b5cef6b to
9fb3550
Compare
9fb3550 to
76f2c77
Compare
76f2c77 to
fa5d2f1
Compare
fa5d2f1 to
40fc6c7
Compare
40fc6c7 to
34e1a30
Compare
34e1a30 to
81f960b
Compare
81f960b to
61fac97
Compare
61fac97 to
f0e2207
Compare
f0e2207 to
444eecb
Compare
444eecb to
a5296a4
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v3.5.1->v3.7.8Release Notes
netbox-community/netbox (netbox-community/netbox)
v3.7.8: - 2024-05-06Compare Source
Enhancements
Bug Fixes
v3.7.7: - 2024-05-01Compare Source
Enhancements
Bug Fixes
BANNER_MAINTENANCEcontent should permit custom HTMLv3.7.6: - 2024-04-22Compare Source
Enhancements
Bug Fixes
AttributeErrorexception when attempting to save an incomplete tunnel terminationike_policy&ike_policy_idfilters for IKE proposalsidin list of supported fields for all bulk import formsv3.7.5: - 2024-04-04Compare Source
Enhancements
Bug Fixes
button_classfield on custom link bulk import formv3.7.4: - 2024-03-13Compare Source
Enhancements
Bug Fixes
displayfield on VirtualDisk serialization in REST APIv3.7.3: - 2024-02-21Compare Source
Enhancements
associate_by_email()from default social auth pipelineBug Fixes
config_templatefield on REST API serializer for virtual machinesgroupfield should be optional when creating VPN tunnel via REST APIfront_image&rear_imageon DeviceTypev3.7.2: - 2024-02-05Compare Source
Enhancements
Bug Fixes
NoReverseMatchexception when rendering a custom field which references a usercan_add()template filter should accept a model (not an instance)v3.7.1: - 2024-01-17Compare Source
Bug Fixes
available_at_sitefilter when filtering VLANs under prefix forminstalled_deviceon DeviceBayv3.7.0: - 2023-12-29Compare Source
Breaking Changes
content_types,type_create,type_update,type_delete,type_job_start,type_job_end,enabled, andconditions. Webhooks are now tied to events via event rules. New event rules will be created for any existing webhooks automatically upon upgrade.ui_visibilityfield on the custom field model has been replaced with two new fields:ui_visibleandui_editable. These new fields will have their values mapped from the original field automatically upon upgrade.FeatureQueryclass used internally for querying content types by model feature has been removed. It has been replaced by the newwith_feature()manager method on NetBox's proxy model for ContentType (core.models.ContentType).extrastocore. Configuration history will be retained throughout the upgrade process.ipamapp to the newvpnapp. All object data will be retained, however please note that the relevant API endpoints have likewise moved to/api/vpn/.CustomFieldsMixin,SavedFiltersMixin, andTagsMixinclasses have moved from theextras.forms.mixinsmodule tonetbox.forms.mixins.New Features
VPN Tunnels (#9816)
Several new models have been introduced to enable VPN tunnel management. Users can now define tunnels with two or more terminations to represent peer-to-peer or hub-and-spoke topologies. Each termination is made to a virtual interface on a device or virtual machine. Additionally, users can define IKE and IPSec proposals and policies, which can be applied to tunnels to document encryption and authentication strategies.
Event Rules (#14132)
This release introduces event rules, which can be used to send webhooks or execute custom scripts automatically in response to events that occur in NetBox. For example, it's now possible to run a custom script whenever a new site is created with a particular status or tag.
Event rules replace and extend functionality that was previously built into the webhook model. New event rules will be created for any existing webhooks automatically upon upgrade.
Virtual Machine Disks (#8356)
A new VirtualDisk model has been introduced to enable tracking the assignment of discrete virtual disks to virtual machines. The
sizefield has been retained on the VirtualMachine model, and will be populated automatically with the aggregate size of all assigned virtual disks. (Users who opt to eschew the new model may continue using the VirtualMachinesizeattribute independently as in previous releases.)Object Protection Rules (#10244)
A new
PROTECTION_RULESconfiguration parameter has been introduced. Similar to how custom validation rules can be used to enforce certain values for object attributes, protection rules guard against the deletion of objects which do not meet specified criteria. This enables an administrator to prevent, for example, the deletion of a site which has a status of "active."Improved Custom Field Visibility Controls (#13299)
The
ui_visiblefield on the custom field model has been superseded by two new fields,ui_visibleandui_editable, which control how and whether a custom field is displayed when view and editing an object, respectively. Separating these two functions into discrete fields allows more control over how each custom field is presented to users. The values of these fields will be appropriately set automatically during the upgrade process from the value of the original field.Improved Global Search Results (#14134)
Global search results now include additional context about each object, such as a description, status, and/or related objects. The set of attributes to be displayed is specific to each object type, and is defined by setting
display_attrsunder the object's SearchIndex class.Table Column Registration for Plugins (#14173)
Plugins can now register their own custom columns for inclusion on core NetBox tables. For example, a plugin can register a new column on SiteTable using the new
register_table_column()utility function, and it will become available for users to select for display.Data Backend Registration for Plugins (#13381)
Plugins can now register their own data backends for use with synchronized data sources. This enables plugins to introduce new backends in addition to the git, S3, and local path backends provided natively.
Enhancements
colorfield for circuit typeserrorfield to the Job model to record any errors associated with its execution/render-configREST API endpoint for virtual machinesCHANGELOG_SKIP_EMPTY_CHANGESconfig parameterdescriptionfield for webhooksjob_startandjob_endsignals to allow automated plugin actionsinterface_idandconsoleport_id)Translations
Bug Fixes
Other Changes
ActionsMixin(backward compatibility has been retained)sentry-sdkPython library is now required only if Sentry reporting is enabledextrasapp intonetbox(backward compatibility has been retained)FeatureQuerywith newwith_feature()method on proxy ContentType manageripamapp to the newvpnappextrasapp tocoreextrasapp tonetboxextras.webhooks_worker.process_webhook()toextras.webhooks.send_webhook()(backward compatibility has been retained)clearcachemanagement commandENFORCE_GLOBAL_UNIQUEnow defaults to true)v3.6.9: - 2023-12-28Compare Source
Enhancements
Bug Fixes
v3.6.8: - 2023-12-27Compare Source
Enhancements
available_at_sitefilter for VLANsBug Fixes
syncdatasourcemanagement commandrunscriptmanagement commandv3.6.7: - 2023-12-15Compare Source
Enhancements
classesparameter tocopy_contenttemplate tagBug Fixes
/available-ips/API endpointsstarting_unitcannot be zerov3.6.6: - 2023-11-29Compare Source
Enhancements
Bug Fixes
v3.6.5: - 2023-11-09Compare Source
Enhancements
get_client_ip()Bug Fixes
v3.6.4: - 2023-10-17Compare Source
Enhancements
DATA_UPLOAD_MAX_MEMORY_SIZEconfiguration parameterBug Fixes
v3.6.3: - 2023-09-26Compare Source
Enhancements
Bug Fixes
IndexErrorexception when manipulating terminations for existing cables via REST APIAttributeErrorexception when attaching front/rear images to a device typeKeyErrorexception when deleting an object which references a configured choice value that has been removedv3.6.2: - 2023-09-20Compare Source
Enhancements
Bug Fixes
CUSTOM_VALIDATORSv3.6.1: - 2023-09-06Compare Source
Enhancements
staff_onlyattribute to MenuItemBug Fixes
familyattribute is always returned when creating aggregates and prefixes via REST APIv3.6.0: - 2023-08-30Compare Source
Breaking Changes
device_rolefield on the Device model has been renamed torole. Thedevice_rolefield has been temporarily retained on the REST API serializer for devices for bConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.