miq_bot icon indicating copy to clipboard operation
miq_bot copied to clipboard

Update dependency octokit to v10

Open renovate[bot] opened this issue 1 year ago • 1 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
octokit '~> 4.25.0' -> '~> 10.0.0' age adoption passing confidence

Release Notes

octokit/octokit.rb (octokit)

v10.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v9.2.0...v10.0.0

v9.2.0

Compare Source

What's Changed

Features
Fixes
  • fix: Addresses URI parsing compatibility with Ruby 3.4 by @​casperisfine in #​1708
  • fix: Remove the Faraday multipart warning and tweak the error message raised at runtime when Faraday Multipart is not installed by
  • fix: Corrects the order of caching + authorization middlewares by @​DimitriosLisenko in #​1661
Dependencies

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v9.1.0...v9.2.0

v9.1.0

Compare Source

What's Changed

Features

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v9.0.0...v9.1.0

v9.0.0

Compare Source

BREAKING CHANGES

What's Changed

Breaking changes
  • BREAKING CHANGE: Removes PubSubHubbub module and /hub API endpoint implementation by @​mjimenez98 in #​1675
Features
Fixes
Documentation
Maintenance

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v8.1.0...v8.2.0

v8.1.0

Compare Source

What's Changed

Features
Fixes
Maintenance
Docs

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v7.2.0...v8.0.1

v8.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v7.2.0...v8.0.0

v7.2.0

Compare Source

What's Changed

Features
Maintenance

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v7.1.0...v7.2.0

v7.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v7.0.0...v7.1.0

v7.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v6.1.1...v7.0.0

v6.1.1

Compare Source

What's Changed

Features
Bugs
  • [fix] Ensures that the API Token in clear text is never present in the error stack trace when set in the URL by @​nickfloyd in #​1562
Docs
Maintenance

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v6.1.0...v6.1.1

v6.1.0

Compare Source

What's Changed

Features
  • Allow using the response_headers or headers when getting Rate Limit Info by @​DougEdey in #​1533
  • Add Faraday DEFAULT_EXCEPTIONS for when retry middleware is available by @​DougEdey in #​1546
Bugs
Docs
Maintenance

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v6.0.1...v6.1.0

v6.0.1

Compare Source

What's Changed

Dependencies
Housekeeping
Bug fixes

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v6.0.0...v6.0.1

v6.0.0

Compare Source

We're releasing v6.0.0 because #​1494 and #​1495 are technically breaking changes although the APIs that underlie this functionalilty have been not operational for some time.

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.6.1...v6.0.0

v5.6.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.6.0...v5.6.1

v5.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.5.0...v5.6.0

v5.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.4.0...v5.5.0

v5.4.0

Compare Source

What's Changed

  • Add support for "Check team permissions for a repository" API (GET /orgs/{org}/teams/{team_slug}/repos/{owner}/{repo}) with #team_permissions_for_repo by @​juanmrad in #​1474

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.3.0...v5.4.0

v5.3.0

Compare Source

Features

New Contributors

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.2.0...v5.3.0

v5.2.0

Compare Source

Advisories and Breaking Changes

With this release, all preview logic and header implementations have been removed. GitHub REST API previews were promoted in October 2021. With this change, the headers no longer need to be passed to the GitHub REST API. This means you will no longer need to manually pass in preview headers (for any reason) to benefit from the API changes behind the preview logic.

Housekeeping

  • Removes REST API previews logic from the SDK now that all previews have been promoted by @​nickfloyd in #​1464

CI/Build

Dependencies

Full Changelog: https://github.com/octokit/octokit.rb/compare/v5.1.0...v5.2.0

v5.1.0

Compare Source

Features

  • Add support for the "Search topics" (GET /search/topics) API with .search_topics (@​juanluis-garrote)
  • Add support for the "Disable a workflow" (PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable) GitHub Actions API with .workflow_disable (@​Fryguy)
  • Add support for the "Enable a workflow" (PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable) GitHub Actions API with .workflow_enable (@​Fryguy)
  • Add support for the "Get workflow run usage" (GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing) GitHub Actions API with .workflow_run_usage (@​mathroule)
  • Add support for the "Get a job for a workflow run" (GET /repos/{owner}/{repo}/actions/jobs/{job_id}) GitHub Actions API with .workflow_run_job (@​mathroule)
  • Add support for the "Download job logs for a workflow run" (GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs) GitHub Actions API with .workflow_run_job_logs (@​mathroule)
  • Add support for the "List jobs for a workflow run attempt" (GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs) GitHub Actions API with .workflow_run_attempt_jobs (@​mathroule)
  • Add support for the "List jobs for a workflow run" (GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs) GitHub Actions API with .workflow_run_jobs (@​mathroule)

Gem development

v5.0.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Sep 23 '24 16:09 renovate[bot]

Checked commit https://github.com/ManageIQ/miq_bot/commit/627a7f6249da11e7fb8afb4d12832cd2c1e76a16 with ruby 3.1.5, rubocop 1.56.3, haml-lint 0.62.0, and yamllint 1 file checked, 0 offenses detected Everything looks fine. :+1:

miq-bot avatar Jul 03 '25 19:07 miq-bot