Skip to content

Commit 6cf67cb

Browse files
committed
Update for SAP Build Code G/A
1 parent 6d46291 commit 6cf67cb

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
[
2+
{
3+
"date": "2024-03-29",
4+
"version": "3.202403.3",
5+
"Changed": [
6+
"Update btpSubs and bas commands to support SAP Build Code. Will launch Build Code Lobby when subscribed.",
7+
"[CAP Version 7.8.0](https://cap.cloud.sap/docs/releases/mar24)",
8+
"SAPUI5 to version 122.0"
9+
]
10+
},
211
{
312
"date": "2024-03-01",
413
"version": "3.202403.1",
514
"Changed": [
615
"[CAP Version 7.7.0](https://cap.cloud.sap/docs/releases/feb24)",
716
"SAPUI5 to version 121.0"
8-
917
]
1018
},
1119
{
@@ -14,7 +22,6 @@
1422
"Changed": [
1523
"Mass Convert of Tables to CDS if you use Pure Catalog Definitions, it will output sql append content",
1624
"Table inspect to CDS if you choose no Persistence Exists, it will output sql append content"
17-
1825
]
1926
},
2027
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hana-cli",
3-
"version": "3.202403.2",
3+
"version": "3.202403.3",
44
"description": "HANA Developer Command Line Interface",
55
"main": "index.js",
66
"bin": {

utils/btp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export async function getBASSub() {
256256
const subs = await getBTPSubscriptions()
257257
let basSub = ''
258258
for (let item of subs.applications) {
259-
if (item.appName === applicationStudio) {
259+
if ((item.appName === applicationStudio || item.appName === 'build-code') && item.state === 'SUBSCRIBED') {
260260
basSub = item
261261
}
262262
}

0 commit comments

Comments
 (0)