pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ruby-octokit devel/ruby-octokit: update to 6.0.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9cd03f4bec54
branches:  trunk
changeset: 391468:9cd03f4bec54
user:      taca <taca%pkgsrc.org@localhost>
date:      Mon Jan 09 08:22:20 2023 +0000

description:
devel/ruby-octokit: update to 6.0.1

Please refer <https://github.com/octokit/octokit.rb/releases> for changes of
5.x since they are too many to write here.

6.0.0 (2022-10-20)

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

* Fix broken pagination in ActionsWorkflowRuns by @luke-engle in #1488
* Remove Octokit::Client::Hooks#available_hooks by @kfcampbell in #1495
* Change the default value of update_ref force to false by @pocke in #980
* Remove Octokit::Client::Authorizations by @kfcampbell in #1494
* Bump to v6.0.0 by @kfcampbell in #1496

6.0.1 (2022-11-23)

What's Changed

Dependencies

* Update rubocop requirement from 1.36.0 to 1.37.1 by @dependabot in #1497
* Update rubocop requirement from 1.37.1 to 1.38.0 by @dependabot in #1503
* Update rubocop requirement from 1.38.0 to 1.39.0 by @dependabot in #1509

Housekeeping

* Outdated credential removal by @kfcampbell in #1500
* Add issue templates by @kfcampbell in #1501
* Add PR templates by @nickfloyd in #1507

Bug fixes

* Fix broken encoding (fixes #920) by @lparry in #1118

diffstat:

 devel/ruby-octokit/Makefile |  8 ++++----
 devel/ruby-octokit/PLIST    |  7 ++++---
 devel/ruby-octokit/distinfo |  8 ++++----
 3 files changed, 12 insertions(+), 11 deletions(-)

diffs (75 lines):

diff -r 2b56284409f4 -r 9cd03f4bec54 devel/ruby-octokit/Makefile
--- a/devel/ruby-octokit/Makefile       Mon Jan 09 08:11:30 2023 +0000
+++ b/devel/ruby-octokit/Makefile       Mon Jan 09 08:22:20 2023 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2022/08/24 15:56:23 taca Exp $
+# $NetBSD: Makefile,v 1.18 2023/01/09 08:22:20 taca Exp $
 
-DISTNAME=      octokit-4.25.1
+DISTNAME=      octokit-6.0.1
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -8,8 +8,8 @@
 COMMENT=       Ruby toolkit for working with the GitHub API
 LICENSE=       mit
 
-DEPENDS+=      ${RUBY_PKGPREFIX}-sawyer>=0.9:../../www/ruby-sawyer
-DEPENDS+=      ${RUBY_PKGPREFIX}-faraday>=1:../../www/ruby-faraday
+DEPENDS+=      ${RUBY_PKGPREFIX}-sawyer>=0.9.2nb1:../../www/ruby-sawyer
+DEPENDS+=      ${RUBY_PKGPREFIX}-faraday>=1<3:../../www/ruby-faraday
 
 USE_LANGUAGES= # none
 
diff -r 2b56284409f4 -r 9cd03f4bec54 devel/ruby-octokit/PLIST
--- a/devel/ruby-octokit/PLIST  Mon Jan 09 08:11:30 2023 +0000
+++ b/devel/ruby-octokit/PLIST  Mon Jan 09 08:22:20 2023 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2022/08/24 15:56:23 taca Exp $
+@comment $NetBSD: PLIST,v 1.13 2023/01/09 08:22:20 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/.document
 ${GEM_LIBDIR}/CONTRIBUTING.md
@@ -10,11 +10,12 @@
 ${GEM_LIBDIR}/lib/octokit/arguments.rb
 ${GEM_LIBDIR}/lib/octokit/authentication.rb
 ${GEM_LIBDIR}/lib/octokit/client.rb
+${GEM_LIBDIR}/lib/octokit/client/actions_artifacts.rb
 ${GEM_LIBDIR}/lib/octokit/client/actions_secrets.rb
+${GEM_LIBDIR}/lib/octokit/client/actions_workflow_jobs.rb
 ${GEM_LIBDIR}/lib/octokit/client/actions_workflow_runs.rb
 ${GEM_LIBDIR}/lib/octokit/client/actions_workflows.rb
 ${GEM_LIBDIR}/lib/octokit/client/apps.rb
-${GEM_LIBDIR}/lib/octokit/client/authorizations.rb
 ${GEM_LIBDIR}/lib/octokit/client/checks.rb
 ${GEM_LIBDIR}/lib/octokit/client/commit_branches.rb
 ${GEM_LIBDIR}/lib/octokit/client/commit_comments.rb
@@ -59,6 +60,7 @@
 ${GEM_LIBDIR}/lib/octokit/client/source_import.rb
 ${GEM_LIBDIR}/lib/octokit/client/stats.rb
 ${GEM_LIBDIR}/lib/octokit/client/statuses.rb
+${GEM_LIBDIR}/lib/octokit/client/tokens.rb
 ${GEM_LIBDIR}/lib/octokit/client/traffic.rb
 ${GEM_LIBDIR}/lib/octokit/client/users.rb
 ${GEM_LIBDIR}/lib/octokit/configurable.rb
@@ -76,7 +78,6 @@
 ${GEM_LIBDIR}/lib/octokit/gist.rb
 ${GEM_LIBDIR}/lib/octokit/middleware/follow_redirects.rb
 ${GEM_LIBDIR}/lib/octokit/organization.rb
-${GEM_LIBDIR}/lib/octokit/preview.rb
 ${GEM_LIBDIR}/lib/octokit/rate_limit.rb
 ${GEM_LIBDIR}/lib/octokit/repo_arguments.rb
 ${GEM_LIBDIR}/lib/octokit/repository.rb
diff -r 2b56284409f4 -r 9cd03f4bec54 devel/ruby-octokit/distinfo
--- a/devel/ruby-octokit/distinfo       Mon Jan 09 08:11:30 2023 +0000
+++ b/devel/ruby-octokit/distinfo       Mon Jan 09 08:22:20 2023 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.18 2022/08/24 15:56:23 taca Exp $
+$NetBSD: distinfo,v 1.19 2023/01/09 08:22:20 taca Exp $
 
-BLAKE2s (octokit-4.25.1.gem) = fe9fc3cef0b2b88159e27f4418eafd7af5e38fbdc39c34ada8d9a2017f05aeb9
-SHA512 (octokit-4.25.1.gem) = 4b85a9015d086c571afbe58effcd1b3eabb811fb3f79f8a83398a960273f18b4a8f65bde5eb42ce19a23adee022946252ee13541163753fe6b56f88f5689a3aa
-Size (octokit-4.25.1.gem) = 86016 bytes
+BLAKE2s (octokit-6.0.1.gem) = d0c5bc256f0cd0617d85467d88ce528cf56f00099472c17eaf9117cbfff1d141
+SHA512 (octokit-6.0.1.gem) = fee81b10c5073932e4f8cc33dc0920ab9f3791a31de86ceae0feaf3488b2090efceae25c3d842caeb7e479cc3cd09376d8aa5bdca0e1350a46be8947d78262af
+Size (octokit-6.0.1.gem) = 84992 bytes



Home | Main Index | Thread Index | Old Index