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 +4 -4
- data/.github/workflows/gem-push.yml +1 -4
- data/CHANGELOG.md +6 -0
- data/README.md +39 -1
- data/lib/nulogy_graphql_api/version.rb +1 -1
- data/nulogy_graphql_api.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3ef0420e5eced452c468681a47db0bf23f28066a1a8db5b71f264a82a752db3
|
|
4
|
+
data.tar.gz: 2f6e5aacd8a918f3e5c23502180999e049e434171b20dff3c01187ef14dfa870
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb98d61ac93b589baf8c914c4e8b6cf9021d8a71b69b97474b44566da92b9a9b33a98df877801f9d847658900e63864185d13f69b0eb7454bf59613c83dc6081
|
|
7
|
+
data.tar.gz: 22827e08ec2ea12acc34048d5bd892b7d95bcdf2a277b93b9a625e87ed9e56a70dab2bb6ca4e5875ad124a951c33088bd8605aac505bfdcff9d7be93e010764b
|
data/CHANGELOG.md
CHANGED
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
|
|
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).
|
data/nulogy_graphql_api.gemspec
CHANGED
|
@@ -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
|
|
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.
|
|
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:
|
|
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
|
|
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
|
|
26
|
+
version: '2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: graphql-schema_comparator
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|