Skip to content

Commit

Permalink
use custom session implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
autom8ter committed Dec 15, 2020
1 parent df4424c commit 13e7680
Show file tree
Hide file tree
Showing 23 changed files with 553 additions and 812 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.7.0
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := "0.6.0"
version := "0.7.0"

.DEFAULT_GOAL := help

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

git clone git@github.com:graphikDB/graphik.git

` docker pull graphikdb/graphik:v0.6.0`
` docker pull graphikdb/graphik:v0.7.0`

Graphik is an identity-aware, permissioned, persistant document/graph database & pubsub server written in Go

Expand Down Expand Up @@ -549,7 +549,7 @@ add this docker-compose.yml to ${pwd}:
version: '3.7'
services:
graphik:
image: graphikdb/graphik:v0.6.0
image: graphikdb/graphik:v0.7.0
env_file:
- .env
ports:
Expand Down Expand Up @@ -583,13 +583,13 @@ to shutdown:

### Linux

curl -L https://github.com/graphikDB/graphik/releases/download/v0.6.0/graphik_linux_amd64 \
curl -L https://github.com/graphikDB/graphik/releases/download/v0.7.0/graphik_linux_amd64 \
--output /usr/local/bin/graphik && \
chmod +x /usr/local/bin/graphik

### Mac/Darwin

curl -L https://github.com/graphikDB/graphik/releases/download/v0.6.0/graphik_darwin_amd64 \
curl -L https://github.com/graphikDB/graphik/releases/download/v0.7.0/graphik_darwin_amd64 \
--output /usr/local/bin/graphik && \
chmod +x /usr/local/bin/graphik

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
graphik:
image: graphikdb/graphik:v0.6.0
image: graphikdb/graphik:v0.7.0
env_file:
- .env
ports:
Expand Down
178 changes: 75 additions & 103 deletions gen/grpc/csharp/Graphik.cs

Large diffs are not rendered by default.

445 changes: 217 additions & 228 deletions gen/grpc/go/graphik.pb.go

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions gen/grpc/go/graphik.validator.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

306 changes: 84 additions & 222 deletions gen/grpc/java/api/Graphik.java

Large diffs are not rendered by default.

27 changes: 0 additions & 27 deletions gen/grpc/js/graphik_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -7046,7 +7046,6 @@ proto.api.Flags.toObject = function(includeInstance, msg) {
playgroundClientId: jspb.Message.getFieldWithDefault(msg, 11, ""),
playgroundClientSecret: jspb.Message.getFieldWithDefault(msg, 12, ""),
playgroundRedirect: jspb.Message.getFieldWithDefault(msg, 13, ""),
playgroundSessionStore: jspb.Message.getFieldWithDefault(msg, 14, ""),
requireRequestAuthorizers: jspb.Message.getFieldWithDefault(msg, 15, false),
requireResponseAuthorizers: jspb.Message.getFieldWithDefault(msg, 16, false)
};
Expand Down Expand Up @@ -7133,10 +7132,6 @@ proto.api.Flags.deserializeBinaryFromReader = function(msg, reader) {
var value = /** @type {string} */ (reader.readString());
msg.setPlaygroundRedirect(value);
break;
case 14:
var value = /** @type {string} */ (reader.readString());
msg.setPlaygroundSessionStore(value);
break;
case 15:
var value = /** @type {boolean} */ (reader.readBool());
msg.setRequireRequestAuthorizers(value);
Expand Down Expand Up @@ -7258,13 +7253,6 @@ proto.api.Flags.serializeBinaryToWriter = function(message, writer) {
f
);
}
f = message.getPlaygroundSessionStore();
if (f.length > 0) {
writer.writeString(
14,
f
);
}
f = message.getRequireRequestAuthorizers();
if (f) {
writer.writeBool(
Expand Down Expand Up @@ -7520,21 +7508,6 @@ proto.api.Flags.prototype.setPlaygroundRedirect = function(value) {
};


/**
* optional string playground_session_store = 14;
* @return {string}
*/
proto.api.Flags.prototype.getPlaygroundSessionStore = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
};


/** @param {string} value */
proto.api.Flags.prototype.setPlaygroundSessionStore = function(value) {
jspb.Message.setProto3StringField(this, 14, value);
};


/**
* optional bool require_request_authorizers = 15;
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
Expand Down
27 changes: 0 additions & 27 deletions gen/grpc/php/Api/Flags.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 13e7680

Please sign in to comment.