scalingo 3.5.0 → 3.6.0

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: 98e17d7eb47e72aad2aefb6a07c6096542b1debd1533b15353b79ae7681c95f0
4
- data.tar.gz: f224c29ecdeaba0fe9bba5d3bd3898fb9ed34de6c1ad6a58fddab89fcce2cedc
3
+ metadata.gz: ae7c318313222d00bddd92ab249a36c6bfce5d6173db0bfc54d72ef12f3b4ab3
4
+ data.tar.gz: 788a6ec39a2905815706a3c5e94b268179160dca0a0ced2bd02c08dd73fc81b4
5
5
  SHA512:
6
- metadata.gz: bd981473899a583adab7c970aa2255fd0f5c70d112d3358241d512e7c300f7d710d5cc6c71ac73050f07bfe36b7aad0bf74fadc8219cfd7dbf5e245e1a9f80f5
7
- data.tar.gz: 524aea983112d2e5a323151fc974104b8890e7b133f0bcaaa974a7884f93e76caf2f5a78894e831092467f4ea1de4ab5b91d1a3c9ec1becd856e9ff94e499073
6
+ metadata.gz: bee1638a6aa0ebe080dc199379e7f72682ef61fc650948d917d2acfb457bab251ea4f82ac7f59c0a02509191a71489169c7bc8dfc2f5d589e33bcc50872ca0a4
7
+ data.tar.gz: 4db09ce4fe2352d8e24a1b4b3631f7d82173f3185ad0ee7a4304d5928bd3a348f0737a70f9ffa3b2d2b29bb5a42725db0b37295998098685e6a7f8b345f36bf1
@@ -7,18 +7,15 @@ on:
7
7
 
8
8
  jobs:
9
9
  build:
10
- name: Build + Publish
11
10
  runs-on: ubuntu-latest
12
- permissions:
13
- contents: read
11
+
14
12
  steps:
15
13
  - uses: actions/checkout@v4
16
14
  - name: Set up Ruby
17
15
  uses: ruby/setup-ruby@v1
18
16
  with:
19
- ruby-version: "3.1"
17
+ ruby-version: 3.0
20
18
  bundler-cache: true
21
- rubygems: "latest"
22
19
  - name: Publish to RubyGems
23
20
  run: |
24
21
  mkdir -p $HOME/.gem
@@ -27,7 +27,7 @@ jobs:
27
27
  runs-on: ubuntu-latest
28
28
  strategy:
29
29
  matrix:
30
- ruby-version: ['3.0', '3.1', '3.2', '3.3']
30
+ ruby-version: ['3.1', '3.2', '3.3', '3.4']
31
31
  steps:
32
32
  - uses: actions/checkout@v4
33
33
  - name: Set up Ruby
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Unreleased
2
2
 
3
+ ## 3.6.0 - 2025-03-07
4
+
5
+ * Added support for Ruby on Rails 8.0 ([PR#67](https://github.com/Scalingo/scalingo-ruby-api/pull/67) by [@zaratan](https://github.com/zaratan))
6
+
3
7
  ## 3.5.0 - 2023-12-28
4
8
 
5
9
  * Change: update Faraday to 2.x, released about two years ago. The public API of this gem doesn't change, therefore this is not a major release. However, if you manipulate directly faraday's objects, you may encounter breaking changes. Refer to [Faraday's website](https://lostisland.github.io/faraday/) for how to migrate.
@@ -1,3 +1,3 @@
1
1
  module Scalingo
2
- VERSION = "3.5.0"
2
+ VERSION = "3.6.0"
3
3
  end
data/scalingo.gemspec CHANGED
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
32
32
  s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
33
  s.require_paths = ["lib"]
34
34
 
35
- s.add_dependency "activesupport", [">= 5", "< 8"]
35
+ s.add_dependency "activesupport", [">= 5", "< 8.1"]
36
36
  s.add_dependency "faraday", "~> 2.0"
37
37
  s.add_dependency "multi_json", ">= 1.0.3", "~> 1.0"
38
38
 
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scalingo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leo Unbekandt
8
8
  - Kevin Soltysiak
9
- autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
@@ -20,7 +19,7 @@ dependencies:
20
19
  version: '5'
21
20
  - - "<"
22
21
  - !ruby/object:Gem::Version
23
- version: '8'
22
+ version: '8.1'
24
23
  type: :runtime
25
24
  prerelease: false
26
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +29,7 @@ dependencies:
30
29
  version: '5'
31
30
  - - "<"
32
31
  - !ruby/object:Gem::Version
33
- version: '8'
32
+ version: '8.1'
34
33
  - !ruby/object:Gem::Dependency
35
34
  name: faraday
36
35
  requirement: !ruby/object:Gem::Requirement
@@ -427,7 +426,6 @@ metadata:
427
426
  documentation_uri: https://developers.scalingo.com/
428
427
  homepage_uri: https://www.scalingo.com/
429
428
  source_code_uri: https://github.com/Scalingo/scalingo-ruby-api
430
- post_install_message:
431
429
  rdoc_options: []
432
430
  require_paths:
433
431
  - lib
@@ -442,8 +440,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
442
440
  - !ruby/object:Gem::Version
443
441
  version: '0'
444
442
  requirements: []
445
- rubygems_version: 3.5.4
446
- signing_key:
443
+ rubygems_version: 3.6.2
447
444
  specification_version: 4
448
445
  summary: Ruby client for Scalingo APIs
449
446
  test_files: []