diff --git a/Jenkinsfile b/Jenkinsfile index 641ea90c1..08780e5fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,6 +7,8 @@ def gitEnv = [ 'GIT_AUTHOR_EMAIL=slnode@ca.ibm.com', ] +env.CHANGE_BRANCH = env.CHANGE_BRANCH ?: env.BRANCH_NAME + node('linux && git') { stage('checkout') { checkout scm @@ -32,7 +34,7 @@ node('linux && git') { sh 'git commit -m "Update READMEs from other repos"' } sshagent(credentials: ['loopback-io-deploy']) { - sh 'git push origin HEAD:$BRANCH_NAME' + sh 'git push origin HEAD:$CHANGE_BRANCH' } } else { echo "No updates to commit" diff --git a/pages/en/lb3/readmes/loopback-connector-cloudant.md b/pages/en/lb3/readmes/loopback-connector-cloudant.md index b26517f33..7fd5ec4cb 100644 --- a/pages/en/lb3/readmes/loopback-connector-cloudant.md +++ b/pages/en/lb3/readmes/loopback-connector-cloudant.md @@ -164,7 +164,7 @@ Property        | Type | Description ----------| -----| -------- database | String | Database name modelIndex | String | Specify the model name to document mapping, defaults to `loopback__model__name`. -modelSelector | JSON | Use the Cloudant Query selector syntax to associate models to existing data. NOTE: modelSelector and modelIndex are mutually exclusive; see [Selector syntax](https://docs.cloudant.com/cloudant_query.html#selector-syntax). +modelSelector | JSON | Use the Cloudant Query selector syntax to associate models to existing data. NOTE: modelSelector and modelIndex are mutually exclusive; see [Selector syntax](https://console.bluemix.net/docs/services/Cloudant/api/cloudant_query.html#selector-syntax). ### _rev Property diff --git a/pages/en/lb4/FAQ.md b/pages/en/lb4/FAQ.md index f5acd3804..e00b4e0fa 100644 --- a/pages/en/lb4/FAQ.md +++ b/pages/en/lb4/FAQ.md @@ -16,6 +16,8 @@ summary: LoopBack 4 is a completely new framework, sometimes referred to as Loop - Suitable for small and large teams - Minimally opinionated, enforce your team's opinions instead +See [Crafting LoopBack 4](Crafting-LoopBack-4.html) for more details. + ### What’s the timeline for LoopBack 4? See [Upcoming releases](https://github.com/strongloop/loopback-next/wiki/Upcoming-Releases).