go-jira icon indicating copy to clipboard operation
go-jira copied to clipboard

latest version at gopkg.in/andygrunwald/go-jira.v1 is 1.8.0

Open shanestarcher-okta opened this issue 4 years ago • 6 comments

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.

shanestarcher-okta avatar Jan 28 '21 21:01 shanestarcher-okta

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.

github-actions[bot] avatar Jan 28 '21 21:01 github-actions[bot]

@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 avatar Jan 29 '21 01:01 benjivesterby

@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?

shanestarcher-okta avatar Jan 29 '21 01:01 shanestarcher-okta

❯ 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

shanestarcher-okta avatar Jan 29 '21 01:01 shanestarcher-okta

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

shanestarcher-okta avatar Jan 29 '21 01:01 shanestarcher-okta

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 Screen Shot 2021-03-08 at 6 14 24 PM

neha-viswanathan avatar Mar 09 '21 02:03 neha-viswanathan