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

Convert to GAPIC #35

Merged
merged 46 commits into from
Mar 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
e0de648
Convert to GAPIC
stephenplusplus Jan 31, 2018
069436b
WIP
stephenplusplus Feb 15, 2018
9a19fba
Passing system tests!
stephenplusplus Feb 19, 2018
ea81ce2
Fix read-rows.js tests
stephenplusplus Feb 20, 2018
4366555
Fix tests.
stephenplusplus Feb 20, 2018
da3bfc1
prettier
stephenplusplus Feb 20, 2018
606b298
Document gaxOptions in cluster
stephenplusplus Feb 21, 2018
55f00bc
Document gaxOptions for family & expose in table.createFamily
stephenplusplus Feb 21, 2018
e792eda
Expose and document gaxOptions from instance.js
stephenplusplus Feb 21, 2018
77ce236
more tests
stephenplusplus Feb 22, 2018
e5c3b87
lint
stephenplusplus Feb 22, 2018
3f731a1
Test family
stephenplusplus Feb 23, 2018
6072b9e
Row document
stephenplusplus Feb 23, 2018
b78f8ab
update save example
stephenplusplus Feb 23, 2018
21acc36
Test row.js
stephenplusplus Feb 23, 2018
8b733d0
Test instance.js
stephenplusplus Feb 23, 2018
7b4098c
Test table.js
stephenplusplus Feb 23, 2018
034d38f
fix sinon errors
stephenplusplus Feb 23, 2018
b40650b
Fix table#get() call to table#getMetadata()
stephenplusplus Feb 23, 2018
83aa27e
Fix system tests
stephenplusplus Feb 23, 2018
ac14f08
Support emulator
stephenplusplus Feb 23, 2018
e9f6817
retries
stephenplusplus Feb 26, 2018
1252b66
testing continues
stephenplusplus Feb 26, 2018
91c38d7
pretteir
stephenplusplus Feb 26, 2018
44c0d57
lint
stephenplusplus Feb 26, 2018
90097df
test
stephenplusplus Feb 27, 2018
0fda385
testing
stephenplusplus Feb 27, 2018
10e8f65
remove autocreate where operations are returned
stephenplusplus Feb 28, 2018
edde5d7
Remove duplicate code
stephenplusplus Feb 28, 2018
5f8ae98
Fixed broken mutate-rows tests on GAPIC branch
kolodny Feb 28, 2018
f27d704
Remove patches
stephenplusplus Mar 2, 2018
5e58cd1
Revert "Remove patches"
stephenplusplus Mar 2, 2018
5139d7e
Fix patch & use new test
stephenplusplus Mar 2, 2018
404b5a4
Get windows to run test
stephenplusplus Mar 2, 2018
e2d4429
Fixed broken mutate-rows tests on GAPIC branch nextickv2
kolodny Mar 2, 2018
ed965f0
Revert "Get windows to run test"
stephenplusplus Mar 2, 2018
7fe2fa0
Tests work!
stephenplusplus Mar 2, 2018
9168f5d
revert v2 changes
stephenplusplus Mar 12, 2018
6ee22f5
remove non-paginated methods
stephenplusplus Mar 12, 2018
10db888
remove old test stuff
stephenplusplus Mar 12, 2018
6bbc8bd
Use `instanceof` FamilyError check.
stephenplusplus Mar 13, 2018
e0eda51
rename options
stephenplusplus Mar 13, 2018
bbcbe25
Restore `sinon.restore()` call.
stephenplusplus Mar 13, 2018
a7ccc12
Put back pre-request error handler
stephenplusplus Mar 13, 2018
4e5ca66
prettier
stephenplusplus Mar 13, 2018
b236b42
remove unnecessary resetHistory call
stephenplusplus Mar 13, 2018
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
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"test": "repo-tools test run --cmd npm -- run cover",
"generate-scaffolding": "repo-tools generate all && repo-tools generate lib_samples_readme -l samples/ --config ../.cloud-repo-tools.json",
"lint": "repo-tools lint --cmd eslint -- src/ samples/ system-test/ test/",
"prettier": "repo-tools exec -- prettier --write src/*.js src/*/*.js samples/*.js samples/*/*.js test/*.js test/*/*.js system-test/*.js system-test/*/*.js",
"prettier": "repo-tools exec -- prettier --write patches/*.js src/*.js src/*/*.js samples/*.js samples/*/*.js test/*.js test/*/*.js system-test/*.js system-test/*/*.js",
"publish-module": "node ../../scripts/publish.js bigtable",
"presystem-test": "node patches/patch",
"system-test": "repo-tools test run --cmd mocha -- system-test/*.js --no-timeouts"
Expand All @@ -62,6 +62,7 @@
"create-error-class": "^3.0.2",
"dot-prop": "^4.2.0",
"extend": "^3.0.0",
"google-auto-auth": "^0.9.3",
"google-gax": "^0.16.0",
"is": "^3.0.1",
"lodash.flatten": "^4.2.0",
Expand All @@ -71,7 +72,9 @@
"prop-assign": "^1.0.0",
"protobufjs": "^6.8.0",
"pumpify": "^1.3.3",
"retry-request": "^3.3.1",
"safe-buffer": "^5.1.1",
"stream-events": "^1.0.2",
"string-format-obj": "^1.0.0",
"through2": "^2.0.3"
},
Expand Down
Loading