Release Notes
Version 7.8.0 (June 18, 2026)
Plugin Extension Framework (#774)
pynetbox can now be extended to support third-party NetBox plugins without modifying the library. You can register custom record types for a plugin's endpoints, so working with plugin objects feels the same as working with built-in NetBox objects. The new branching (#710) and Custom Objects (#751) integrations are built on this framework.
Custom Thread Pool Executor (#633)
When threading is enabled, you can now control how the parallel requests behind .all() and .filter() are run. You can adjust how many worker threads are used, and supply your own executor — useful for carrying context such as tracing information into the worker threads.
Cursor-Based Pagination (#764)
pynetbox can now page through large result sets using NetBox 4.6's cursor-based pagination.
Other New Features
Enhancements
- #625 - Preserve JSON list fields instead of returning them as
Records
Bug Fixes
- #701 - Fix filtering for custom fields
- #749 - Don't treat
Recordmethods as constructors in_parse_values - #745 - Serialize list-
Recorditems that lack an ID - #519 - Fix link peer casting
- #688 - Skip network fetch for dunder attributes in
Record.__getattr__ - #748 - Stop re-sending PATCH for unchanged partial
custom_fields
Compatibility
- Supports NetBox 4.6
Version 7.7.0 (May 5, 2026)
New Features
- #762 - Support NetBox 4.6: add
VirtualMachineTypesmodel,virtual_machine_typeanddevicetyped attributes onVirtualMachines,oob_iptyped attribute onDevices, anddcim.cablebundle/dcim.rackgroupcontent type mappings
Bug Fixes
- #756 - Use v2 token auth value in
create_token(NetBox 4.5+) - #708 -
Record.serialize()now includes new properties added by the user
Compatibility
- Supports NetBox 4.6
Version 7.6.1 (January 28, 2026)
Enhancements
- #726 - Use
dictinstead ofOrderedDictin Record serialization
New Features
- #434 - Add cable path tracing support for front ports, rear ports, and virtual circuit terminations
Bug Fixes
- #586 - Update internal object state after save operations to prevent attribute reset issues
Version 7.6.0 (January 9, 2026)
Breaking Changes
- ObjectChange moved to
coremodule for NetBox 4.1.0+ compatibility - Previously located in
extras.object_changes - Now accessible via
nb.core.object_changes
New Features
- Support for v2 Tokens introduced in NetBox 4.5.0
- Enhanced token management capabilities
Enhancements
- Added SVG support for Rack Elevation endpoint
- Rack elevation diagrams can now be rendered as SVG
- Access via
rack.elevation.list(render='svg')
Bug Fixes
- Fixed token authentication when retrieving NetBox version
- Prevents 403 errors during version checks
- Token now properly included in version API requests
Compatibility
- Supports NetBox 4.5
Version 7.5.0 (May 20, 2024)
Enhancements
- Expanded cable trace functionality to include:
- CircuitTerminations
- ConsolePorts
- ConsoleServerPorts
- PowerOutlets
- PowerPorts
- Added built-in function to activate a branch
- Use
nb.activate_branch()context manager for NetBox branching plugin
Bug Fixes
- Fixed choices returned when API tokens have PUT but not POST permissions
- Fixed
nb.versionproperty when using OIDC proxy authentication
Compatibility
- Supports NetBox 4.1, 4.2, 4.3, 4.4
Version 7.4.1 (October 25, 2024)
Security
- Updated
requestsandurllib3Python libraries to address security vulnerabilities - No functional changes
Version 7.4.0 (August 8, 2024)
Enhancements
- Added initial NetBox 4.0 support
- Added Python 3.12 support
Bug Fixes
- Fixed complex custom_fields insertion failures
- Replaced
Nonewith'null'in query parameters - Corrected connected endpoints behavior
Testing
- Removed Python 3.8 and 3.9 from test matrix
- Added Python 3.12 to CI/CD pipeline
Compatibility
- Supports NetBox 4.0.6+
Version 7.3.4 (July 2, 2024)
Bug Fixes
- Fixed API version detection for NetBox versions exceeding 4.x
- Removed linting errors
Testing
- Dropped NetBox 3.3 from test matrix
- Focus on NetBox 4.x support
Version 7.3.3 (January 5, 2024)
Fixes
- PyPI release fix
- No functional changes
Version 7.3.2 (January 4, 2024)
Fixes
- Fixed setup.py for new publish workflow
- No functional changes
Version 7.3.1 (January 4, 2024)
Fixes
- Updated PyPI publish workflow
- No functional changes
Version 7.3.0 (January 3, 2024)
New Features
- Added NetBox v3.7 support
Dependencies
- Added
pyyamldependency
Testing
- Updated test suite for NetBox 3.7 compatibility
Compatibility
- Supports NetBox 3.7
Version 7.2.0 (September 7, 2023)
New Features
- Added NetBox v3.6 support
Compatibility
- Supports NetBox 3.6
Version 7.1.0 (August 2023)
Code Quality
- Lint fixes and code cleanup
- Improved code formatting consistency
Compatibility
- Supports NetBox 3.5
Version 7.0.1 (June 2023)
Enhancements
- Updated code formatting
- Documentation improvements
Version 7.0.0 (June 2023)
Breaking Changes
- Minimum NetBox version: 3.3+
- Removed support for NetBox versions below 3.3
New Features
- Full NetBox 3.3 API support
- Updated test suite for NetBox 3.3
Testing
- Completely overhauled test scripts
- Updated test settings for NetBox 3.3 compatibility
- Improved integration test coverage
Compatibility
- NetBox 3.3+ required
- Python 3.8+ required
Version 6.7.x and Earlier
For release notes for versions 6.7 and earlier, please refer to the GitHub Releases page.
Key highlights from earlier versions:
Version 6.7 (Last pre-7.0 release)
- Last version to support NetBox < 3.3
- Python 3.7+ support
Version 6.6
- Custom error pickling fixes
- VLAN str improvements
- VirtualChassis enhancements
Version 6.5
- Added available-vlans support for VLAN groups
Version 6.4
- Added Wireless app support
- Data returned as dict improvements
Version 6.3
- Field name lookup improvements
- Enhanced filtering capabilities