Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
d48be2d
Login with Authorization header instead of cookies
Jan 8, 2016
48b99d9
Round trip to server to validate access keys on login/registration
Jan 8, 2016
2d307e4
Remove SDK logout() command as the server no longer maintains sessions
Jan 12, 2016
25db3c4
Remove 'access token' concept from SDK, and refactoring
Jan 12, 2016
ff3317a
Remove 'login' concept from sdk
Jan 12, 2016
ebe8d1c
Fix bug with parsing access token
Jan 12, 2016
9d9ee4a
Tidy promise rejection pattern
Jan 12, 2016
2ec497c
Refactoring. Also check for whether we're already logged in before re…
Jan 12, 2016
ac90734
Remove global 'connectionInfo' object
Jan 12, 2016
70080f6
Remove publicly exposed properties from the SDK
Jan 12, 2016
c9f7383
Supply default user-agent in SDK
Jan 12, 2016
4635095
Send desired API version using 'Accept' header
Jan 12, 2016
062d0f8
Tidy up error handling mechanism
Jan 12, 2016
2507efb
Tidying
Jan 12, 2016
b4bf500
Fix unit tests
Jan 12, 2016
e1cad8e
Trim trailing whitespace
Jan 12, 2016
aa28dd6
Tidy up SDK variable names to avoid confusion
Jan 12, 2016
4e3d713
Code tidying based on feedback
Jan 14, 2016
444d458
SDK - Move account-manager.ts into the root directory
Jan 19, 2016
7b83bce
Merge pull request #100 from Microsoft/breaking-authentication-fix
Jan 20, 2016
b81ec29
Merge remote-tracking branch 'origin/master' into breaking
Jan 20, 2016
a2de1ef
Remove deploymentKey method from SDK and fetch the key off the Deploy…
Jan 20, 2016
6d15984
Merge remote-tracking branch 'origin/master' into breaking
Jan 23, 2016
c65d872
Merge branch 'breaking' into breaking-simplify-deployment-key
Jan 26, 2016
d8e6bbd
Merge remote-tracking branch 'origin/master' into breaking
Jan 26, 2016
ddda5da
Merge pull request #115 from Microsoft/breaking-simplify-deployment-key
Jan 26, 2016
600e449
Clean up SDK boilerplate and use template strings
Feb 3, 2016
4307fe5
Remove try-json dependency from SDK
Feb 3, 2016
6f1f152
Merge remote-tracking branch 'origin/master' into breaking
Feb 3, 2016
039dfcb
Code tidying based on feedback
Feb 3, 2016
e445cb5
Merge branch 'breaking' into breaking-tidy-sdk
Feb 3, 2016
d5dd6b8
Merge pull request #128 from Microsoft/breaking-tidy-sdk
Feb 3, 2016
b7a1e98
Merge remote-tracking branch 'origin/master' into breaking
Feb 13, 2016
dfb8ecc
Change SDK to use names instead of ID's and remove name resolution logic
Feb 4, 2016
915a7b2
Update REST definitions to match the server
Feb 13, 2016
f47937a
Code tidying
Feb 13, 2016
5e9634e
Code tidying based on feedback
Feb 17, 2016
a17f694
Merge pull request #133 from Microsoft/breaking-name-resolution-simpl…
Feb 17, 2016
a6b39eb
Merge remote-tracking branch 'origin/master' into breaking
Feb 18, 2016
f7135bd
Store SDK version in X-CodePush-SDK-Version header instead of User-Agent
Feb 17, 2016
f0421bd
URL encode all REST API inputs
Feb 17, 2016
91157b8
Move access-key generation onto the server
Feb 17, 2016
3768af1
Remove getPackage() from SDK and rename addPackage() to releasePackage()
Feb 18, 2016
948f376
Change SDK PUT requests to PATCH requests
Feb 18, 2016
c56c0a6
Use plain strings instead of template strings where appropriate
Feb 18, 2016
9fd3e13
Send only the version as part of the X-CodePush-SDK-Version header
Feb 18, 2016
9acfe81
Code tidying
Feb 18, 2016
95be4d9
Merge pull request #136 from Microsoft/breaking-wrap-up
Feb 18, 2016
0f9bbba
Merge remote-tracking branch 'origin/master' into breaking
Feb 19, 2016
c708846
Rely on server for generation of qualified app names
Feb 19, 2016
3387707
Fix JSON output of app list command
Feb 20, 2016
11cf394
Merge pull request #138 from Microsoft/breaking-remove-app-display-names
Feb 20, 2016
f4d58c3
Change SDK to point to the new management server by default
richardhuaaa Feb 23, 2016
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 cli/definitions/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface IAccessKeyListCommand extends ICommand {
}

export interface IAccessKeyRemoveCommand extends ICommand {
accessKeyName: string;
accessKey: string;
}

export interface IAppAddCommand extends ICommand {
Expand Down
903 changes: 249 additions & 654 deletions cli/script/command-executor.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cli/script/command-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ function createCommand(): cli.ICommand {
if (arg2) {
cmd = { type: cli.CommandType.accessKeyRemove };

(<cli.IAccessKeyRemoveCommand>cmd).accessKeyName = arg2;
(<cli.IAccessKeyRemoveCommand>cmd).accessKey = arg2;
}
break;
}
Expand Down
Loading