Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #635 from IBM-Swift/updateTo5.6.1
Browse files Browse the repository at this point in the history
Release 5.6.1
  • Loading branch information
Christian Compton authored Oct 29, 2018
2 parents 7962ee8 + 8df389b commit 9c156d0
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="5.6.1"></a>
## [5.6.1](https://github.com/IBM-Swift/generator-swiftserver/compare/5.6.0...5.6.1) (2018-10-28)


### Bug Fixes

* addressing option handling for temporary devops pipeline workflow ([ec72a92](https://github.com/IBM-Swift/generator-swiftserver/commit/ec72a92))
* addressing option handling for temporary devops pipeline workflow ([d4bb0ed](https://github.com/IBM-Swift/generator-swiftserver/commit/d4bb0ed))



<a name="5.6.0"></a>
# [5.6.0](https://github.com/IBM-Swift/generator-swiftserver/compare/5.5.0...5.6.0) (2018-10-16)

Expand Down
6 changes: 5 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,11 @@ module.exports = Generator.extend({
repoType: 'clone',
healthcheck: healthcheck,
usecase: usecase,
starterOptions: starterOptions
starterOptions: starterOptions,
deploymentOrg: this.options.deploymentOrg,
deploymentSpace: this.options.deploymentSpace,
deploymentRegion: this.options.deploymentRegion,
toolchainName: this.options.toolchainName
}
} else if (this.options.init) {
// User passed the --init flag, so no prompts, just generate basic default scaffold
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-swiftserver",
"version": "5.6.0",
"version": "5.6.1",
"description": "Generator for Kitura REST webservice servers",
"main": "app/index.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions refresh/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1406,10 +1406,10 @@ module.exports = Generator.extend({
{ force: this.force,
bluemix: this.bluemix,
repoType: this.repoType,
deploymentRegion: this.options.deploymentRegion,
deploymentOrg: this.options.deploymentOrg,
deploymentSpace: this.options.deploymentSpace,
toolchainName: this.options.toolchainName
deploymentRegion: this.spec.deploymentRegion,
deploymentOrg: this.spec.deploymentOrg,
deploymentSpace: this.spec.deploymentSpace,
toolchainName: this.spec.toolchainName
})
},

Expand Down
6 changes: 3 additions & 3 deletions test/lib/common_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ exports.crudSourceFiles = [

exports.bxdevConfigFile = 'cli-config.yml'
exports.cloudFoundryManifestFile = 'manifest.yml'
exports.deploymentRegion = '{{deploymentRegion}}'
exports.deploymentSpace = '{{deploymentSpace}}'
exports.deploymentOrg = '{{deploymentOrg}}'
exports.deploymentRegion = '{{region}}'
exports.deploymentSpace = '{{space}}'
exports.deploymentOrg = '{{organization}}'
exports.toolchainName = 'toolchainName'
exports.cloudFoundryFiles = [ exports.cloudFoundryManifestFile, '.cfignore' ]
exports.bluemixPipelineFile = '.bluemix/pipeline.yml'
Expand Down

0 comments on commit 9c156d0

Please sign in to comment.