artemis 1.0.2 → 1.1.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: 48a7d1c38990ead32932786f4a3981d3e7a8db1914ffac704bd14fec1511e9a6
4
- data.tar.gz: 6a3150492d60d3f94baff965a514b2392c0bdfc9c34d51cca540b7156cf4b1ba
3
+ metadata.gz: f28739ac0d67a5efdcce9e904d0650665a65c7f88bf00c1db9bcda5434a94757
4
+ data.tar.gz: db90cbdf7503158c27be28bf2cd3f942901d99d7894c3ac3a981981d02936d37
5
5
  SHA512:
6
- metadata.gz: 594a2346bfc01cf7d8ca53c7359693f4e43e38dea0a5e65d36faf51851a55665839436078b7d1aaf6a20441edb949e24f0f406c0612928f00c850e552d4e829d
7
- data.tar.gz: 9a19609908348342985afa0ef74e40133b1ea647fed58279b8c11efbc27e257e1086290932c3af2c0083c40cd0d5baa8b746929533c3d8f2a58d05ce1de4c0ab
6
+ metadata.gz: dfdfe631667b33fd2253353a8aa7f772a36d74f4301d2e75c453669a4670b2f459abe224fc2b34c0df3b5fa1364d6ad1c687b1656a1bd2dd9458895cc56c8bfa
7
+ data.tar.gz: 751ed648e9e331b329b6dccb3503db458cad3cf7cdabbe0d27bf009262231b943e6c677d9ec97710b6dada3aa979c0b26a6bd7a7637689b45e0e7911c7c6c419
@@ -75,7 +75,7 @@ jobs:
75
75
  env:
76
76
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
77
77
  steps:
78
- - uses: actions/checkout@v3
78
+ - uses: actions/checkout@v4
79
79
  - name: Install curl
80
80
  run: sudo apt-get install curl libcurl4-openssl-dev
81
81
  - name: Set up Ruby
@@ -92,7 +92,7 @@ jobs:
92
92
  env:
93
93
  BUNDLE_GEMFILE: gemfiles/rails_edge.gemfile
94
94
  steps:
95
- - uses: actions/checkout@v3
95
+ - uses: actions/checkout@v4
96
96
  - name: Install curl
97
97
  run: sudo apt-get install curl libcurl4-openssl-dev
98
98
  - name: Set up Ruby
@@ -116,7 +116,7 @@ jobs:
116
116
  env:
117
117
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
118
118
  steps:
119
- - uses: actions/checkout@v3
119
+ - uses: actions/checkout@v4
120
120
  - name: Install curl
121
121
  run: sudo apt-get install curl libcurl4-openssl-dev
122
122
  - name: Set up Ruby
@@ -141,7 +141,7 @@ jobs:
141
141
  # env:
142
142
  # BUNDLE_GEMFILE: ${{ matrix.gemfile }}
143
143
  # steps:
144
- # - uses: actions/checkout@v3
144
+ # - uses: actions/checkout@v4
145
145
  # - name: Set up Ruby
146
146
  # uses: ruby/setup-ruby@v1
147
147
  # with:
data/Appraisals CHANGED
@@ -17,6 +17,13 @@ appraise "graphql_2_0" do
17
17
  gem "graphql", "< 2.1"
18
18
  end
19
19
 
20
+ appraise "rails_72" do
21
+ gem "rails", '~> 7.2.0'
22
+ gem "railties", '~> 7.2.0'
23
+ gem "activesupport", '~> 7.2.0'
24
+ gem "rackup"
25
+ end
26
+
20
27
  appraise "rails_71" do
21
28
  gem "rails", '~> 7.1.0'
22
29
  gem "railties", '~> 7.1.0'
data/CHANGELOG.md CHANGED
@@ -1,24 +1,38 @@
1
- ## v1.0.2
1
+ ## v1.1.0
2
+
3
+ _<sup>Unreleased</sup>_
4
+
5
+ #### ⭐️ New Features
6
+
7
+ - Add support for Ruby 3.3. (e05756768c1535babccfca71f32d5218dd4da626)
8
+
9
+ ## [v1.0.2](https://github.com/yuki24/artemis/tree/v1.0.2)
10
+
11
+ _<sup>released at 2024-05-02 02:41:10 UTC</sup>_
2
12
 
3
13
  #### 🐞 Bug Fixes
4
14
 
5
- - Fixes a bug where abstract client classes are not loaded correctly (#93, `494d30b`)
15
+ - Fixes a bug where abstract client classes are not loaded correctly ([#93](https://github.com/yuki24/artemis/issues/93), `494d30b`)
6
16
 
7
- ## v1.0.1
17
+ ## [v1.0.1](https://github.com/yuki24/artemis/tree/v1.0.1)
18
+
19
+ _<sup>released at 2024-05-02 02:40:54 UTC</sup>_
8
20
 
9
21
  > Yanked due to inconsistent commit history.
10
22
 
11
- ## v1.0.0
23
+ ## [v1.0.0](https://github.com/yuki24/artemis/tree/v1.0.0)
24
+
25
+ _<sup>released at 2024-02-05 06:16:35 UTC</sup>_
12
26
 
13
27
  #### 🚨 Breaking Changes
14
28
 
15
29
  - Drop support for Ruby 2.6. For those of you looking to use Artemis on Ruby 2.6, please use the `artemis` version
16
- `0.9.0` and the `graphql-client` version `0.17.0`.
30
+ `0.9.0` and the `graphql-client` version `0.17.0`. ([#90](https://github.com/yuki24/artemis/pull/90))
17
31
 
18
32
  #### ⭐️ New Features
19
33
 
20
- - Add support for Ruby 3.3.
21
- - Add support for the latest versinos of the `graphql` gem.
34
+ - Add support for Ruby 3.3. ([#91](https://github.com/yuki24/artemis/pull/91))
35
+ - Add support for the latest versions of the `graphql` gem. ([#92](https://github.com/yuki24/artemis/pull/92))
22
36
 
23
37
  #### 🐞 Bug Fixes
24
38
 
data/Gemfile CHANGED
@@ -9,3 +9,4 @@ gem 'pry'
9
9
  gem 'pry-byebug', platforms: :mri
10
10
  gem 'curb', '>= 0.9.6' if RUBY_ENGINE == 'ruby'
11
11
  gem 'webrick' if RUBY_VERSION >= '3.0.0'
12
+ gem 'minitest', '< 5.25.0'
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 7.1.0"
10
11
  gem "railties", "~> 7.1.0"
11
12
  gem "activesupport", "~> 7.1.0"
@@ -6,9 +6,9 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "5.10.3"
9
10
  gem "rails", "~> 5.0.0"
10
11
  gem "railties", "~> 5.0.0"
11
12
  gem "activesupport", "~> 5.0.0"
12
- gem "minitest", "5.10.3"
13
13
 
14
14
  gemspec path: "../"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 5.1.0"
10
11
  gem "railties", "~> 5.1.0"
11
12
  gem "activesupport", "~> 5.1.0"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 5.2.0"
10
11
  gem "railties", "~> 5.2.0"
11
12
  gem "activesupport", "~> 5.2.0"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 6.0.0"
10
11
  gem "railties", "~> 6.0.0"
11
12
  gem "activesupport", "~> 6.0.0"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 6.1.0"
10
11
  gem "railties", "~> 6.1.0"
11
12
  gem "activesupport", "~> 6.1.0"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 7.0.0"
10
11
  gem "railties", "~> 7.0.0"
11
12
  gem "activesupport", "~> 7.0.0"
@@ -6,6 +6,7 @@ gem "pry"
6
6
  gem "pry-byebug", platforms: :mri
7
7
  gem "curb", ">= 0.9.6"
8
8
  gem "webrick"
9
+ gem "minitest", "< 5.25.0"
9
10
  gem "rails", "~> 7.1.0"
10
11
  gem "railties", "~> 7.1.0"
11
12
  gem "activesupport", "~> 7.1.0"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "pry"
6
+ gem "pry-byebug", platforms: :mri
7
+ gem "curb", ">= 0.9.6"
8
+ gem "webrick"
9
+ gem "minitest", "< 5.25.0"
10
+ gem "rails", "~> 7.2.0"
11
+ gem "railties", "~> 7.2.0"
12
+ gem "activesupport", "~> 7.2.0"
13
+ gem "rackup"
14
+
15
+ gemspec path: "../"
@@ -12,6 +12,7 @@ gem "pry"
12
12
  gem "pry-byebug", platforms: :mri
13
13
  gem "curb", ">= 0.9.6"
14
14
  gem "webrick"
15
+ gem "minitest", "< 5.25.0"
15
16
  gem "rackup"
16
17
 
17
18
  gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module Artemis
2
- VERSION = "1.0.2"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artemis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Allured
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-05-02 00:00:00.000000000 Z
12
+ date: 2024-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -156,6 +156,7 @@ files:
156
156
  - gemfiles/rails_61.gemfile
157
157
  - gemfiles/rails_70.gemfile
158
158
  - gemfiles/rails_71.gemfile
159
+ - gemfiles/rails_72.gemfile
159
160
  - gemfiles/rails_edge.gemfile
160
161
  - lib/artemis.rb
161
162
  - lib/artemis/adapters.rb
@@ -204,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
205
  - !ruby/object:Gem::Version
205
206
  version: '0'
206
207
  requirements: []
207
- rubygems_version: 3.5.9
208
+ rubygems_version: 3.5.11
208
209
  signing_key:
209
210
  specification_version: 4
210
211
  summary: GraphQL on Rails