Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update go-libraries (major) #27

Merged
merged 1 commit into from
Apr 29, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 21, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/cli/go-gh v1.2.1 -> v2.9.0 age adoption passing confidence
github.com/google/go-github/v60 v60.0.0 -> v61.0.0 age adoption passing confidence

Release Notes

cli/go-gh (github.com/cli/go-gh)

v2.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.8.0...v2.9.0

v2.8.0

Compare Source

What's Changed

Full Changelog: cli/go-gh@v2.7.0...v2.8.0

v2.7.0

Compare Source

What's Changed

Full Changelog: cli/go-gh@v2.6.0...v2.7.0

v2.6.0

Compare Source

What's Changed

Full Changelog: cli/go-gh@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.4.0...v2.5.0

v2.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.3.0...v2.4.0

v2.3.0: go-gh 2.3.0

Compare Source

What's Changed

Full Changelog: cli/go-gh@v2.2.0...v2.3.0

v2.2.0: go-gh 2.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.1.0...v2.2.0

v2.1.0: go-gh 2.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.0.1...v2.1.0

v2.0.1: go-gh 2.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: cli/go-gh@v2.0.0...v2.0.1

v2.0.0: go-gh 2.0.0

Compare Source

What's Changed

This is a fairly large release with a couple new features and a bunch of tech debt cleanup for go-gh.
As part of keeping this library maintainable and inline with best Go practices we have made breaking changes to a couple of the packages thus constituting a bump of the major version to v2.0.0.
Below are the listed changes ordered by package as well as migration guidelines when applicable.

gh package
  • Move CurrentRepository function from top level gh package to repository package.
    • To migrate: gh.CurrentRepository -> repository.Current
  • Move RESTClient function from top level gh package to api package.
    • To migrate: gh.RESTClient -> api.DefaultRESTClient or api.NewRESTClient
  • Move GQLClient function from top level gh package to api package.
    • To migrate: gh.GQlClient -> api.DefaultGraphQLClient or api.NewGraphQLClient
  • Move HTTPClient function from top level gh package to api package.
    • To migrate: gh.HTTPClient -> api.DefaultHTTPClient or api.NewHTTPClient
  • Add ExecInteractive by @​stemar94 in https://github.com/cli/go-gh/pull/115
  • Add ExecContext function by @​mislav in https://github.com/cli/go-gh/pull/115
  • Add support for GH_PATH environment variable to Exec functions by @​mislav in https://github.com/cli/go-gh/pull/115
api package
  • Change references of GQL to GraphQL.
    • To migrate: api.GQLError -> api.GraphQLError
    • To migrate: api.GQLErrorItem -> api.GraphQLErrorItem
  • Change ClientOptions to be used with value semantics instead of pointer semantics.
    • This allows ClientOptions to be used with multiple clients without having to worry about them being modified.
  • Added DefaultRESTClient, DefaultHTTPClient, DefaultGraphQLClient convenience factory functions.
  • Change RESTClient interface type to a concrete type.
  • Change GraphQLClient interface type to a concrete type.
  • Change methods on HTTPError and GraphQLError custom error types to take pointers as method receivers.
  • Change GraphQLClient Query and Mutate methods to return GraphQLError instead of shurcooL/graphql.Errors.
browser package
  • Change New factory function to return *Browser instead of Browser.
config package
  • Change methods on InvalidConfigFileError and KeyNotFoundError custom error types to take pointers as method receivers.
jq package
repository package
  • Change Repository interface type to a concrete type.
ssh package
template package
  • Change New factory function to return *Template instead of Template.

Other changes

New Contributors

Full Changelog: cli/go-gh@v1.2.1...v2.0.0

google/go-github (github.com/google/go-github/v60)

v61.0.0

Compare Source

This release contains the following breaking API changes:

  • feat!: Update deprecated endpoints in github/action_variables.go (#​3104)

...and the following additional changes:

  • Bump go-github from v59 to v60 in /scrape (#​3087)
  • Allow querying rule set information by ID with information returned from GetRulesFromBranch (#​3089)
  • Bump codecov/codecov-action from 4.0.2 to 4.1.0 (#​3091)
  • Bump github.com/PuerkitoBio/goquery from 1.9.0 to 1.9.1 in /scrape (#​3092)
  • Add Protection to Branch struct (#​3095)
  • Bump github.com/alecthomas/kong from 0.8.1 to 0.9.0 in /tools (#​3097)
  • Bump golang.org/x/net from 0.21.0 to 0.22.0 in /scrape (#​3096)
  • Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 in /example (#​3099)
  • Add audit log rate limit category and make rate limit category getter public (#​3088)
  • Update README.md (#​3110)
  • Allow Installation of Custom Properties Permissions (#​3108)
  • Add NotificationSetting to NewTeam (#​3111)
  • Fix pagination for ListCopilotSeats (#​3112)
  • Add .*.local to .gitignore (#​3115)
  • Add CreateOrUpdateRepoCustomPropertyValues (#​3109)
  • Bump version of go-github to v61.0.0 (#​3118)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Apr 21, 2024
@renovate renovate bot enabled auto-merge (rebase) April 21, 2024 15:24
@renovate renovate bot force-pushed the renovate/major-go-libraries branch from 375c86b to f9cbd61 Compare April 28, 2024 20:02
@renovate renovate bot force-pushed the renovate/major-go-libraries branch from f9cbd61 to 5a7a0ee Compare April 29, 2024 19:30
@renovate renovate bot merged commit 7202a60 into main Apr 29, 2024
3 checks passed
@renovate renovate bot deleted the renovate/major-go-libraries branch April 29, 2024 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants