Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major refactor: TypeScript, named API arguments, access to native fetch, etc. #200

Closed
wants to merge 54 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
e6c2267
Feature/154 upgrade fetch ponyfill (#155)
jmrog Apr 10, 2018
e6a83e7
Add support, tests, and typings for additionalHandlers on query execu…
jmrog Apr 10, 2018
b8787b9
Update package-lock.json
Apr 10, 2018
9377714
Fix docs script, update package-lock
Apr 10, 2018
c85d491
Update CHANGELOG.md for v1.2.1, add tag
Apr 10, 2018
46be1a7
Add release documentation, as well as annoying prepublish alert
Apr 11, 2018
e9f3b2d
Upgrade typedocs to resolve marked security vulnerability (fix #158)
Apr 11, 2018
3fd22bf
1.2.2
Apr 11, 2018
59e6a5d
Update package-lock
Apr 11, 2018
35778bd
Make additionalHandlers optional
Apr 12, 2018
6672373
Merge branch 'master' into v2
Apr 23, 2018
bbef511
Merge branch 'master' into v2
May 24, 2018
23093f8
Add method for retrieving server status info (close #165) (#166)
jmrog May 24, 2018
c0bc711
Merge branch 'master' into v2
Aug 31, 2018
538d5c6
Fix package-lock.json for v2
Aug 31, 2018
a649003
Merge branch 'master' into v2
Nov 28, 2018
ff88873
Add ICV report functionality and fix existing types (#188)
jmrog Apr 16, 2019
cd2e07e
add json query explain support (#191)
brianru May 8, 2019
d543b43
Try to fix dependencies
May 8, 2019
da27eec
Fix tests
May 8, 2019
950c19f
Save WIP
May 24, 2019
134c637
Saving a whoooole bunch of WIP
May 30, 2019
ce3d6e5
Initial complete pass of db refactor
May 30, 2019
4eaeae3
Initial complete pass of query refactor
Jun 1, 2019
f550e20
Initial complete pass on user
Jun 3, 2019
746ba05
First pass at full lib refactor
Jun 10, 2019
8ad0c0c
noImplicitAny, type fixes, and start on tests
Jun 10, 2019
7e15840
A couple of working tests (and some type fixes)
Jun 11, 2019
e010a4f
add stored query update (PUT) method
brianru May 2, 2019
db3784f
handle stored query updates when version < 6.2.0
brianru May 16, 2019
2303574
cleanup poc of server version helper
brianru May 16, 2019
57fed43
instead of getting the version recover from the method not supported …
brianru May 22, 2019
54d27cf
cleanup
brianru May 22, 2019
add1e3b
cleanup
brianru May 23, 2019
847cdc6
code review feedback
brianru May 24, 2019
93082dd
A few more tests and types
Jun 28, 2019
b0f9470
Fix typo, add test
Jun 28, 2019
bdf5c3d
More tests, more (small) fixes
Jul 1, 2019
e8650b4
Explain fix and tests
Jul 1, 2019
86b2746
exportDB tests
Jul 1, 2019
eb710e2
More tests
Jul 1, 2019
8765b25
graph fixes and tests
Jul 1, 2019
7ce38e9
ICV updates and tests
Jul 2, 2019
e210f9f
query.execute fix and add tests
Jul 2, 2019
2e363c0
transaction fixes and tests (plus other tests)
Jul 2, 2019
4f8200a
All tests passing
Jul 2, 2019
563a711
Generate docs for new version
Aug 7, 2019
89a4598
Update constants
Aug 7, 2019
dc1bef2
Make docs finally work right
Aug 8, 2019
f219bad
Docs updates and some test changes
Aug 8, 2019
4c84d0a
add support for `reasoning` and `description` attributes to stored qu…
brianru Aug 21, 2019
9ae7e33
add two endpoints for getting all db properties default values and ge…
brianru Aug 23, 2019
76c1c69
Merge in v2 changes
Sep 24, 2019
a666430
Update branch with import namespaces functionality
Oct 10, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
command: echo $LICENSE | base64 --decode > ./stardog-license-key.bin
- run:
working_directory: *working_directory
command: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD complexible-eps-docker.jfrog.io
command: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD stardog-eps-docker.jfrog.io
- run:
working_directory: *working_directory
command: docker build -t this/here/starduck ./
Expand Down
24 changes: 0 additions & 24 deletions .eslintrc.json

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.DS_Store
.rpt2_cache/
.vscode/
bower_components/
node_modules/
.*~
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM complexible-eps-docker.jfrog.io/stardog:5.2.0
FROM stardog-eps-docker.jfrog.io/stardog:latest
ADD ./stardog-license-key.bin /var/opt/stardog/stardog-license-key.bin
ADD ./test/fixtures/ /var/opt/stardog/test/fixtures/
Loading