Skip to content

Commit 0d9473b

Browse files
committed
Merge remote-tracking branch 'origin/main' into mtxs-hana-troubleshooting
2 parents d45fa22 + 8917d9b commit 0d9473b

28 files changed

Lines changed: 373 additions & 386 deletions

.github/cli/grab-cli-texts.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@ const toOutput = (str) => [
2020
`> ${cmd}`,
2121
'',
2222
str
23-
.replace(/\n.*home.*[|:].*/g, '') // remove absolute cds home path as it's system-specific
23+
.replace(/([\S]+)\/node_modules/g, '.../node_modules') // remove system-specific paths
24+
.replace(/([\S]+)\/bin\/node/g, '.../bin/node')
25+
.replace(/([\S]+)\/your-project/g, '.../your-project') // sample project path
2426
.replace(/\<(.*?)\>/g, '&lt;$1&gt;') // <foo> -> &lt;foo&gt;
25-
.replace(/^\x1b\[1m(.*?)\x1b\[(:?0|39|49)m\n/gm, '<strong>$1</strong>') // bold at beginning of line -> strong
26-
.replace(/(\s*)\x1b\[4m(.*?)\x1b\[(:?0|39|49)m/g, '$1<i>$2</i>') // underline -> i
27-
.replace(/(\s*)\x1b\[\d+m(.*?)\x1b\[(:?0|39|49)m/g, '$1<em>$2</em>') // other colors -> em
27+
.replace(/^\x1b\[1m(.*?)\x1b\[(?:0|39|49)m\n/gm, '<strong>$1</strong>') // bold at beginning of line -> strong
28+
.replace(/(\s*)\x1b\[(?:2|4)m(.*?)\x1b\[(?:0|39|49)m/g, '$1<i>$2</i>') // underline or grey -> i
29+
.replace(/(\s*)\x1b\[[1-9]+m(.*?)\x1b\[(?:0|32|33|39|49)m/g, '$1<em>$2</em>') // other colors -> em
30+
.replace(/\x1b\[0m/g, '') // remove all remaining resets
2831
,
2932
`</pre>`
3033
].join('\n')

.github/workflows/PR-SAP.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: PR Build (SAP)
22

33
on:
44
pull_request:
5-
branches: [main]
65
merge_group:
76

87
concurrency:

.github/workflows/update-content.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
24-
node-version: '22'
24+
node-version: 24
2525

2626
- name: Extract CLI texts
2727
run: |
@@ -51,12 +51,12 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555

5656
- name: Set up Node.js
57-
uses: actions/setup-node@v4
57+
uses: actions/setup-node@v6
5858
with:
59-
node-version: '22'
59+
node-version: 24
6060

6161
- name: Update Java Properties
6262
run: |

cds/assets/cxl/expr.drawio.svg

Lines changed: 1 addition & 1 deletion
Loading

cds/assets/cxl/function.drawio.svg

Lines changed: 191 additions & 4 deletions
Loading

cds/assets/cxl/infix-filter.drawio.svg

Lines changed: 1 addition & 1 deletion
Loading

cds/assets/cxl/operators.drawio.svg

Lines changed: 1 addition & 1 deletion
Loading

cds/assets/cxl/ref.drawio.svg

Lines changed: 1 addition & 1 deletion
Loading

cds/cxl.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,6 @@ This syntax diagram describes the possible expressions:
240240
]
241241
```
242242

243-
Compared to the previous example, we now use the expression directly in the query
244-
to calculate the total value of all books in stock.
245-
246243
```sql [SQL]
247244
SELECT
248245
Books.title,
@@ -254,6 +251,8 @@ This syntax diagram describes the possible expressions:
254251
```
255252
:::
256253

254+
Compared to the previous example, we now use the expression directly in the query
255+
to calculate the total value of all books in stock.
257256

258257

259258
## Path Expressions (`ref`)

get-started/assets/bookshop/cds-compile.drawio.svg

Lines changed: 4 additions & 249 deletions
Loading

0 commit comments

Comments
 (0)