Skip to content

Commit

Permalink
Merge pull request #110 from smutel/Netbox3.1
Browse files Browse the repository at this point in the history
feat: Update provider to work with Netbox 3.1
  • Loading branch information
smutel authored May 17, 2022
2 parents a6c1a94 + 169c160 commit 6047bd5
Show file tree
Hide file tree
Showing 777 changed files with 107,791 additions and 13,533 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ '1.17.x' ]
go: [ '1.18.x' ]
steps:
- name: Checkout
uses: actions/[email protected]
Expand All @@ -34,7 +34,7 @@ jobs:
shell: bash

- name: Go installation
uses: actions/setup-go@v3.0.0
uses: actions/setup-go@v3.1.0
with:
go-version: ${{ matrix.go }}

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ '1.17.x' ]
go: [ '1.18.x' ]
steps:
- name: Check conventional commits in PR
uses: Namchee/[email protected]
with:
access_token: ${{ secrets.github_token }}
label: "no-conventional-commits"
close: false
template: "Thank you for your contribution attempt in this repository!\n\nUnfortunately, this pull request doesn't meet our standards by reason we stated below.\nFor future pull requests, please use conventional commits.\nPlease update the commits in this PR with conventional commits rules."
strict: false
report: false

Expand All @@ -43,7 +41,7 @@ jobs:
shell: bash

- name: Go installation
uses: actions/setup-go@v3.0.0
uses: actions/setup-go@v3.1.0
with:
go-version: ${{ matrix.go }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [ '1.17.x' ]
go: [ '1.18.x' ]
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0

- name: Go installation
uses: actions/setup-go@v3.0.0
uses: actions/setup-go@v3.1.0
with:
go-version: ${{ matrix.go }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Terraform provider for [Netbox.](https://netbox.readthedocs.io/en/stable/)

* A libc library like libc6-compat or libc-utils
* General developer tools like make, bash, ... (to build the provider)
* Go 1.16 minimum (to build the provider)
* Go 1.18 minimum (to build the provider)
* Terraform (to use the provider)

## Compatibility with Netbox
Expand Down
31 changes: 13 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,25 @@ go 1.15
require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/go-openapi/runtime v0.23.2
github.com/go-openapi/analysis v0.21.3 // indirect
github.com/go-openapi/runtime v0.24.1
github.com/go-openapi/spec v0.20.6 // indirect
github.com/go-openapi/strfmt v0.21.2
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-hclog v1.2.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.4.3 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/go-version v1.4.0 // indirect
github.com/hashicorp/hcl/v2 v2.11.1 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.3
github.com/hashicorp/terraform-plugin-go v0.9.1 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.16.0
github.com/hashicorp/terraform-registry-address v0.0.0-20220510144317-d78f4a47ae27 // indirect
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/smutel/go-netbox v3.0.1+incompatible
github.com/zclconf/go-cty v1.10.0 // indirect
go.mongodb.org/mongo-driver v1.8.4 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
github.com/smutel/go-netbox v3.1.0+incompatible
github.com/vmihailenco/tagparser v0.1.2 // indirect
go.mongodb.org/mongo-driver v1.9.1 // indirect
golang.org/x/net v0.0.0-20220516155154-20f960328961 // indirect
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6 // indirect
google.golang.org/grpc v1.45.0 // indirect
google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect
google.golang.org/grpc v1.46.2 // indirect
)
414 changes: 98 additions & 316 deletions go.sum

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions vendor/github.com/PuerkitoBio/purell/.gitignore

This file was deleted.

12 changes: 0 additions & 12 deletions vendor/github.com/PuerkitoBio/purell/.travis.yml

This file was deleted.

12 changes: 0 additions & 12 deletions vendor/github.com/PuerkitoBio/purell/LICENSE

This file was deleted.

188 changes: 0 additions & 188 deletions vendor/github.com/PuerkitoBio/purell/README.md

This file was deleted.

Loading

0 comments on commit 6047bd5

Please sign in to comment.