graphjin 0.17.6 → 0.17.11
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.
- package/README.md +65 -26
- package/package.json +1 -1
- package/CHANGELOG.md +0 -394
- package/NOTICE +0 -13
package/README.md
CHANGED
|
@@ -1,47 +1,40 @@
|
|
|
1
|
-
# GraphJin
|
|
1
|
+
# GraphJin Instant GraphQL API
|
|
2
2
|
|
|
3
3
|
[](https://pkg.go.dev/github.com/dosco/graphjin)
|
|
4
4
|
[](https://goreportcard.com/report/github.com/dosco/graphjin)
|
|
5
5
|
[](https://github.com/dosco/graphjin/blob/master/LICENSE)
|
|
6
6
|
[](https://hub.docker.com/r/dosco/graphjin/builds)
|
|
7
7
|
[](https://discord.gg/6pSWCTZ)
|
|
8
|
+
|
|
8
9
|
<!-- [](https://deploy.cloud.run)
|
|
9
10
|
-->
|
|
10
|
-
|
|
11
|
-
GraphJin gives you an instant secure and fast GraphQL API without code. GraphQL is automagically compiled into an efficient SQL query. Use either as a library or a standalone service.
|
|
12
|
-
|
|
13
|
-
## Sponsor GraphJin
|
|
14
11
|
|
|
15
|
-
GraphJin
|
|
12
|
+
GraphJin gives you an instant secure and fast GraphQL API without code. GraphQL is automagically compiled into an efficient SQL query. Use either as a library or a standalone service. Build your backend APIs 100X faster.
|
|
16
13
|
|
|
17
|
-
<div float="left">
|
|
18
|
-
<a href="https://42papers.com">
|
|
19
|
-
<img src="https://user-images.githubusercontent.com/832235/135753560-39e34be6-5734-440a-98e7-f7e160c2efb5.png" width="75" target="_blank">
|
|
20
|
-
</a>
|
|
21
|
-
<a href="https://www.exo.com.ar/">
|
|
22
|
-
<img src="https://user-images.githubusercontent.com/832235/112428182-259def80-8d11-11eb-88b8-ccef9206b535.png" width="100" target="_blank">
|
|
23
|
-
</a>
|
|
24
|
-
</div>
|
|
25
|
-
|
|
26
14
|
## 1. Quick install
|
|
15
|
+
|
|
27
16
|
Mac (Homebrew)
|
|
17
|
+
|
|
28
18
|
```
|
|
29
19
|
brew install dosco/graphjin/graphjin
|
|
30
20
|
```
|
|
31
21
|
|
|
32
22
|
Ubuntu (Snap)
|
|
23
|
+
|
|
33
24
|
```
|
|
34
25
|
sudo snap install --classic graphjin
|
|
35
26
|
```
|
|
36
27
|
|
|
37
28
|
Debian and Redhat ([releases](https://github.com/dosco/graphjin/releases))
|
|
29
|
+
|
|
38
30
|
```
|
|
39
31
|
Download the .deb or .rpm from the releases page and install with dpkg -i and rpm -i respectively.
|
|
40
32
|
```
|
|
41
33
|
|
|
42
34
|
Go Install
|
|
35
|
+
|
|
43
36
|
```
|
|
44
|
-
go
|
|
37
|
+
go install github.com/dosco/graphjin@latest
|
|
45
38
|
```
|
|
46
39
|
|
|
47
40
|
## 2. Create a new app
|
|
@@ -54,16 +47,35 @@ docker-compose run api db setup
|
|
|
54
47
|
docker-compose up
|
|
55
48
|
```
|
|
56
49
|
|
|
57
|
-
##
|
|
50
|
+
## Secure out of the box
|
|
51
|
+
|
|
52
|
+
When you use a query in development it's auto-saved in an allow list and only queries from this allow list can be run in production. In production these allowed queries are converted into prepared statments in the database to protect against sql injection, etc. This makes GraphJin very secure and also very fast since no compiling happens in production all queries go directly to the database. GraphJin is built in Go a language designed by Google to be secure and memory safe.
|
|
53
|
+
|
|
54
|
+
## Built for production
|
|
55
|
+
|
|
56
|
+
#### Instantly deploy new versions
|
|
58
57
|
|
|
59
58
|
```bash
|
|
60
59
|
# Deploy a new config
|
|
61
|
-
graphjin deploy --host=https://your-server.com --secret="your-
|
|
60
|
+
graphjin deploy --host=https://your-server.com --secret="your-secret-key"
|
|
62
61
|
|
|
63
62
|
# Rollback the last deployment
|
|
64
|
-
graphjin deploy rollback --host=https://your-server.com --secret="your-
|
|
63
|
+
graphjin deploy rollback --host=https://your-server.com --secret="your-secret-key"
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
#### Secrets Management
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
# Secure save secrets like database passwords and JWT secret keys
|
|
70
|
+
graphjin secrets
|
|
65
71
|
```
|
|
66
72
|
|
|
73
|
+
#### Database Management
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Create, Migrate and Seed your database
|
|
77
|
+
graphjin db
|
|
78
|
+
```
|
|
67
79
|
|
|
68
80
|
## Use in your own code
|
|
69
81
|
|
|
@@ -108,7 +120,7 @@ func main() {
|
|
|
108
120
|
ctx := context.Background()
|
|
109
121
|
ctx = context.WithValue(ctx, core.UserIDKey, 1)
|
|
110
122
|
|
|
111
|
-
res, err := sg.GraphQL(ctx, query, nil)
|
|
123
|
+
res, err := sg.GraphQL(ctx, query, nil, nil)
|
|
112
124
|
if err != nil {
|
|
113
125
|
log.Fatal(err)
|
|
114
126
|
}
|
|
@@ -117,6 +129,38 @@ func main() {
|
|
|
117
129
|
}
|
|
118
130
|
```
|
|
119
131
|
|
|
132
|
+
### Use the standalone service as a library
|
|
133
|
+
|
|
134
|
+
```golang
|
|
135
|
+
import (
|
|
136
|
+
"github.com/dosco/graphjin/serv"
|
|
137
|
+
)
|
|
138
|
+
|
|
139
|
+
gj, err := serv.NewGraphJinService(conf, opt...)
|
|
140
|
+
if err != nil {
|
|
141
|
+
return err
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
if err := gj.Start(); err != nil {
|
|
145
|
+
return err
|
|
146
|
+
}
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+

|
|
150
|
+
|
|
151
|
+
## Support the Project
|
|
152
|
+
|
|
153
|
+
GraphJin is an open source project made possible by the support of awesome backers. It has collectively saved teams 1000's of hours dev. time and allowing them to focus on their product and be 100x more productive. If your team uses it please consider becoming a sponsor.
|
|
154
|
+
|
|
155
|
+
<div float="left">
|
|
156
|
+
<a href="https://42papers.com">
|
|
157
|
+
<img src="https://user-images.githubusercontent.com/832235/135753560-39e34be6-5734-440a-98e7-f7e160c2efb5.png" width="75" target="_blank">
|
|
158
|
+
</a>
|
|
159
|
+
<a href="https://www.exo.com.ar/">
|
|
160
|
+
<img src="https://user-images.githubusercontent.com/832235/112428182-259def80-8d11-11eb-88b8-ccef9206b535.png" width="100" target="_blank">
|
|
161
|
+
</a>
|
|
162
|
+
</div>
|
|
163
|
+
|
|
120
164
|
## About GraphJin
|
|
121
165
|
|
|
122
166
|
After working on several products through my career I found that we spend way too much time on building API backends. Most APIs also need constant updating, and this costs time and money.
|
|
@@ -133,7 +177,7 @@ This compiler is what sits at the heart of GraphJin, with layers of useful funct
|
|
|
133
177
|
|
|
134
178
|
Lets take for example a simple blog app. You'll probably need the following APIs user management, posts, comments, votes. Each of these areas need apis for listing, creating, updating, deleting. Off the top of my head thats like 12 APIs if not more. This is just for managing things for rendering the blog posts, home page, profile page you probably need many more view apis that fetch a whole bunch of things at the same time. This is a lot and we're still talking something simple like a basic blogging app. All these APIs have to be coded up by someone and then the code maintained, updated, made secure, fast, etc. We are talking weeks to months of work if not more. Also remember your mobile and web developers have to wait around till this is all done.
|
|
135
179
|
|
|
136
|
-
With GraphJin your web and mobile developers can start building instantly. All they have to do is just build the GraphQL queries they need and GraphJin fetches the data. Nothing to maintain no backend API code, its secure, lighting fast and has tons of useful features like subscriptions, rate limiting, etc built-in. With GraphJin your building APIs in minutes not days.
|
|
180
|
+
With GraphJin your web and mobile developers can start building instantly. All they have to do is just build the GraphQL queries they need and GraphJin fetches the data. Nothing to maintain no backend API code, its secure, lighting fast and has tons of useful features like subscriptions, rate limiting, etc built-in. With GraphJin your building APIs in minutes not days.
|
|
137
181
|
|
|
138
182
|
## Features
|
|
139
183
|
|
|
@@ -163,9 +207,6 @@ With GraphJin your web and mobile developers can start building instantly. All t
|
|
|
163
207
|
- Instant Hot-deploy and rollbacks
|
|
164
208
|
- Add Custom resolvers
|
|
165
209
|
|
|
166
|
-

|
|
167
|
-
|
|
168
|
-
|
|
169
210
|
## Documentation
|
|
170
211
|
|
|
171
212
|
[Quick Start](https://github.com/dosco/graphjin/wiki/Quick-Start)
|
|
@@ -178,8 +219,6 @@ With GraphJin your web and mobile developers can start building instantly. All t
|
|
|
178
219
|
|
|
179
220
|
[GraphQL Examples](https://pkg.go.dev/github.com/dosco/graphjin/core#pkg-examples)
|
|
180
221
|
|
|
181
|
-
|
|
182
|
-
|
|
183
222
|
## Reach out
|
|
184
223
|
|
|
185
224
|
We're happy to help you leverage GraphJin reach out if you have questions
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,394 +0,0 @@
|
|
|
1
|
-
<a name="unreleased"></a>
|
|
2
|
-
## [Unreleased]
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<a name="v0.13.22"></a>
|
|
6
|
-
## [v0.13.22] - 2020-05-01
|
|
7
|
-
|
|
8
|
-
<a name="v0.13.21"></a>
|
|
9
|
-
## [v0.13.21] - 2020-04-24
|
|
10
|
-
|
|
11
|
-
<a name="v0.13.20"></a>
|
|
12
|
-
## [v0.13.20] - 2020-04-24
|
|
13
|
-
|
|
14
|
-
<a name="v0.13.19"></a>
|
|
15
|
-
## [v0.13.19] - 2020-04-23
|
|
16
|
-
|
|
17
|
-
<a name="v0.13.18"></a>
|
|
18
|
-
## [v0.13.18] - 2020-04-23
|
|
19
|
-
|
|
20
|
-
<a name="v0.13.17"></a>
|
|
21
|
-
## [v0.13.17] - 2020-04-22
|
|
22
|
-
|
|
23
|
-
<a name="v0.13.16"></a>
|
|
24
|
-
## [v0.13.16] - 2020-04-21
|
|
25
|
-
### Features
|
|
26
|
-
- feat : improve the generated introspection schema and avoid the chirino/graphql api leaking through the core api. ([#53](https://github.com/dosco/graphjin/issues/53))
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<a name="v0.13.15"></a>
|
|
30
|
-
## [v0.13.15] - 2020-04-20
|
|
31
|
-
|
|
32
|
-
<a name="v0.13.14"></a>
|
|
33
|
-
## [v0.13.14] - 2020-04-19
|
|
34
|
-
|
|
35
|
-
<a name="v0.13.13"></a>
|
|
36
|
-
## [v0.13.13] - 2020-04-19
|
|
37
|
-
|
|
38
|
-
<a name="v0.13.12"></a>
|
|
39
|
-
## [v0.13.12] - 2020-04-19
|
|
40
|
-
|
|
41
|
-
<a name="v0.13.11"></a>
|
|
42
|
-
## [v0.13.11] - 2020-04-18
|
|
43
|
-
|
|
44
|
-
<a name="v0.13.10"></a>
|
|
45
|
-
## [v0.13.10] - 2020-04-17
|
|
46
|
-
|
|
47
|
-
<a name="v0.13.9"></a>
|
|
48
|
-
## [v0.13.9] - 2020-04-16
|
|
49
|
-
|
|
50
|
-
<a name="v0.13.8"></a>
|
|
51
|
-
## [v0.13.8] - 2020-04-16
|
|
52
|
-
|
|
53
|
-
<a name="v0.13.7"></a>
|
|
54
|
-
## [v0.13.7] - 2020-04-16
|
|
55
|
-
|
|
56
|
-
<a name="v0.13.6"></a>
|
|
57
|
-
## [v0.13.6] - 2020-04-13
|
|
58
|
-
|
|
59
|
-
<a name="v0.13.5"></a>
|
|
60
|
-
## [v0.13.5] - 2020-04-13
|
|
61
|
-
|
|
62
|
-
<a name="v0.13.4"></a>
|
|
63
|
-
## [v0.13.4] - 2020-04-12
|
|
64
|
-
|
|
65
|
-
<a name="v0.13.3"></a>
|
|
66
|
-
## [v0.13.3] - 2020-04-12
|
|
67
|
-
|
|
68
|
-
<a name="v0.13.2"></a>
|
|
69
|
-
## [v0.13.2] - 2020-04-11
|
|
70
|
-
|
|
71
|
-
<a name="v0.13.1"></a>
|
|
72
|
-
## [v0.13.1] - 2020-04-11
|
|
73
|
-
|
|
74
|
-
<a name="v0.13.0"></a>
|
|
75
|
-
## [v0.13.0] - 2020-04-10
|
|
76
|
-
|
|
77
|
-
<a name="v0.12.49"></a>
|
|
78
|
-
## [v0.12.49] - 2020-04-01
|
|
79
|
-
|
|
80
|
-
<a name="v0.12.48"></a>
|
|
81
|
-
## [v0.12.48] - 2020-03-31
|
|
82
|
-
|
|
83
|
-
<a name="v0.12.47"></a>
|
|
84
|
-
## [v0.12.47] - 2020-03-30
|
|
85
|
-
|
|
86
|
-
<a name="v0.12.46"></a>
|
|
87
|
-
## [v0.12.46] - 2020-03-21
|
|
88
|
-
|
|
89
|
-
<a name="v0.12.45"></a>
|
|
90
|
-
## [v0.12.45] - 2020-03-18
|
|
91
|
-
|
|
92
|
-
<a name="v0.12.44"></a>
|
|
93
|
-
## [v0.12.44] - 2020-03-16
|
|
94
|
-
|
|
95
|
-
<a name="v0.12.43"></a>
|
|
96
|
-
## [v0.12.43] - 2020-03-16
|
|
97
|
-
|
|
98
|
-
<a name="v0.12.42"></a>
|
|
99
|
-
## [v0.12.42] - 2020-03-14
|
|
100
|
-
|
|
101
|
-
<a name="v0.12.41"></a>
|
|
102
|
-
## [v0.12.41] - 2020-03-06
|
|
103
|
-
|
|
104
|
-
<a name="v0.12.40"></a>
|
|
105
|
-
## [v0.12.40] - 2020-03-06
|
|
106
|
-
|
|
107
|
-
<a name="v0.12.39"></a>
|
|
108
|
-
## [v0.12.39] - 2020-03-06
|
|
109
|
-
|
|
110
|
-
<a name="v0.12.38"></a>
|
|
111
|
-
## [v0.12.38] - 2020-03-05
|
|
112
|
-
|
|
113
|
-
<a name="v0.12.37"></a>
|
|
114
|
-
## [v0.12.37] - 2020-03-04
|
|
115
|
-
|
|
116
|
-
<a name="v0.12.36"></a>
|
|
117
|
-
## [v0.12.36] - 2020-03-04
|
|
118
|
-
|
|
119
|
-
<a name="v0.12.35"></a>
|
|
120
|
-
## [v0.12.35] - 2020-03-03
|
|
121
|
-
|
|
122
|
-
<a name="v0.12.34"></a>
|
|
123
|
-
## [v0.12.34] - 2020-03-03
|
|
124
|
-
|
|
125
|
-
<a name="v0.12.33"></a>
|
|
126
|
-
## [v0.12.33] - 2020-02-29
|
|
127
|
-
|
|
128
|
-
<a name="v0.12.32"></a>
|
|
129
|
-
## [v0.12.32] - 2020-02-24
|
|
130
|
-
### Bug Fixes
|
|
131
|
-
- fix "Try the demo app" in docs ([#38](https://github.com/dosco/graphjin/issues/38))
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
<a name="v0.12.31"></a>
|
|
135
|
-
## [v0.12.31] - 2020-02-23
|
|
136
|
-
|
|
137
|
-
<a name="v0.12.30"></a>
|
|
138
|
-
## [v0.12.30] - 2020-02-23
|
|
139
|
-
|
|
140
|
-
<a name="v0.12.29"></a>
|
|
141
|
-
## [v0.12.29] - 2020-02-21
|
|
142
|
-
|
|
143
|
-
<a name="v0.12.28"></a>
|
|
144
|
-
## [v0.12.28] - 2020-02-20
|
|
145
|
-
|
|
146
|
-
<a name="v0.12.27"></a>
|
|
147
|
-
## [v0.12.27] - 2020-02-19
|
|
148
|
-
|
|
149
|
-
<a name="v0.12.26"></a>
|
|
150
|
-
## [v0.12.26] - 2020-02-11
|
|
151
|
-
|
|
152
|
-
<a name="v0.12.25"></a>
|
|
153
|
-
## [v0.12.25] - 2020-02-10
|
|
154
|
-
|
|
155
|
-
<a name="v0.12.24"></a>
|
|
156
|
-
## [v0.12.24] - 2020-02-03
|
|
157
|
-
|
|
158
|
-
<a name="v0.12.23"></a>
|
|
159
|
-
## [v0.12.23] - 2020-02-02
|
|
160
|
-
|
|
161
|
-
<a name="v0.12.22"></a>
|
|
162
|
-
## [v0.12.22] - 2020-02-01
|
|
163
|
-
|
|
164
|
-
<a name="v0.12.21"></a>
|
|
165
|
-
## [v0.12.21] - 2020-01-31
|
|
166
|
-
|
|
167
|
-
<a name="v0.12.20"></a>
|
|
168
|
-
## [v0.12.20] - 2020-01-28
|
|
169
|
-
|
|
170
|
-
<a name="v0.12.19"></a>
|
|
171
|
-
## [v0.12.19] - 2020-01-26
|
|
172
|
-
|
|
173
|
-
<a name="v0.12.18"></a>
|
|
174
|
-
## [v0.12.18] - 2020-01-20
|
|
175
|
-
|
|
176
|
-
<a name="v0.12.17"></a>
|
|
177
|
-
## [v0.12.17] - 2020-01-20
|
|
178
|
-
|
|
179
|
-
<a name="v0.12.16"></a>
|
|
180
|
-
## [v0.12.16] - 2020-01-19
|
|
181
|
-
|
|
182
|
-
<a name="v0.12.15"></a>
|
|
183
|
-
## [v0.12.15] - 2020-01-17
|
|
184
|
-
|
|
185
|
-
<a name="v0.12.14"></a>
|
|
186
|
-
## [v0.12.14] - 2020-01-17
|
|
187
|
-
|
|
188
|
-
<a name="v0.12.13"></a>
|
|
189
|
-
## [v0.12.13] - 2020-01-16
|
|
190
|
-
|
|
191
|
-
<a name="v0.12.12"></a>
|
|
192
|
-
## [v0.12.12] - 2020-01-15
|
|
193
|
-
|
|
194
|
-
<a name="v0.12.11"></a>
|
|
195
|
-
## [v0.12.11] - 2020-01-14
|
|
196
|
-
|
|
197
|
-
<a name="v0.12.10"></a>
|
|
198
|
-
## [v0.12.10] - 2020-01-14
|
|
199
|
-
|
|
200
|
-
<a name="v0.12.9"></a>
|
|
201
|
-
## [v0.12.9] - 2020-01-14
|
|
202
|
-
|
|
203
|
-
<a name="v0.12.8"></a>
|
|
204
|
-
## [v0.12.8] - 2020-01-13
|
|
205
|
-
|
|
206
|
-
<a name="v0.12.7"></a>
|
|
207
|
-
## [v0.12.7] - 2020-01-11
|
|
208
|
-
### Pull Requests
|
|
209
|
-
- Merge pull request [#22](https://github.com/dosco/graphjin/issues/22) from bhaskarmurthy/fix-grammer-syntax
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
<a name="v0.12.6"></a>
|
|
213
|
-
## [v0.12.6] - 2019-12-02
|
|
214
|
-
|
|
215
|
-
<a name="v0.12.5"></a>
|
|
216
|
-
## [v0.12.5] - 2019-11-30
|
|
217
|
-
|
|
218
|
-
<a name="v0.12.4"></a>
|
|
219
|
-
## [v0.12.4] - 2019-11-28
|
|
220
|
-
|
|
221
|
-
<a name="v0.12.3"></a>
|
|
222
|
-
## [v0.12.3] - 2019-11-26
|
|
223
|
-
|
|
224
|
-
<a name="v0.12.2"></a>
|
|
225
|
-
## [v0.12.2] - 2019-11-25
|
|
226
|
-
|
|
227
|
-
<a name="v0.12.1"></a>
|
|
228
|
-
## [v0.12.1] - 2019-11-22
|
|
229
|
-
|
|
230
|
-
<a name="v0.12.0"></a>
|
|
231
|
-
## [v0.12.0] - 2019-11-22
|
|
232
|
-
|
|
233
|
-
<a name="v0.11.9"></a>
|
|
234
|
-
## [v0.11.9] - 2019-11-22
|
|
235
|
-
|
|
236
|
-
<a name="v0.11.8"></a>
|
|
237
|
-
## [v0.11.8] - 2019-11-21
|
|
238
|
-
|
|
239
|
-
<a name="v0.11.7"></a>
|
|
240
|
-
## [v0.11.7] - 2019-11-19
|
|
241
|
-
|
|
242
|
-
<a name="v0.11.6"></a>
|
|
243
|
-
## [v0.11.6] - 2019-11-15
|
|
244
|
-
|
|
245
|
-
<a name="v0.11.5"></a>
|
|
246
|
-
## [v0.11.5] - 2019-11-10
|
|
247
|
-
|
|
248
|
-
<a name="v0.11.4"></a>
|
|
249
|
-
## [v0.11.4] - 2019-11-10
|
|
250
|
-
|
|
251
|
-
<a name="v0.11.3"></a>
|
|
252
|
-
## [v0.11.3] - 2019-11-09
|
|
253
|
-
|
|
254
|
-
<a name="v0.11.2"></a>
|
|
255
|
-
## [v0.11.2] - 2019-11-07
|
|
256
|
-
|
|
257
|
-
<a name="v0.11.1"></a>
|
|
258
|
-
## [v0.11.1] - 2019-11-05
|
|
259
|
-
|
|
260
|
-
<a name="v0.11"></a>
|
|
261
|
-
## [v0.11] - 2019-11-01
|
|
262
|
-
### Pull Requests
|
|
263
|
-
- Merge pull request [#11](https://github.com/dosco/graphjin/issues/11) from dosco/rbac
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
<a name="v0.10.1"></a>
|
|
267
|
-
## [v0.10.1] - 2019-10-06
|
|
268
|
-
### Pull Requests
|
|
269
|
-
- Merge pull request [#10](https://github.com/dosco/graphjin/issues/10) from FourSigma/sm-examples-folder
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
<a name="v0.10"></a>
|
|
273
|
-
## [v0.10] - 2019-10-04
|
|
274
|
-
### Pull Requests
|
|
275
|
-
- Merge pull request [#6](https://github.com/dosco/graphjin/issues/6) from muesli/typo-fixes
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
<a name="v0.9"></a>
|
|
279
|
-
## [v0.9] - 2019-10-01
|
|
280
|
-
|
|
281
|
-
<a name="v0.8"></a>
|
|
282
|
-
## [v0.8] - 2019-09-30
|
|
283
|
-
|
|
284
|
-
<a name="v0.7"></a>
|
|
285
|
-
## [v0.7] - 2019-09-29
|
|
286
|
-
|
|
287
|
-
<a name="v0.6"></a>
|
|
288
|
-
## [v0.6] - 2019-09-29
|
|
289
|
-
|
|
290
|
-
<a name="v0.5"></a>
|
|
291
|
-
## [v0.5] - 2019-04-10
|
|
292
|
-
|
|
293
|
-
<a name="v0.4"></a>
|
|
294
|
-
## [v0.4] - 2019-04-01
|
|
295
|
-
|
|
296
|
-
<a name="v0.3"></a>
|
|
297
|
-
## [v0.3] - 2019-04-01
|
|
298
|
-
|
|
299
|
-
<a name="0.3"></a>
|
|
300
|
-
## 0.3 - 2019-03-24
|
|
301
|
-
|
|
302
|
-
[Unreleased]: https://github.com/dosco/graphjin/compare/v0.13.22...HEAD
|
|
303
|
-
[v0.13.22]: https://github.com/dosco/graphjin/compare/v0.13.21...v0.13.22
|
|
304
|
-
[v0.13.21]: https://github.com/dosco/graphjin/compare/v0.13.20...v0.13.21
|
|
305
|
-
[v0.13.20]: https://github.com/dosco/graphjin/compare/v0.13.19...v0.13.20
|
|
306
|
-
[v0.13.19]: https://github.com/dosco/graphjin/compare/v0.13.18...v0.13.19
|
|
307
|
-
[v0.13.18]: https://github.com/dosco/graphjin/compare/v0.13.17...v0.13.18
|
|
308
|
-
[v0.13.17]: https://github.com/dosco/graphjin/compare/v0.13.16...v0.13.17
|
|
309
|
-
[v0.13.16]: https://github.com/dosco/graphjin/compare/v0.13.15...v0.13.16
|
|
310
|
-
[v0.13.15]: https://github.com/dosco/graphjin/compare/v0.13.14...v0.13.15
|
|
311
|
-
[v0.13.14]: https://github.com/dosco/graphjin/compare/v0.13.13...v0.13.14
|
|
312
|
-
[v0.13.13]: https://github.com/dosco/graphjin/compare/v0.13.12...v0.13.13
|
|
313
|
-
[v0.13.12]: https://github.com/dosco/graphjin/compare/v0.13.11...v0.13.12
|
|
314
|
-
[v0.13.11]: https://github.com/dosco/graphjin/compare/v0.13.10...v0.13.11
|
|
315
|
-
[v0.13.10]: https://github.com/dosco/graphjin/compare/v0.13.9...v0.13.10
|
|
316
|
-
[v0.13.9]: https://github.com/dosco/graphjin/compare/v0.13.8...v0.13.9
|
|
317
|
-
[v0.13.8]: https://github.com/dosco/graphjin/compare/v0.13.7...v0.13.8
|
|
318
|
-
[v0.13.7]: https://github.com/dosco/graphjin/compare/v0.13.6...v0.13.7
|
|
319
|
-
[v0.13.6]: https://github.com/dosco/graphjin/compare/v0.13.5...v0.13.6
|
|
320
|
-
[v0.13.5]: https://github.com/dosco/graphjin/compare/v0.13.4...v0.13.5
|
|
321
|
-
[v0.13.4]: https://github.com/dosco/graphjin/compare/v0.13.3...v0.13.4
|
|
322
|
-
[v0.13.3]: https://github.com/dosco/graphjin/compare/v0.13.2...v0.13.3
|
|
323
|
-
[v0.13.2]: https://github.com/dosco/graphjin/compare/v0.13.1...v0.13.2
|
|
324
|
-
[v0.13.1]: https://github.com/dosco/graphjin/compare/v0.13.0...v0.13.1
|
|
325
|
-
[v0.13.0]: https://github.com/dosco/graphjin/compare/v0.12.49...v0.13.0
|
|
326
|
-
[v0.12.49]: https://github.com/dosco/graphjin/compare/v0.12.48...v0.12.49
|
|
327
|
-
[v0.12.48]: https://github.com/dosco/graphjin/compare/v0.12.47...v0.12.48
|
|
328
|
-
[v0.12.47]: https://github.com/dosco/graphjin/compare/v0.12.46...v0.12.47
|
|
329
|
-
[v0.12.46]: https://github.com/dosco/graphjin/compare/v0.12.45...v0.12.46
|
|
330
|
-
[v0.12.45]: https://github.com/dosco/graphjin/compare/v0.12.44...v0.12.45
|
|
331
|
-
[v0.12.44]: https://github.com/dosco/graphjin/compare/v0.12.43...v0.12.44
|
|
332
|
-
[v0.12.43]: https://github.com/dosco/graphjin/compare/v0.12.42...v0.12.43
|
|
333
|
-
[v0.12.42]: https://github.com/dosco/graphjin/compare/v0.12.41...v0.12.42
|
|
334
|
-
[v0.12.41]: https://github.com/dosco/graphjin/compare/v0.12.40...v0.12.41
|
|
335
|
-
[v0.12.40]: https://github.com/dosco/graphjin/compare/v0.12.39...v0.12.40
|
|
336
|
-
[v0.12.39]: https://github.com/dosco/graphjin/compare/v0.12.38...v0.12.39
|
|
337
|
-
[v0.12.38]: https://github.com/dosco/graphjin/compare/v0.12.37...v0.12.38
|
|
338
|
-
[v0.12.37]: https://github.com/dosco/graphjin/compare/v0.12.36...v0.12.37
|
|
339
|
-
[v0.12.36]: https://github.com/dosco/graphjin/compare/v0.12.35...v0.12.36
|
|
340
|
-
[v0.12.35]: https://github.com/dosco/graphjin/compare/v0.12.34...v0.12.35
|
|
341
|
-
[v0.12.34]: https://github.com/dosco/graphjin/compare/v0.12.33...v0.12.34
|
|
342
|
-
[v0.12.33]: https://github.com/dosco/graphjin/compare/v0.12.32...v0.12.33
|
|
343
|
-
[v0.12.32]: https://github.com/dosco/graphjin/compare/v0.12.31...v0.12.32
|
|
344
|
-
[v0.12.31]: https://github.com/dosco/graphjin/compare/v0.12.30...v0.12.31
|
|
345
|
-
[v0.12.30]: https://github.com/dosco/graphjin/compare/v0.12.29...v0.12.30
|
|
346
|
-
[v0.12.29]: https://github.com/dosco/graphjin/compare/v0.12.28...v0.12.29
|
|
347
|
-
[v0.12.28]: https://github.com/dosco/graphjin/compare/v0.12.27...v0.12.28
|
|
348
|
-
[v0.12.27]: https://github.com/dosco/graphjin/compare/v0.12.26...v0.12.27
|
|
349
|
-
[v0.12.26]: https://github.com/dosco/graphjin/compare/v0.12.25...v0.12.26
|
|
350
|
-
[v0.12.25]: https://github.com/dosco/graphjin/compare/v0.12.24...v0.12.25
|
|
351
|
-
[v0.12.24]: https://github.com/dosco/graphjin/compare/v0.12.23...v0.12.24
|
|
352
|
-
[v0.12.23]: https://github.com/dosco/graphjin/compare/v0.12.22...v0.12.23
|
|
353
|
-
[v0.12.22]: https://github.com/dosco/graphjin/compare/v0.12.21...v0.12.22
|
|
354
|
-
[v0.12.21]: https://github.com/dosco/graphjin/compare/v0.12.20...v0.12.21
|
|
355
|
-
[v0.12.20]: https://github.com/dosco/graphjin/compare/v0.12.19...v0.12.20
|
|
356
|
-
[v0.12.19]: https://github.com/dosco/graphjin/compare/v0.12.18...v0.12.19
|
|
357
|
-
[v0.12.18]: https://github.com/dosco/graphjin/compare/v0.12.17...v0.12.18
|
|
358
|
-
[v0.12.17]: https://github.com/dosco/graphjin/compare/v0.12.16...v0.12.17
|
|
359
|
-
[v0.12.16]: https://github.com/dosco/graphjin/compare/v0.12.15...v0.12.16
|
|
360
|
-
[v0.12.15]: https://github.com/dosco/graphjin/compare/v0.12.14...v0.12.15
|
|
361
|
-
[v0.12.14]: https://github.com/dosco/graphjin/compare/v0.12.13...v0.12.14
|
|
362
|
-
[v0.12.13]: https://github.com/dosco/graphjin/compare/v0.12.12...v0.12.13
|
|
363
|
-
[v0.12.12]: https://github.com/dosco/graphjin/compare/v0.12.11...v0.12.12
|
|
364
|
-
[v0.12.11]: https://github.com/dosco/graphjin/compare/v0.12.10...v0.12.11
|
|
365
|
-
[v0.12.10]: https://github.com/dosco/graphjin/compare/v0.12.9...v0.12.10
|
|
366
|
-
[v0.12.9]: https://github.com/dosco/graphjin/compare/v0.12.8...v0.12.9
|
|
367
|
-
[v0.12.8]: https://github.com/dosco/graphjin/compare/v0.12.7...v0.12.8
|
|
368
|
-
[v0.12.7]: https://github.com/dosco/graphjin/compare/v0.12.6...v0.12.7
|
|
369
|
-
[v0.12.6]: https://github.com/dosco/graphjin/compare/v0.12.5...v0.12.6
|
|
370
|
-
[v0.12.5]: https://github.com/dosco/graphjin/compare/v0.12.4...v0.12.5
|
|
371
|
-
[v0.12.4]: https://github.com/dosco/graphjin/compare/v0.12.3...v0.12.4
|
|
372
|
-
[v0.12.3]: https://github.com/dosco/graphjin/compare/v0.12.2...v0.12.3
|
|
373
|
-
[v0.12.2]: https://github.com/dosco/graphjin/compare/v0.12.1...v0.12.2
|
|
374
|
-
[v0.12.1]: https://github.com/dosco/graphjin/compare/v0.12.0...v0.12.1
|
|
375
|
-
[v0.12.0]: https://github.com/dosco/graphjin/compare/v0.11.9...v0.12.0
|
|
376
|
-
[v0.11.9]: https://github.com/dosco/graphjin/compare/v0.11.8...v0.11.9
|
|
377
|
-
[v0.11.8]: https://github.com/dosco/graphjin/compare/v0.11.7...v0.11.8
|
|
378
|
-
[v0.11.7]: https://github.com/dosco/graphjin/compare/v0.11.6...v0.11.7
|
|
379
|
-
[v0.11.6]: https://github.com/dosco/graphjin/compare/v0.11.5...v0.11.6
|
|
380
|
-
[v0.11.5]: https://github.com/dosco/graphjin/compare/v0.11.4...v0.11.5
|
|
381
|
-
[v0.11.4]: https://github.com/dosco/graphjin/compare/v0.11.3...v0.11.4
|
|
382
|
-
[v0.11.3]: https://github.com/dosco/graphjin/compare/v0.11.2...v0.11.3
|
|
383
|
-
[v0.11.2]: https://github.com/dosco/graphjin/compare/v0.11.1...v0.11.2
|
|
384
|
-
[v0.11.1]: https://github.com/dosco/graphjin/compare/v0.11...v0.11.1
|
|
385
|
-
[v0.11]: https://github.com/dosco/graphjin/compare/v0.10.1...v0.11
|
|
386
|
-
[v0.10.1]: https://github.com/dosco/graphjin/compare/v0.10...v0.10.1
|
|
387
|
-
[v0.10]: https://github.com/dosco/graphjin/compare/v0.9...v0.10
|
|
388
|
-
[v0.9]: https://github.com/dosco/graphjin/compare/v0.8...v0.9
|
|
389
|
-
[v0.8]: https://github.com/dosco/graphjin/compare/v0.7...v0.8
|
|
390
|
-
[v0.7]: https://github.com/dosco/graphjin/compare/v0.6...v0.7
|
|
391
|
-
[v0.6]: https://github.com/dosco/graphjin/compare/v0.5...v0.6
|
|
392
|
-
[v0.5]: https://github.com/dosco/graphjin/compare/v0.4...v0.5
|
|
393
|
-
[v0.4]: https://github.com/dosco/graphjin/compare/v0.3...v0.4
|
|
394
|
-
[v0.3]: https://github.com/dosco/graphjin/compare/0.3...v0.3
|
package/NOTICE
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
Copyright 2019 Vikram Rangnekar
|
|
2
|
-
|
|
3
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
you may not use this file except in compliance with the License.
|
|
5
|
-
You may obtain a copy of the License at
|
|
6
|
-
|
|
7
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
|
|
9
|
-
Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
See the License for the specific language governing permissions and
|
|
13
|
-
limitations under the License.
|