dragnet 5.3.0 → 5.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3d0b2bd94887600b0346766323020ac0bcc68b23734a8db9fce5b089390a5a4
4
- data.tar.gz: db31788ffe23b39366a55e6de1e2ed18e324b7b151d0589d2bcb0036576225ca
3
+ metadata.gz: 19b50e11d8b26487968d95585c7efa8eb4b1db0ce0f7d2d23ce410d0c1bbe53f
4
+ data.tar.gz: 6fb964ca6fc17b3b4c5793c3de4a4a23f7e13883167b802bb200adbdea85a987
5
5
  SHA512:
6
- metadata.gz: 110e1c571ddd898986813cc0e85f4b7e63d336599f70c8d3c9c3997fa17a1987811cff5e4e8b7479b18bfb7acadb8701fcd4adb6c053cc71a8d57e90d6a2da91
7
- data.tar.gz: e05b628f7502bb4ff5219ea85c54d53d2279b34077c13f7f0bfe55351214569d5cda635dbe7c7e63e017df64c6947a61d295540895f5d1843141e029cf8264b9
6
+ metadata.gz: 81c5227aeb18c6382e4e42b0adc3417808755d0d984ae7b4c2be9fc5ae3a24960c7fa45497817e781380112f6d7a57b4de7b9ec8025c59e114c72424a6935e92
7
+ data.tar.gz: 7a86e7800e1aa950963e14ea50dd4ee07e52cecaa390519021ac2de872fc794fbdaea887dcb5945c21c3c9e49e20a811f26ea4f4919dc7436fe9ba941f0cfc89
data/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ Please mark backwards incompatible changes with an exclamation mark at the start
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [5.3.1] - 2024-12-13
12
+
13
+ ### Fixed
14
+ - Dragnet no longer crashes when generating an HTML report for a repository
15
+ hosted on Github.
16
+
11
17
  ## [5.3.0] - 2024-12-03
12
18
 
13
19
  ### Added
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'forwardable'
4
+ require 'git/url'
4
5
 
5
6
  require_relative 'base_repository'
6
7
 
@@ -36,7 +37,7 @@ module Dragnet
36
37
  #
37
38
  # @return [String] The URI path of the repository
38
39
  def remote_uri_path
39
- URI.parse(git.remotes.first.url).path
40
+ Git::URL.parse(git.remotes.first.url).path
40
41
  end
41
42
 
42
43
  # @return [FalseClass] It always returns false
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dragnet
4
- VERSION = '5.3.0'
4
+ VERSION = '5.3.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dragnet
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.0
4
+ version: 5.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ESR Labs GmbH
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-03 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport