graphiti_errors 1.1.2 → 1.1.3

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: 6eac14bef8a9004d3ab1e5eeba886f693e7092b78a950a0cff8c9edf25b4a69c
4
- data.tar.gz: 84dd7746013d13fe43a03745e105e5a5f845189823b6e5c0258a2b6e88c98fb7
3
+ metadata.gz: 456e67ca8513bd4c6774fb55dcba44e86c7127f1ee8e6f0e9705944f1660e0bb
4
+ data.tar.gz: 4a2fa464bf226e18887ccf4b3bd5004172f475e3519ff4e8afda5071cf513502
5
5
  SHA512:
6
- metadata.gz: d23076704344134711bc9eb048ff7d73a1990ae89d46c7004b0b32539d35b30ac5a086d3713a1879246941d347ee3e6e01b0ead57ab599f8463439a5b39d959c
7
- data.tar.gz: 98c33a10046cfdd481ae3c6ec7191e914c66f7d228d4b86943ceaaf4acdc71b7d7b969e95304dbe9d00866bdd9b8319892017898986e852ff69c82001cd606bc
6
+ metadata.gz: 37a154df91711d3f6ad3620675540da41000871003ff06d5a6ad53eaa9072eba0d231987a63d2f2f83d6f564e54cd0740346d5d9bca60ed8c6f91dd8499baf40
7
+ data.tar.gz: 6501252c791dfe0eb11a6dba991d34b7a9f446176152d8296cfc7c7e71809600ef1c04dc2d0f6143ba4e8f0c20718f378554c6476b1e558e970d030bce233e80
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: Release
3
+
4
+ # Manual only. This gem is retired, so releases are rare and deliberate.
5
+ # gem push refuses a version that already exists, so bump lib/graphiti_errors/
6
+ # version.rb first.
7
+ on:
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ release:
12
+ name: Build and push
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+
17
+ - uses: ruby/setup-ruby@v1
18
+ with:
19
+ ruby-version: "3.1"
20
+
21
+ - name: Build and push
22
+ env:
23
+ GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
24
+ run: |
25
+ gem build graphiti_errors.gemspec
26
+ gem push graphiti_errors-*.gem
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Graphiti Errors
2
2
 
3
+ > ### This gem is retired
4
+ >
5
+ > `graphiti_errors` is part of [graphiti](https://github.com/graphiti-api/graphiti) itself as of graphiti 2.0, and is no longer developed here. Issues and pull requests live in the [graphiti repo](https://github.com/graphiti-api/graphiti/issues).
6
+ >
7
+ > To upgrade from Graphiti 1.x to 2.x, follow the [upgrade guide](https://graphiti.dev/upgrading).
8
+
3
9
  ![Build Status](https://travis-ci.org/graphiti-api/graphiti_errors.svg?branch=master)
4
10
 
5
11
  Error handling patterns for Graphiti.
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Lee Richmond"]
9
9
  spec.email = ["lrichmond1@bloomberg.net"]
10
10
 
11
- spec.summary = "Error-handling patterns for JSONAPIs"
11
+ spec.summary = "Deprecated - part of graphiti itself as of graphiti 2.0"
12
12
  spec.description = "Handles application errors and model validations"
13
13
  spec.license = "MIT"
14
14
 
@@ -1,3 +1,3 @@
1
1
  module GraphitiErrors
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphiti_errors
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Richmond
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-20 00:00:00.000000000 Z
11
+ date: 2026-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jsonapi-serializable
@@ -115,6 +115,7 @@ executables: []
115
115
  extensions: []
116
116
  extra_rdoc_files: []
117
117
  files:
118
+ - ".github/workflows/release.yml"
118
119
  - ".gitignore"
119
120
  - ".rspec"
120
121
  - ".ruby-version"
@@ -141,11 +142,11 @@ files:
141
142
  - lib/graphiti_errors/invalid_request/serializer.rb
142
143
  - lib/graphiti_errors/validation/serializer.rb
143
144
  - lib/graphiti_errors/version.rb
144
- homepage:
145
+ homepage:
145
146
  licenses:
146
147
  - MIT
147
148
  metadata: {}
148
- post_install_message:
149
+ post_install_message:
149
150
  rdoc_options: []
150
151
  require_paths:
151
152
  - lib
@@ -160,9 +161,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
161
  - !ruby/object:Gem::Version
161
162
  version: '0'
162
163
  requirements: []
163
- rubyforge_project:
164
- rubygems_version: 2.7.6
165
- signing_key:
164
+ rubygems_version: 3.3.27
165
+ signing_key:
166
166
  specification_version: 4
167
- summary: Error-handling patterns for JSONAPIs
167
+ summary: Deprecated - part of graphiti itself as of graphiti 2.0
168
168
  test_files: []