turbot / steampipe-plugin-jira

Use SQL to instantly query Jira. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/jira
Apache License 2.0
22 stars 14 forks source link

Bump github.com/andygrunwald/go-jira from 1.13.0 to 1.16.0 #93

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps github.com/andygrunwald/go-jira from 1.13.0 to 1.16.0.

Release notes

Sourced from github.com/andygrunwald/go-jira's releases.

v1.16.0

What's Changed

New Contributors

Full Changelog: https://github.com/andygrunwald/go-jira/compare/v1.15.1...v1.16.0

v1.15.1

What's Changed

New Contributors

Full Changelog: https://github.com/andygrunwald/go-jira/compare/v1.15.0...v1.15.1

v1.15.0

What's Changed

... (truncated)

Changelog

Sourced from github.com/andygrunwald/go-jira's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.0 (UNRELEASED)

Version 2.0 is a bigger change with the main goal to make this library more reliable and future safe. See andygrunwald/go-jira#489 for details.

Migration

Split of clients

We moved from 1 client that handles On-Premise and Cloud to 2 clients that handle either On-Premise or Cloud. Previously you used this library like:

import (
    "github.com/andygrunwald/go-jira"
)

In the new version, you need to decide if you interact with the Jira On-Premise or Jira Cloud version. For the cloud version, you will import this library like

import (
    jira "github.com/andygrunwald/go-jira/cloud"
)

For On-Premise it looks like

import (
    jira "github.com/andygrunwald/go-jira/onpremise"
)

Init a new client

The order of arguments in the jira.NewClient has changed:

  1. The base URL of your JIRA instance
  2. A HTTP client (optional)

Before:

jira.NewClient(nil, "https://issues.apache.org/jira/")
</tr></table> 

... (truncated)

Commits
  • 47d27a7 chore(deps): bump github.com/golang-jwt/jwt/v4 from 4.4.1 to 4.4.2 (#464)
  • dcc7f65 chore(deps): bump github.com/google/go-cmp from 0.5.7 to 0.5.8 (#453)
  • 7c19ccd chore(deps): bump actions/setup-go from 2 to 3 (#452)
  • 2add5a7 GitHub Actions: Remove greetings workflow (#450)
  • 9465594 Added an example of how to add a label to an issue (#442)
  • 50be567 GitHub Actions: Upgrade staticcheck action version to v1.2.0 (#451)
  • 42f2bd2 staticcheck: Remove caching for modules and switch back to static
  • 1998d71 GitHub Actions: Switch v2022.1 to master version of staticcheck
  • 7ddae22 GitHub Actions: Switch staticcheck back to make
  • f42e3a7 Fix staticcheck on Go v1.18 and pin it to v2022.1
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

The following labels could not be found: dependencies, house-keeping.