Skip to content

Commit

Permalink
Changelog & cleanup for #9892
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Sep 27, 2022
1 parent d08d562 commit 6016e1b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 0 additions & 4 deletions docs/models/ipam/fhrpgroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ The group's numeric identifier.

An optional name for the FHRP group.

### Description

A brief description of the FHRP group.

### Authentication Type

The type of authentication employed by group nodes, if any.
Expand Down
9 changes: 9 additions & 0 deletions docs/release-notes/version-3.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,19 @@
!!! warning "PostgreSQL 11 Required"
NetBox v3.4 requires PostgreSQL 11 or later.

### Enhancements

* [#9892](https://github.com/netbox-community/netbox/issues/9892) - Add optional `name` field for FHRP groups

### Plugins API

* [#10314](https://github.com/netbox-community/netbox/issues/10314) - Move `clone()` method from NetBoxModel to CloningMixin

### Other Changes

* [#10358](https://github.com/netbox-community/netbox/issues/10358) - Raise minimum required PostgreSQL version from 10 to 11

### REST API Changes

* ipam.FHRPGroup
* Added optional `name` field
8 changes: 5 additions & 3 deletions netbox/ipam/tables/fhrp.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ class FHRPGroupTable(NetBoxTable):
class Meta(NetBoxTable.Meta):
model = FHRPGroup
fields = (
'pk', 'group_id', 'protocol', 'auth_type', 'auth_key', 'name', 'description', 'ip_addresses', 'member_count',
'tags', 'created', 'last_updated',
'pk', 'group_id', 'protocol', 'name', 'auth_type', 'auth_key', 'description', 'ip_addresses',
'member_count', 'tags', 'created', 'last_updated',
)
default_columns = (
'pk', 'group_id', 'protocol', 'name', 'auth_type', 'description', 'ip_addresses', 'member_count',
)
default_columns = ('pk', 'group_id', 'protocol', 'auth_type', 'description', 'ip_addresses', 'member_count')


class FHRPGroupAssignmentTable(NetBoxTable):
Expand Down

0 comments on commit 6016e1b

Please sign in to comment.