webfinger 2.1.1 → 2.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b46a25444cdb10ea610330974cd6ac9b02a547b3dbe3be70662d0c7b2ad2eeb
4
- data.tar.gz: f6cec0ceef5f6cce9b7b7645998d38079a9089b90d2faaf282122a3280a29fab
3
+ metadata.gz: 8d83a04a983f28497bd1ed2009d1625437e04ddae53ba2c679aead3898e0372a
4
+ data.tar.gz: '0233208c6a7a5368b3af0fed2609e9d2f9fc5109a07b9d123cfc96d2eeb913a9'
5
5
  SHA512:
6
- metadata.gz: 1aead7e5646d0ac4e354bcf38f915d6d05bbcce805786d0b10c42c4b34f0e4cf666ca24e5aa9981b34884a7c36be1ba026cfc7f9aa86d730745d0bc17fad699b
7
- data.tar.gz: 4d54467caf574a5cc4d9683e290ffdc6524bf49ce5169ff890dfeb522cd1e3366a300a718567ba7940cfea3ede4676716dea739820d5c8c9c075d5a7067af75b
6
+ metadata.gz: b25e5c01c939c8537bb15db576acbd52c5ff0dc73aba783fd9cdeab676c268aca5a7c209767f8b71ec9fc6596274284cedd1b4699d8d89d022c4603538517a05
7
+ data.tar.gz: e61a3b8d5d22c60db7e60c1d0adacb1d87d55fa1971c6218595b5e6f6f734a211afeca680a19d49b56ad1976729d79ddbf615439faf9428c67ba1ae2f552a8d0
@@ -3,7 +3,7 @@ name: Spec
3
3
  on:
4
4
  push:
5
5
  branches:
6
- - master
6
+ - main
7
7
  pull_request:
8
8
 
9
9
  permissions:
@@ -13,12 +13,11 @@ jobs:
13
13
  spec:
14
14
  strategy:
15
15
  matrix:
16
- os: ['ubuntu-20.04']
17
- ruby-version: ['2.6', '2.7', '3.0', '3.1']
18
- # ubuntu 22.04 only supports ssl 3 and thus only ruby 3.1
16
+ os: ['ubuntu-20.04', 'ubuntu-22.04']
17
+ ruby-version: ['3.1', '3.2', '3.3']
19
18
  include:
20
- - os: 'ubuntu-22.04'
21
- ruby-version: '3.1'
19
+ - os: 'ubuntu-20.04'
20
+ ruby-version: '3.0'
22
21
  runs-on: ${{ matrix.os }}
23
22
 
24
23
  steps:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [2.1.1] - 2022-10-09
4
+
5
+ ### Changed
6
+
7
+ - convert Faraday::Error to WebFinger::Exception https://github.com/nov/webfinger/commit/a0d8da20f6ce819eea8c2d2c81bcc90d3f41df6f
8
+
9
+ ## [2.1.1] - 2022-10-08
10
+
11
+ ### Fixed
12
+
13
+ - make response json indifferent accessable https://github.com/nov/webfinger/commit/806bc2e2220024f419f44857e5629ff7f9f78fbf
14
+
3
15
  ## [2.1.0] - 2022-10-08
4
16
 
5
17
  ### Changed
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.1
1
+ 2.1.3
@@ -55,7 +55,7 @@ module WebFinger
55
55
  rescue Faraday::Error => e
56
56
  case e.response_status
57
57
  when nil
58
- raise e
58
+ raise Exception.new e
59
59
  when 400
60
60
  raise BadRequest.new('Bad Request', e.response_body)
61
61
  when 401
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webfinger
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - nov matake
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-08 00:00:00.000000000 Z
11
+ date: 2023-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -155,7 +155,7 @@ homepage: https://github.com/nov/webfinger
155
155
  licenses:
156
156
  - MIT
157
157
  metadata: {}
158
- post_install_message:
158
+ post_install_message:
159
159
  rdoc_options: []
160
160
  require_paths:
161
161
  - lib
@@ -170,8 +170,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  - !ruby/object:Gem::Version
171
171
  version: '0'
172
172
  requirements: []
173
- rubygems_version: 3.1.6
174
- signing_key:
173
+ rubygems_version: 3.4.10
174
+ signing_key:
175
175
  specification_version: 4
176
176
  summary: Ruby WebFinger client library, following IETF WebFinger WG spec updates.
177
177
  test_files: