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 4.25.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/569785bf14d5
branches: trunk
changeset: 383956:569785bf14d5
user: taca <taca%pkgsrc.org@localhost>
date: Wed Aug 24 15:56:23 2022 +0000
description:
devel/ruby-octokit: update to 4.25.1
Update ruby-octokit to 4.25.1. Latest version is 5.3.0 but jekyll-gist
require before 5.0.
4.23.0 (2022-05-26)
Known issues
Autoloading modules cause some modules to not load before use
* What: This version implements autoloading for some modules. The initial
change was deemed good but our community has since come across issues
where autoloading could cause issues due to modules not being loaded or
load order even.
* Action: We will be rolling back this change in the next release (#1428)
* Next steps: This change provides value in the cases where this is not an
issue so we are going to work to come up with an opt-in approach. More
details here.
* Work around: #1420
Hat tip to: @collinsauve. @waiting-for-dev, @etiennebarrie, and @timrogers
for the discovery around this.
Code improvements
* #1382 Correctly raise Octokit::TooManyRequests when hitting secondary rate
limit via @jasonopslevel
* #1411 Adds support for Faraday v2 usage via @skryukov
CI Improvements
* #1395 Adds Ruby 3.1 to CI via @petergoldstein
Performance improvements
* #1351 Make clients autoload via @gmcgibbon
Bug fixes
* #1297 Escape label names with URL characters via @Fryguy
* #1375 Escape ref in archive_link via @max611
* #1117 & #1419 Ensures that any nil parameters being passed in will
initialize with Octokit's defaults instead of nil via @akerl, @nickfloyd
* #1321 & #1415 Fixed total_count calculation when paginating results for
check runs and check suites via @a2ikm, @matiasalbarello
* #1121 Fixes service status methods via @vierarb
Documentation
* #1414 replace git.io link in source docs via @wonda-tea-coffee
* #1412 Document how and when the SDK raises exceptions via @timrogers
* #1356 Fixes grammar and style via @nikoandpiko
4.24.0 (2022-06-06)
Known issues
Note: This release fixes the issue around autoloading modules causing some
modules to not load before use #1428
Code improvements
* #1354, #1426 Enabling Ruby's immutable ("frozen") string literals
i.e. --enable-frozen-string-literal via @timrogers and @olleolleolle
CI Improvements
* Adds Code QL analysis to octokit.rb via @nickfloyd
Bug fixes
* #1428 Fixes module loading issue with autoloading (this reverts #1351 ) -
more information here via @collinsauve. @waiting-for-dev, @etiennebarrie,
@timrogers, and @nickfloyd
4.25.0 (2022-06-15)
NOTE: This remediates A security advisory was published on versions 4.23.0
and 4.24.0 of this gem. You can read more about this in the published
security advisory.
DX Improvements
* Rubocop improvements by @timrogers in #1441
* Require multi-factor authentication to push new releases to RubyGems by
@timrogers in #1443
CI Improvements
Updates all build scripts to be more durable and adds details on how to run
a manual file integrity check by @nickfloyd in #1446
Housekeeping
* Drop support for Ruby 1.9.2 in Octokit::Client::Contents#create_contents
by @timrogers in #1442
4.25.1 (2022-07-01)
* Stop configuring Faraday's retry middleware twice (@Edouard-chin)
* Fix various Ruby warnings (e.g. missing parentheses) (@coryf)
diffstat:
devel/ruby-octokit/Makefile | 8 ++++----
devel/ruby-octokit/PLIST | 3 ++-
devel/ruby-octokit/distinfo | 8 ++++----
3 files changed, 10 insertions(+), 9 deletions(-)
diffs (53 lines):
diff -r 7631fcdf60db -r 569785bf14d5 devel/ruby-octokit/Makefile
--- a/devel/ruby-octokit/Makefile Wed Aug 24 14:40:20 2022 +0000
+++ b/devel/ruby-octokit/Makefile Wed Aug 24 15:56:23 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2022/02/12 12:37:42 taca Exp $
+# $NetBSD: Makefile,v 1.17 2022/08/24 15:56:23 taca Exp $
-DISTNAME= octokit-4.22.0
+DISTNAME= octokit-4.25.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.8.1:../../www/ruby-sawyer
-DEPENDS+= ${RUBY_PKGPREFIX}-faraday>=0.9:../../www/ruby-faraday
+DEPENDS+= ${RUBY_PKGPREFIX}-sawyer>=0.9:../../www/ruby-sawyer
+DEPENDS+= ${RUBY_PKGPREFIX}-faraday>=1:../../www/ruby-faraday
USE_LANGUAGES= # none
diff -r 7631fcdf60db -r 569785bf14d5 devel/ruby-octokit/PLIST
--- a/devel/ruby-octokit/PLIST Wed Aug 24 14:40:20 2022 +0000
+++ b/devel/ruby-octokit/PLIST Wed Aug 24 15:56:23 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2021/01/10 15:27:12 taca Exp $
+@comment $NetBSD: PLIST,v 1.12 2022/08/24 15:56:23 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.document
${GEM_LIBDIR}/CONTRIBUTING.md
@@ -80,6 +80,7 @@
${GEM_LIBDIR}/lib/octokit/rate_limit.rb
${GEM_LIBDIR}/lib/octokit/repo_arguments.rb
${GEM_LIBDIR}/lib/octokit/repository.rb
+${GEM_LIBDIR}/lib/octokit/response/base_middleware.rb
${GEM_LIBDIR}/lib/octokit/response/feed_parser.rb
${GEM_LIBDIR}/lib/octokit/response/raise_error.rb
${GEM_LIBDIR}/lib/octokit/user.rb
diff -r 7631fcdf60db -r 569785bf14d5 devel/ruby-octokit/distinfo
--- a/devel/ruby-octokit/distinfo Wed Aug 24 14:40:20 2022 +0000
+++ b/devel/ruby-octokit/distinfo Wed Aug 24 15:56:23 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.17 2022/02/12 12:37:42 taca Exp $
+$NetBSD: distinfo,v 1.18 2022/08/24 15:56:23 taca Exp $
-BLAKE2s (octokit-4.22.0.gem) = 34b8317f5174487e50a12f9830641391b07e2358e4a8070f5a3e53fc167aaf16
-SHA512 (octokit-4.22.0.gem) = d4706bd0eb883505969818de77df47d1ad8d6d0377d2759352cd8254154755deef613dac99276655f1f9a8b9de453e250c71c0f50f1c9c990109177fee00036a
-Size (octokit-4.22.0.gem) = 84480 bytes
+BLAKE2s (octokit-4.25.1.gem) = fe9fc3cef0b2b88159e27f4418eafd7af5e38fbdc39c34ada8d9a2017f05aeb9
+SHA512 (octokit-4.25.1.gem) = 4b85a9015d086c571afbe58effcd1b3eabb811fb3f79f8a83398a960273f18b4a8f65bde5eb42ce19a23adee022946252ee13541163753fe6b56f88f5689a3aa
+Size (octokit-4.25.1.gem) = 86016 bytes
Home |
Main Index |
Thread Index |
Old Index