Skip to content
This repository was archived by the owner on Apr 13, 2020. It is now read-only.

Commit e9216d3

Browse files
andrebriggsbnookala
authored andcommitted
Releasing 0.5.3
1 parent 6e7a43e commit e9216d3

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# RELEASE NOTES
22

3+
## [0.5.3] - 2020-02-19
4+
5+
### Changed
6+
7+
- Various bug fixes and refactoring
8+
39
## [0.5.2] - 2020-02-14
410

511
### Changed

docs/commands/data.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"defaultValue": false
1515
}
1616
],
17-
"markdown": "This command creates a configuration file, `config.yaml` in a folder `.spk`\nunder your home directory. There are two options for creating this file\n\n1. an interactive mode where you have to answer a few questions; and\n2. you provide a `yaml` file and this `yaml` will be copied to the target\n location.\n\n## Interactive mode\nThe command line tool attempts to read `config.yaml` in a folder `.spk`\nunder your home directory. Configuration values shall be read from it if \nit exists. And these values shall be default values for the questions.\nOtherwise, there shall be no default values. These are the questions\n\n1. Organization Name of Azure dev-op account\n2. Project Name of Azure dev-op account\n3. Personal Access Token (guides)\n\nThis tool shall verify these values by making an API call to\nAzure dev-op. They shall be written to `config.yaml` regardless\nthe verification is successful or not. \n\n> Note: In the event that you \ndo not have internet connection, this verification shall not be possible\n\n## Example\n\n```\nspk init --interactive\n```\n\nor\n\n```\nspk init --file myConfig.yaml\n```\n"
17+
"markdown": "This command creates a configuration file, `config.yaml` in a folder `.spk`\nunder your home directory. There are two options for creating this file\n\n1. an interactive mode where you have to answer a few questions; and\n2. you provide a `yaml` file and this `yaml` will be copied to the target\n location.\n\n## Interactive mode\n\nThe command line tool attempts to read `config.yaml` in a folder `.spk` under\nyour home directory. Configuration values shall be read from it if it exists.\nAnd these values shall be default values for the questions. Otherwise, there\nshall be no default values. These are the questions\n\n1. Organization Name of Azure dev-op account\n2. Project Name of Azure dev-op account\n3. Personal Access Token (guides)\n\nThis tool shall verify these values by making an API call to Azure dev-op. They\nshall be written to `config.yaml` regardless the verification is successful or\nnot.\n\n> Note: In the event that you do not have internet connection, this verification\n> shall not be possible\n\n## Example\n\n```\nspk init --interactive\n```\n\nor\n\n```\nspk init --file myConfig.yaml\n```\n"
1818
},
1919
"deployment create": {
2020
"command": "create",
@@ -287,6 +287,12 @@
287287
"arg": "-b, --build-script-url <build-script-url>",
288288
"description": "Build Script URL. By default it is 'https://raw.githubusercontent.com/Microsoft/bedrock/master/gitops/azure-devops/build.sh'.",
289289
"defaultValue": "https://raw.githubusercontent.com/Microsoft/bedrock/master/gitops/azure-devops/build.sh"
290+
},
291+
{
292+
"arg": "--yaml-file-branch <yaml-file-branch>",
293+
"description": "The git branch where the pipeline definition yaml file is located.",
294+
"required": false,
295+
"defaultValue": "master"
290296
}
291297
]
292298
},
@@ -443,6 +449,12 @@
443449
"arg": "-b, --build-script-url <build-script-url>",
444450
"description": "Build Script URL. By default it is https://raw.githubusercontent.com/Microsoft/bedrock/master/gitops/azure-devops/build.sh.",
445451
"required": true
452+
},
453+
{
454+
"arg": "--yaml-file-branch <yaml-file-branch>",
455+
"description": "The git branch where the pipeline definition yaml file is located.",
456+
"required": false,
457+
"defaultValue": "master"
446458
}
447459
]
448460
},
@@ -606,6 +618,12 @@
606618
{
607619
"arg": "-l, --packages-dir <packages-dir>",
608620
"description": "The mono-repository directory containing this service definition. ie. '--packages-dir packages' if my-service is located under ./packages/my-service. Omitting this option implies this is a not a mono-repository."
621+
},
622+
{
623+
"arg": "--yaml-file-branch <yaml-file-branch>",
624+
"description": "The git branch where the pipeline definition yaml file is located.",
625+
"required": false,
626+
"defaultValue": "master"
609627
}
610628
]
611629
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spk",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"description": "The missing Bedrock CLI",
55
"author": "Evan Louie <[email protected]> (https://evanlouie.com)",
66
"contributors": [],

0 commit comments

Comments
 (0)