graphiti 1.4.0 → 1.5.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/ci.yml +11 -0
- data/.github/workflows/release.yml +36 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +9 -0
- data/lib/graphiti/configuration.rb +1 -0
- data/lib/graphiti/scope.rb +1 -0
- data/lib/graphiti/version.rb +1 -1
- data/package.json +110 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ac18e95dbeb97600ec5027bf94e58724e652f5c77dd0d83f122651a04b9676f
|
|
4
|
+
data.tar.gz: 4691d5f4f4e037e6d2d5100e84789ea53b6084d884e22bdf1f55b6a3a0e7981d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36401cebf8a89402bdbafccf234a98d988df2f642ff00d4ee51030857ce98b008f91d3ca80b7f05e64a2a3ab79f872c225c1d79cf3d1c531e9ff61e74b4f7280
|
|
7
|
+
data.tar.gz: 73601e0ee6d54235a54c4db54baab90313e735ae81806520354a8f75890de6ec7fb3025952ed972f15fe493230a97a50a2e41e82b7f957739b21177355743479
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -101,3 +101,14 @@ jobs:
|
|
|
101
101
|
bundler-cache: true
|
|
102
102
|
- name: Run tests
|
|
103
103
|
run: bundle exec rspec
|
|
104
|
+
publish:
|
|
105
|
+
name: Release
|
|
106
|
+
runs-on: ubuntu-latest
|
|
107
|
+
if: github.ref == 'refs/heads/master'
|
|
108
|
+
needs: [test]
|
|
109
|
+
steps:
|
|
110
|
+
- name: Dispatch Release
|
|
111
|
+
uses: benc-uk/workflow-dispatch@v1
|
|
112
|
+
with:
|
|
113
|
+
workflow: Generate New Release
|
|
114
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Generate New Release
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
name: Release
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- name: Checkout
|
|
13
|
+
uses: actions/checkout@v3
|
|
14
|
+
with:
|
|
15
|
+
submodules: true
|
|
16
|
+
persist-credentials: false
|
|
17
|
+
- name: Set up Ruby
|
|
18
|
+
uses: ruby/setup-ruby@v1
|
|
19
|
+
with:
|
|
20
|
+
ruby-version: "3.1"
|
|
21
|
+
- name: Build
|
|
22
|
+
run: |
|
|
23
|
+
gem install bundler
|
|
24
|
+
git submodule update --init --recursive
|
|
25
|
+
bundle install --jobs 4 --retry 3
|
|
26
|
+
- name: Setup Node.js
|
|
27
|
+
uses: actions/setup-node@v2
|
|
28
|
+
with:
|
|
29
|
+
node-version: 14
|
|
30
|
+
- name: Install Dependencies
|
|
31
|
+
run: yarn install --frozen-lockfile
|
|
32
|
+
- name: Release
|
|
33
|
+
env:
|
|
34
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
35
|
+
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
|
|
36
|
+
run: node_modules/.bin/semantic-release
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
graphiti changelog
|
|
2
|
+
|
|
3
|
+
# [1.5.0](https://github.com/graphiti-api/graphiti/compare/v1.4.0...v1.5.0) (2024-03-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add before_sideload hook ([#371](https://github.com/graphiti-api/graphiti/issues/371)) ([f68b61f](https://github.com/graphiti-api/graphiti/commit/f68b61ff09ec61ecf23acc5bc37d0accba14aeed))
|
|
9
|
+
|
|
1
10
|
## 1.4.0, Sun March 17th 2024
|
|
2
11
|
Features:
|
|
3
12
|
- [461](https://github.com/graphiti-api/graphiti/pull/461), [463](https://github.com/graphiti-api/graphiti/pull/463) Add support for Rails 7.1 + Ruby 3.2 + Ruby 3.3
|
data/lib/graphiti/scope.rb
CHANGED
|
@@ -43,6 +43,7 @@ module Graphiti
|
|
|
43
43
|
parent_resource = @resource
|
|
44
44
|
graphiti_context = Graphiti.context
|
|
45
45
|
resolve_sideload = -> {
|
|
46
|
+
Graphiti.config.before_sideload&.call(graphiti_context)
|
|
46
47
|
Graphiti.context = graphiti_context
|
|
47
48
|
sideload.resolve(results, q, parent_resource)
|
|
48
49
|
@resource.adapter.close if concurrent
|
data/lib/graphiti/version.rb
CHANGED
data/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "graphiti",
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/graphiti-api/graphiti.git"
|
|
7
|
+
},
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/graphiti-api/graphiti/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://graphiti.dev",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"semantic-release": "semantic-release"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"semantic-release-rubygem": "^1.2.0",
|
|
18
|
+
"semantic-release": "^19.0.3",
|
|
19
|
+
"@semantic-release/changelog": "^6.0.1",
|
|
20
|
+
"@semantic-release/git": "^10.0.1"
|
|
21
|
+
},
|
|
22
|
+
"release": {
|
|
23
|
+
"branches": [
|
|
24
|
+
"master",
|
|
25
|
+
{
|
|
26
|
+
"name": "beta",
|
|
27
|
+
"prerelease": true
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "alpha",
|
|
31
|
+
"prerelease": true
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"plugins": [
|
|
35
|
+
[
|
|
36
|
+
"@semantic-release/commit-analyzer",
|
|
37
|
+
{
|
|
38
|
+
"releaseRules": [
|
|
39
|
+
{
|
|
40
|
+
"type": "*!",
|
|
41
|
+
"release": "major"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "feat",
|
|
45
|
+
"release": "minor"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "build",
|
|
49
|
+
"release": "patch"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"type": "ci",
|
|
53
|
+
"release": "patch"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"type": "chore",
|
|
57
|
+
"release": "patch"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "docs",
|
|
61
|
+
"release": "patch"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "refactor",
|
|
65
|
+
"release": "patch"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "style",
|
|
69
|
+
"release": "patch"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": "test",
|
|
73
|
+
"release": "patch"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"parserOpts": {
|
|
77
|
+
"noteKeywords": [
|
|
78
|
+
"BREAKING CHANGE",
|
|
79
|
+
"BREAKING CHANGES",
|
|
80
|
+
"BREAKING",
|
|
81
|
+
"BREAKING CHANGE!",
|
|
82
|
+
"BREAKING CHANGES!",
|
|
83
|
+
"BREAKING!"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"@semantic-release/release-notes-generator",
|
|
89
|
+
[
|
|
90
|
+
"@semantic-release/changelog",
|
|
91
|
+
{
|
|
92
|
+
"changelogTitle": "graphiti changelog",
|
|
93
|
+
"changelogFile": "CHANGELOG.md"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"@semantic-release/github",
|
|
97
|
+
[
|
|
98
|
+
"@semantic-release/git",
|
|
99
|
+
{
|
|
100
|
+
"assets": [
|
|
101
|
+
"CHANGELOG.md"
|
|
102
|
+
],
|
|
103
|
+
"message": "${nextRelease.version} CHANGELOG [skip ci]\n\n${nextRelease.notes}"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
],
|
|
107
|
+
"debug": true,
|
|
108
|
+
"dryRun": false
|
|
109
|
+
}
|
|
110
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphiti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lee Richmond
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jsonapi-serializable
|
|
@@ -214,6 +214,7 @@ extra_rdoc_files: []
|
|
|
214
214
|
files:
|
|
215
215
|
- ".github/probots.yml"
|
|
216
216
|
- ".github/workflows/ci.yml"
|
|
217
|
+
- ".github/workflows/release.yml"
|
|
217
218
|
- ".gitignore"
|
|
218
219
|
- ".rspec"
|
|
219
220
|
- ".standard.yml"
|
|
@@ -339,6 +340,7 @@ files:
|
|
|
339
340
|
- lib/graphiti/util/transaction_hooks_recorder.rb
|
|
340
341
|
- lib/graphiti/util/validation_response.rb
|
|
341
342
|
- lib/graphiti/version.rb
|
|
343
|
+
- package.json
|
|
342
344
|
homepage: https://github.com/graphiti-api/graphiti
|
|
343
345
|
licenses:
|
|
344
346
|
- MIT
|
|
@@ -358,7 +360,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
358
360
|
- !ruby/object:Gem::Version
|
|
359
361
|
version: '0'
|
|
360
362
|
requirements: []
|
|
361
|
-
rubygems_version: 3.
|
|
363
|
+
rubygems_version: 3.3.7
|
|
362
364
|
signing_key:
|
|
363
365
|
specification_version: 4
|
|
364
366
|
summary: Easily build jsonapi.org-compatible APIs
|