-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
99 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
### v0.10.0 (2015-10-27) | ||
|
||
Hello, fellow developers! | ||
|
||
I'm glad to announce that **THE COOKIE IS DEAD!!11!!** | ||
|
||
Ok... maybe not that much. Let me explain: | ||
|
||
The cookies for the `sandbox` and `workspace` pretty much still exists, **BUT**, we've created a good and ol' barrel of abstraction on top of it so you don't have to worry anymore. | ||
|
||
Now we have a convention for setting those cookies. We will create a workspace with the the name `sb_<your-vtex-developer-email>` and on that workspace you'll have a sandbox with the name `<your-vtex-developer-email>`. | ||
|
||
You will access those by simply putting a querystring on the link you use for development, for example: `storename.beta.myvtex.com/[email protected]`. | ||
|
||
All we ask in return is that when you log in you inform us the account you wish to be logged (yeah, only one account at a time). | ||
|
||
I know you're excited, yeah, gimme a hug homie <3 | ||
|
||
- [`#62`](https://github.com/vtex/toolbelt/issues/62) | ||
- [`#48`](https://github.com/vtex/toolbelt/issues/48) (closed due to deprecation) | ||
|
||
--- | ||
|
||
### v0.9.4 (2015-10-22) | ||
|
||
Update changes log to include warnings from server response. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
pkg = require '../package.json' | ||
auth = require './lib/auth' | ||
|
||
auth.login().then((data) -> | ||
auth.login() | ||
.then (data) -> | ||
console.log "\n", "Logged in as #{data.email}".green | ||
).catch (error) -> | ||
.catch (error) -> | ||
console.log error.message | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters