go-jira
go-jira copied to clipboard
latest version at gopkg.in/andygrunwald/go-jira.v1 is 1.8.0
Are all versions newer than 1.8.0 considered not stable? gopkg.in/andygrunwald/go-jira.v1
is reference in the docs as the stable version, but it has not had changes since 2019.
Hi! Thank you for taking the time to create your first issue! Really cool to see you here for the first time. Please give us a bit of time to review it.
@shanestarcher-okta on the link https://gopkg.in/andygrunwald/go-jira.v1 it shows the current version as v1.13.0. Do you see something different?
@benjivesterby it does show the current version, but if I drop that into my go.mod file it screams. Also if I do a go get gopkg.in/andygrunwald/go-jira.v1
the version that gets dropped in my go mod is 1.8.0. Not 1.13.0.
Am I missing something on my end?
❯ cat go.mod
module test.com
go 1.15
❯ go get gopkg.in/andygrunwald/go-jira.v1
go: gopkg.in/andygrunwald/go-jira.v1 upgrade => v1.8.0
go: finding module for package github.com/google/go-querystring/query
go: finding module for package github.com/fatih/structs
go: finding module for package github.com/trivago/tgo/tcontainer
go: finding module for package github.com/pkg/errors
go: found github.com/fatih/structs in github.com/fatih/structs v1.1.0
go: found github.com/google/go-querystring/query in github.com/google/go-querystring v1.0.0
go: found github.com/pkg/errors in github.com/pkg/errors v0.9.1
go: found github.com/trivago/tgo/tcontainer in github.com/trivago/tgo v1.0.7
❯ ls
go.mod go.sum
❯ cat go.mod
module test.com
go 1.15
require (
github.com/fatih/structs v1.1.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/trivago/tgo v1.0.7 // indirect
gopkg.in/andygrunwald/go-jira.v1 v1.8.0 // indirect
If I take that and manually update it to 1.13.0
❯ go mod verify
go: gopkg.in/andygrunwald/[email protected]: go.mod has non-....v1 module path "github.com/andygrunwald/go-jira" at revision v1.13.0
Update: Although it looks like there has been a change: https://pkg.go.dev/github.com/andygrunwald/go-jira
it looks like the version here is still pointing to 1.8.0 https://pkg.go.dev/gopkg.in/andygrunwald/go-jira.v1