graphjin 0.17.4 → 0.17.9

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.
Files changed (4) hide show
  1. package/README.md +124 -67
  2. package/package.json +1 -1
  3. package/CHANGELOG.md +0 -394
  4. package/NOTICE +0 -13
package/README.md CHANGED
@@ -1,24 +1,16 @@
1
- <img src="graphjin-logo.svg" width="80" />
2
-
3
- # GraphJin - Build APIs in 5 minutes
1
+ # GraphJin Instant GraphQL API
4
2
 
5
3
  [![GoDoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=for-the-badge&logo=appveyor&logo=appveyor)](https://pkg.go.dev/github.com/dosco/graphjin)
6
4
  [![GoReport](https://goreportcard.com/badge/github.com/gojp/goreportcard?style=for-the-badge)](https://goreportcard.com/report/github.com/dosco/graphjin)
7
5
  [![Apache 2.0](https://img.shields.io/github/license/dosco/graphjin.svg?style=for-the-badge)](https://github.com/dosco/graphjin/blob/master/LICENSE)
8
6
  [![Docker build](https://img.shields.io/docker/cloud/build/dosco/graphjin.svg?style=for-the-badge)](https://hub.docker.com/r/dosco/graphjin/builds)
9
7
  [![Discord Chat](https://img.shields.io/discord/628796009539043348.svg?style=for-the-badge&logo=appveyor)](https://discord.gg/6pSWCTZ)
10
- [![Run on Google Cloud](./.github/deploy-cloud-run-button.svg)](https://deploy.cloud.run)
11
-
12
- GraphJin gives you a high performance GraphQL API without you having to write any code. GraphQL is automagically compiled into an efficient SQL query. Use it either as a library or a standalone service.
13
-
14
- ## Sponsors
15
-
16
- GraphJin is an Apache-licensed open source project with its ongoing development made possible entirely by the support of these awesome backers. If you'd like to join them, please consider:
17
-
18
- [![Logos-EXO-SIN-TAG_2018_ALTA-V-Color](https://user-images.githubusercontent.com/832235/112428182-259def80-8d11-11eb-88b8-ccef9206b535.png)](https://www.exo.com.ar/)
8
+ <!-- [![Run on Google Cloud](./.github/deploy-cloud-run-button.svg)](https://deploy.cloud.run)
9
+ -->
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. Build your backend APIs 100X faster.
19
12
 
20
-
21
- ## 1. Quick Install
13
+ ## 1. Quick install
22
14
  Mac (Homebrew)
23
15
  ```
24
16
  brew install dosco/graphjin/graphjin
@@ -39,77 +31,48 @@ Go Install
39
31
  go get github.com/dosco/graphjin
40
32
  ```
41
33
 
42
- ## 2. Create New API
34
+ ## 2. Create a new app
43
35
 
44
36
  ```bash
45
37
  graphjin new <app_name>
46
38
 
47
39
  cd <app_name>
48
- docker-compose run api db:setup
40
+ docker-compose run api db setup
49
41
  docker-compose up
50
42
  ```
51
43
 
52
- ## About GraphJin
53
-
54
- 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.
55
-
56
- It's always the same thing, figure out what the UI needs then build an endpoint for it. Most API code involves struggling with an ORM to query a database and mangle the data into a shape that the UI expects to see.
57
-
58
- I didn't want to write this code anymore, I wanted the computer to do it. Enter GraphQL, to me it sounded great, but it still required me to write all the same database query code.
59
-
60
- Having worked with compilers before I saw this as a compiler problem. Why not build a compiler that converts GraphQL to highly efficient SQL.
61
-
62
- This compiler is what sits at the heart of GraphJin, with layers of useful functionality around it like authentication, remote joins, rails integration, database migrations, and everything else needed for you to build production-ready apps with it.
63
-
64
- ## Better APIs Faster!
44
+ ## Secure out of the box
65
45
 
66
- 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.
67
-
68
- 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.
69
-
70
- ## Features
71
-
72
- - Works with Postgres, MySQL8 and Yugabyte DB
73
- - Complex nested queries and mutations
74
- - Realtime updates with subscriptions
75
- - Add custom business logic in Javascript
76
- - Build infinite scroll, feeds, nested comments, etc
77
- - Auto learns database tables and relationships
78
- - Role and Attribute-based access control
79
- - Cursor-based efficient pagination
80
- - Full-text search and aggregations
81
- - Automatic persisted queries
82
- - JWT tokens supported (Auth0, JWKS, Firebase, etc)
83
- - Join database queries with remote REST APIs
84
- - Also works with existing Ruby-On-Rails apps
85
- - Rails authentication supported (Redis, Memcache, Cookie)
86
- - A simple config file
87
- - High performance Go codebase
88
- - Tiny docker image and low memory requirements
89
- - Fuzz tested for security
90
- - Database migrations tool
91
- - Database seeding tool
92
- - OpenCensus Support: Zipkin, Prometheus, X-Ray, Stackdriver
93
- - API Rate Limiting
94
- - Highly scalable and fast
46
+ 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.
95
47
 
96
- ![graphjin-screenshot-final](https://user-images.githubusercontent.com/832235/108806955-1c363180-7571-11eb-8bfa-488ece2e51ae.png)
48
+ ## Built for production
97
49
 
50
+ #### Instantly deploy new versions
98
51
 
99
- ## Documentation
52
+ ```bash
53
+ # Deploy a new config
54
+ graphjin deploy --host=https://your-server.com --secret="your-secret-key"
100
55
 
101
- [Quick Start](https://github.com/dosco/graphjin/wiki/Quick-Start)
56
+ # Rollback the last deployment
57
+ graphjin deploy rollback --host=https://your-server.com --secret="your-secret-key"
58
+ ```
102
59
 
103
- [Documentation](https://github.com/dosco/graphjin/wiki)
60
+ #### Secrets Management
104
61
 
105
- [Build APIs in 5 minutes with GraphJin](https://dev.to/dosco/build-high-performance-graphql-apis-in-5-minutes-with-graphjin-261o)
62
+ ```bash
63
+ # Secure save secrets like database passwords and JWT secret keys
64
+ graphjin secrets
65
+ ```
106
66
 
107
- [GraphQL vs REST](https://dev.to/dosco/rest-vs-graphql-building-startups-in-2021-3k73)
67
+ #### Database Management
108
68
 
109
- [GraphQL Examples](https://pkg.go.dev/github.com/dosco/graphjin/core#pkg-examples)
69
+ ```bash
70
+ # Create, Migrate and Seed your database
71
+ graphjin db
72
+ ```
110
73
 
111
74
 
112
- ## Using it in your own code
75
+ ## Use in your own code
113
76
 
114
77
  You can use GraphJin as a library within your own code. The [serv](https://pkg.go.dev/github.com/dosco/graphjin/serv) package exposes the entirely GraphJin standlone service as a library while the [core](https://pkg.go.dev/github.com/dosco/graphjin/core) package exposes just the GraphJin compiler. The [Go docs](https://pkg.go.dev/github.com/dosco/graphjin/core#pkg-examples) are filled with examples on how to use GraphJin within your own apps as a sort of alternative to using ORM packages. GraphJin allows you to use GraphQL and the full power of GraphJin to access your data instead of a limiting ORM.
115
78
 
@@ -152,7 +115,7 @@ func main() {
152
115
  ctx := context.Background()
153
116
  ctx = context.WithValue(ctx, core.UserIDKey, 1)
154
117
 
155
- res, err := sg.GraphQL(ctx, query, nil)
118
+ res, err := sg.GraphQL(ctx, query, nil, nil)
156
119
  if err != nil {
157
120
  log.Fatal(err)
158
121
  }
@@ -161,6 +124,100 @@ func main() {
161
124
  }
162
125
  ```
163
126
 
127
+ ### Use the standalone service as a library
128
+
129
+ ```golang
130
+ import (
131
+ "github.com/dosco/graphjin/serv"
132
+ )
133
+
134
+ gj, err := serv.NewGraphJinService(conf, opt...)
135
+ if err != nil {
136
+ fatalInProd(err)
137
+ }
138
+
139
+ if err := gj.Start(); err != nil {
140
+ fatalInProd(err)
141
+ }
142
+ ```
143
+
144
+ ![graphjin-screenshot-final](https://user-images.githubusercontent.com/832235/108806955-1c363180-7571-11eb-8bfa-488ece2e51ae.png)
145
+
146
+
147
+ ## Support the Project
148
+
149
+ 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.
150
+
151
+ <div float="left">
152
+ <a href="https://42papers.com">
153
+ <img src="https://user-images.githubusercontent.com/832235/135753560-39e34be6-5734-440a-98e7-f7e160c2efb5.png" width="75" target="_blank">
154
+ </a>
155
+ <a href="https://www.exo.com.ar/">
156
+ <img src="https://user-images.githubusercontent.com/832235/112428182-259def80-8d11-11eb-88b8-ccef9206b535.png" width="100" target="_blank">
157
+ </a>
158
+ </div>
159
+
160
+
161
+ ## About GraphJin
162
+
163
+ 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.
164
+
165
+ It's always the same thing, figure out what the UI needs then build an endpoint for it. Most API code involves struggling with an ORM to query a database and mangle the data into a shape that the UI expects to see.
166
+
167
+ I didn't want to write this code anymore, I wanted the computer to do it. Enter GraphQL, to me it sounded great, but it still required me to write all the same database query code.
168
+
169
+ Having worked with compilers before I saw this as a compiler problem. Why not build a compiler that converts GraphQL to highly efficient SQL.
170
+
171
+ This compiler is what sits at the heart of GraphJin, with layers of useful functionality around it like authentication, remote joins, rails integration, database migrations, and everything else needed for you to build production-ready apps with it.
172
+
173
+ ## Better APIs Faster!
174
+
175
+ 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.
176
+
177
+ 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.
178
+
179
+ ## Features
180
+
181
+ - Works with Postgres, MySQL8 and Yugabyte DB
182
+ - Complex nested queries and mutations
183
+ - Realtime updates with subscriptions
184
+ - Add custom business logic in Javascript
185
+ - Build infinite scroll, feeds, nested comments, etc
186
+ - Auto learns database tables and relationships
187
+ - Role and Attribute-based access control
188
+ - Cursor-based efficient pagination
189
+ - Full-text search and aggregations
190
+ - Automatic persisted queries
191
+ - JWT tokens supported (Auth0, JWKS, Firebase, etc)
192
+ - Join database queries with remote REST APIs
193
+ - Also works with existing Ruby-On-Rails apps
194
+ - Rails authentication supported (Redis, Memcache, Cookie)
195
+ - A simple config file
196
+ - High performance Go codebase
197
+ - Tiny docker image and low memory requirements
198
+ - Fuzz tested for security
199
+ - Database migrations tool
200
+ - Database seeding tool
201
+ - OpenCensus Support: Zipkin, Prometheus, X-Ray, Stackdriver
202
+ - API Rate Limiting
203
+ - Highly scalable and fast
204
+ - Instant Hot-deploy and rollbacks
205
+ - Add Custom resolvers
206
+
207
+ ## Documentation
208
+
209
+ [Quick Start](https://github.com/dosco/graphjin/wiki/Quick-Start)
210
+
211
+ [Documentation](https://github.com/dosco/graphjin/wiki)
212
+
213
+ [Build APIs in 5 minutes with GraphJin](https://dev.to/dosco/build-high-performance-graphql-apis-in-5-minutes-with-graphjin-261o)
214
+
215
+ [GraphQL vs REST](https://dev.to/dosco/rest-vs-graphql-building-startups-in-2021-3k73)
216
+
217
+ [GraphQL Examples](https://pkg.go.dev/github.com/dosco/graphjin/core#pkg-examples)
218
+
219
+
220
+
164
221
  ## Reach out
165
222
 
166
223
  We're happy to help you leverage GraphJin reach out if you have questions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphjin",
3
- "version": "0.17.4",
3
+ "version": "0.17.9",
4
4
  "description": "GraphJin - Build APIs in 5 minutes with GraphQL. An instant GraphQL to SQL compiler.",
5
5
  "main": "index.js",
6
6
  "directories": {
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.