Skip to content

Commit 32c009c

Browse files
authored
Merge pull request #128 from v0ctor/update-spec-to-3.2
Update to Netbox 3.2
2 parents d13e922 + 6dc6c82 commit 32c009c

File tree

702 files changed

+155364
-27222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

702 files changed

+155364
-27222
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ Allan Liu <[email protected]>
1919
Dave Cameron <[email protected]>
2020
Quan D. Hoang <[email protected]>
2121
David Dymko <[email protected]>
22+
Víctor Díaz <[email protected]>

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ go-netbox
33

44
[![GoDoc](http://godoc.org/github.com/netbox-community/go-netbox?status.svg)](http://godoc.org/github.com/netbox-community/go-netbox) [![Build Status](https://github.com/netbox-community/go-netbox/workflows/main/badge.svg?branch=master)](https://github.com/netbox-community/go-netbox/actions) [![Report Card](https://goreportcard.com/badge/github.com/netbox-community/go-netbox)](https://goreportcard.com/report/github.com/netbox-community/go-netbox)
55

6-
Package `netbox` provides an API 3.0 client for [netbox-community's NetBox](https://github.com/netbox-community/netbox)
7-
IPAM and DCIM service.
6+
Package `netbox` provides an API 3.2 client for [netbox-community's Netbox](https://github.com/netbox-community/netbox) IPAM and DCIM service.
87

9-
This package assumes you are using NetBox 3.0, as the NetBox 1.0 API no longer exists. It wasn't tested on NetBox 2.0 but given the minor changes to the API between 2.0 and 3.0 it still might work. If you need Netbox 2.0 support (e.g. for 2.11) you can still `go get github.com/netbox-community/go-netbox@netbox_v2.11`.
8+
This package assumes you are using Netbox 3.2, as the Netbox 1.0 API no longer exists. If you need support for previous Netbox versions, you can still import the corresponding release of the library. For example, run `go get github.com/netbox-community/go-netbox@netbox_v2.11` if you need compatibility with Netbox 2.11.
109

1110
Using the client
1211
================

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/netbox-community/go-netbox
33
go 1.18
44

55
require (
6-
github.com/go-openapi/errors v0.20.1
7-
github.com/go-openapi/runtime v0.19.31
8-
github.com/go-openapi/strfmt v0.20.2
9-
github.com/go-openapi/swag v0.19.15
10-
github.com/go-openapi/validate v0.20.2
6+
github.com/go-openapi/errors v0.20.2
7+
github.com/go-openapi/runtime v0.23.3
8+
github.com/go-openapi/strfmt v0.21.2
9+
github.com/go-openapi/swag v0.21.1
10+
github.com/go-openapi/validate v0.21.0
1111
)

go.sum

+33-174
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)