nulogy_graphql_api 2.1.3 → 2.2.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: f899476d44c2e336ac2684b30445c89af46e2d2aad292943d590c76c5cd04ec4
4
- data.tar.gz: 65853b83fa441b71646d87b383d9455b794edd72c43afbdd935510042cb5f209
3
+ metadata.gz: e3ef0420e5eced452c468681a47db0bf23f28066a1a8db5b71f264a82a752db3
4
+ data.tar.gz: 2f6e5aacd8a918f3e5c23502180999e049e434171b20dff3c01187ef14dfa870
5
5
  SHA512:
6
- metadata.gz: 8f3c38ab529a9171d0c091d5f724827095eb6336270046707c3d5826e567b0b7ea2873833980b7f70744f5cc5963090b87da38163a1b3128f232b39894a21866
7
- data.tar.gz: 232c275825e112651ea52efbdac0a4a0aafe1cfb309aeaa288b4da4577022bb801314f1d8667b7eae2a7bc96b850465cd2de2db19650ebea08277d6e23ee0045
6
+ metadata.gz: eb98d61ac93b589baf8c914c4e8b6cf9021d8a71b69b97474b44566da92b9a9b33a98df877801f9d847658900e63864185d13f69b0eb7454bf59613c83dc6081
7
+ data.tar.gz: 22827e08ec2ea12acc34048d5bd892b7d95bcdf2a277b93b9a625e87ed9e56a70dab2bb6ca4e5875ad124a951c33088bd8605aac505bfdcff9d7be93e010764b
@@ -24,9 +24,6 @@ jobs:
24
24
  git config user.email "<>"
25
25
 
26
26
  - name: Create release
27
- run: |
28
- gem_push=false bundle exec rake release
29
- gem build *.gemspec
30
- gem push *.gem
27
+ run: bundle exec rake release
31
28
  env:
32
29
  GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  _none_
6
6
 
7
+ ## 2.2.0 (2024-01-15)
8
+
9
+ **Changes**
10
+ * Pin graphql to major version 2. Permit minor version upgrades of graphql
11
+ without forcing the project to release a new version.
12
+
7
13
  ## 2.1.3 (2023-12-06)
8
14
 
9
15
  **Changes**
data/README.md CHANGED
@@ -289,7 +289,7 @@ The Directly Responsible Individual (DRI) for this project is Daniel Silva.
289
289
 
290
290
  When you are happy with your changes:
291
291
 
292
- 1. Add description of changes to the top of the [CHANGELOG](./CHANGELOG.md) file, under the `## master (unreleased)` section subdivided into the following categories:
292
+ 1. Add description of changes to the top of the [CHANGELOG](./CHANGELOG.md) file, under the `master (unreleased)` section subdivided into the following categories:
293
293
  - New Features
294
294
  - Bug Fixes
295
295
  - Changes
@@ -298,6 +298,44 @@ When you are happy with your changes:
298
298
  1. Create a Pull Request.
299
299
  1. Notify #nulogy-graphql-api Slack channel to get the DRI review and merge your changes.
300
300
 
301
+ ### Merging Pull Requests
302
+
303
+ Add a comment to the PR with the command `/integrate`. This will trigger the [Integrate](https://github.com/nulogy/nulogy_graphql_api/actions) GitHub action that runs checks (Rubocop, RSpec) and merges the code into the base branch.
304
+
305
+ ### Releasing a new version
306
+
307
+ 1. Take a look at the changes listed under `master (unreleased)` at the top of the [CHANGELOG](./CHANGELOG.md) in order to define the new version according to the rules of [Semantic Versioning](https://semver.org/).
308
+
309
+
310
+ 2. Change the `version.rb` file.
311
+
312
+ ```ruby
313
+ module NulogyGraphqlApi
314
+ VERSION = "2.1.3"
315
+ end
316
+ ```
317
+
318
+
319
+ 3. Add a title to the list of changes with the new version following the format: `X.Y.Z (YYYY-MM-DD)`. Keep the `master (unreleased)` title and add _none_ underneath it. This is how the top of the changelog should look like:
320
+
321
+ ```text
322
+ ## master (unreleased)
323
+
324
+ _none_
325
+
326
+ ## 2.1.3 (2023-12-06)
327
+
328
+ **Changes**
329
+ * Support appraisal 2.5.x
330
+ * Support rake 13.1.x
331
+ * Support rspec 3.12.x
332
+ ```
333
+
334
+ 4. Commit these changes. Suggested commit message: `Release new version`.
335
+
336
+
337
+ 5. Go to the [Release](https://github.com/nulogy/nulogy_graphql_api/actions/workflows/gem-push.yml) GitHub action and run a new workflow. The new version will be pushed to [rubygems](https://rubygems.org/gems/nulogy_graphql_api).
338
+
301
339
  ## License
302
340
 
303
341
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module NulogyGraphqlApi
2
- VERSION = "2.1.3"
2
+ VERSION = "2.2.0"
3
3
  end
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
30
  spec.require_paths = ["lib"]
31
31
 
32
- spec.add_dependency "graphql", "~> 2.1"
32
+ spec.add_dependency "graphql", "~> 2"
33
33
  spec.add_dependency "graphql-schema_comparator", "~> 1.2"
34
34
  spec.add_dependency "rails", ">= 6.0", "< 8.0"
35
35
  spec.add_dependency "rainbow", "~> 3.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nulogy_graphql_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Silva
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-07 00:00:00.000000000 Z
11
+ date: 2024-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.1'
19
+ version: '2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.1'
26
+ version: '2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: graphql-schema_comparator
29
29
  requirement: !ruby/object:Gem::Requirement