pronto 0.11.3 → 0.11.4

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: 732010892d29212f2dd3efcc0930c85e0f585ffa4ed072a0f377b1d008c0f468
4
- data.tar.gz: 68a2c7447c850429aaaf19bd3cf6d51e01c2364b9528eb77493489a3606be1c9
3
+ metadata.gz: 236602e28fd304c6c2da56ba1def17ceec103b047afafe18dc393dc798f80383
4
+ data.tar.gz: 1994554e2d757d7d143fd3865ef02953a1e559ce2cd4f8283e0f06ea5d7fef5d
5
5
  SHA512:
6
- metadata.gz: 9b612b2f8edb11d70236daad92523076697bf389ad31129a0957fb8d84291c7e92516054f2441208ea1b88192c8ad7d58ef7c0a917e6a75931e79e3b9f116f67
7
- data.tar.gz: 10f3c215e33277d1d01ac7a9877c34f3a2439e61e5426289fdb95ba709640beaa0db06e7d3169112c5fdae5704fa1c1634cf1959839c555cd2106350b67f9412
6
+ metadata.gz: ba48ee4249ddb5815f3b3ab6d9a05425139700ecf579b5be259048efab45eac358323795845722c770ee2a2cb65909263899f3997ab6646d2b981fdc07fd78c3
7
+ data.tar.gz: 357ace903aba554b35c3a678e6c068995e2250f50b7d888f9a4e7dfbd2f26f00794c78f2db9edf713d2b4b122c25dfc889e97ecbb15081a7da27cf96fc099258
@@ -6,7 +6,7 @@ on:
6
6
 
7
7
  jobs:
8
8
  pronto:
9
- runs-on: ubuntu-20.04
9
+ runs-on: ubuntu-24.04
10
10
  steps:
11
11
  - uses: actions/checkout@v4
12
12
  with:
@@ -11,14 +11,14 @@ permissions:
11
11
  jobs:
12
12
  push:
13
13
  if: github.repository == 'prontolabs/pronto'
14
- runs-on: ubuntu-latest
14
+ runs-on: ubuntu-24.04
15
15
 
16
16
  permissions:
17
17
  contents: write
18
18
  id-token: write
19
19
 
20
20
  steps:
21
- - uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
21
+ - uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
22
22
  with:
23
23
  egress-policy: audit
24
24
 
@@ -8,7 +8,7 @@ on:
8
8
 
9
9
  jobs:
10
10
  test:
11
- runs-on: ubuntu-20.04
11
+ runs-on: ubuntu-24.04
12
12
  strategy:
13
13
  matrix:
14
14
  ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.11.4
6
+
7
+ ### Changes
8
+
9
+ * [#477](https://github.com/prontolabs/pronto/pull/477) fix uninitialized constant error with BitBucket integration
10
+ * [#479](https://github.com/prontolabs/pronto/pull/479) relax octokit dependency to allow 10.x releases
11
+
5
12
  ## 0.11.3
6
13
 
7
14
  ### Changes
data/README.md CHANGED
@@ -11,7 +11,7 @@ to your [styleguide](https://github.com/prontolabs/pronto-rubocop), [are DRY](ht
11
11
 
12
12
  ![Pronto demo](pronto.gif "")
13
13
 
14
- _This README might be ahead of the latest release. Find the README for v0.11.3 [here](https://github.com/prontolabs/pronto/blob/v0.11.3/README.md)._
14
+ _This README might be ahead of the latest release. Find the README for v0.11.4 [here](https://github.com/prontolabs/pronto/blob/v0.11.4/README.md)._
15
15
 
16
16
  * [Installation](#installation)
17
17
  * [Usage](#usage)
@@ -1,3 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'ostruct'
4
+
1
5
  class BitbucketClient
2
6
  include HTTParty
3
7
  base_uri 'https://api.bitbucket.org/2.0/repositories'
@@ -1,3 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'ostruct'
4
+
1
5
  class BitbucketServerClient
2
6
  include HTTParty
3
7
 
@@ -1,6 +1,6 @@
1
1
  module Pronto
2
2
  module Version
3
- STRING = '0.11.3'.freeze
3
+ STRING = '0.11.4'.freeze
4
4
 
5
5
  MSG = '%s (running on %s %s %s)'.freeze
6
6
 
data/pronto.gemspec CHANGED
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
41
41
 
42
42
  s.add_runtime_dependency('gitlab', '>= 4.4.0', '< 5.0')
43
43
  s.add_runtime_dependency('httparty', '>= 0.13.7', '< 1.0')
44
- s.add_runtime_dependency('octokit', '>= 4.7.0', '< 10.0')
44
+ s.add_runtime_dependency('octokit', '>= 4.7.0', '< 11.0')
45
45
  s.add_runtime_dependency('rainbow', '>= 2.2', '< 4.0')
46
46
  s.add_runtime_dependency('rexml', '>= 3.2.5', '< 4.0')
47
47
  s.add_runtime_dependency('rugged', '>= 0.23.0', '< 2.0')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.3
4
+ version: 0.11.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mindaugas Mozūras
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-11 00:00:00.000000000 Z
10
+ date: 2025-05-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: gitlab
@@ -58,7 +58,7 @@ dependencies:
58
58
  version: 4.7.0
59
59
  - - "<"
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: '11.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
@@ -68,7 +68,7 @@ dependencies:
68
68
  version: 4.7.0
69
69
  - - "<"
70
70
  - !ruby/object:Gem::Version
71
- version: '10.0'
71
+ version: '11.0'
72
72
  - !ruby/object:Gem::Dependency
73
73
  name: rainbow
74
74
  requirement: !ruby/object:Gem::Requirement