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

update URL #104

Merged
merged 2 commits into from Dec 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -11,7 +11,7 @@ after_success:
env:
global:
- secure: akx67tSghMTX37ire/8GzsRIMCUcDcJRqw0+H07gSQoEW3s691XuRuu9dtPNchvLMoaR+V+3AJ4h4XDNorZhG7JWINwtZNeXjGhtCgijPzDaB8o8qt9P1DcanT+FofJYc0YcpVNxb/fg4/LYc/GAseKoDSHA6I256gLjqWQ4lVQ/f/AetTCKfq4yYK/Q+GWJZvZ5HChoPtKabG7OvUcYckHWD7ebb4/S8ga5aQqvQM+mq87C0ZFEgm83QPQYVUh6jz7k4m+a+D5+UJsEcL5DI5QHsM+yWLX+mIJg2n7oNsaoqXdRU9QVoLIhFzNhs1XeUWsYsgT1OI5xJnwywc3pUOFd6b3A0ST5pEWIXArUJIrWW0pvKyGHEEQ5sh5qNcGd+hUaGyYmjR+7QbohRIhGs7F8ysJCGH51QZAnOJ4Lh+yl4UpWJq8qpVUFbyxePDhI0ItAjQ6XsSc/7+yyddzgPjoBEf/+ERDUH/6kmuVQFRglboVqi+Dj09VRCw++uXC17d7xjUClzBU0XGmk5ihc0tOBHD2D9kL/FwyoL4mVlKYZCq6rkQb/33pW3c2NwL3WA12DatO9d/UuaYh9PT/EYEhzEhKn0kZPPCPK+ZKXjdEDjyS7q7w6ZpVPnuC5z86Sdon570eifMwOx/YtYBjpOjg2DKI7/188JTPBvpKQI4o=
- FAUNA_DOMAIN=cloud.faunadb.com
- FAUNA_DOMAIN=db.fauna.com
- FAUNA_SCHEME=https
- FAUNA_PORT=443
notifications:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,7 @@
## 0.2.3-SNAPSHOT

- Change the default cloud endpoint from `cloud.faunadb.com` to `db.fauna.com`.

## 0.2.2 (November 30, 2016)

- Remove count function
Expand Down
2 changes: 1 addition & 1 deletion src/Client.js
Expand Up @@ -49,7 +49,7 @@ var Promise = require('es6-promise').Promise;
*/
function Client(options) {
var opts = util.applyDefaults(options, {
domain: 'cloud.faunadb.com',
domain: 'db.fauna.com',
scheme: 'https',
port: null,
secret: null,
Expand Down