Skip to content

Commit 04c4a16

Browse files
Merge branch 'staging-new' of https://github.com/hcengineering/platform
2 parents c686354 + 5b93556 commit 04c4a16

808 files changed

Lines changed: 21620 additions & 6206 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/main.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
node-version-file: '.nvmrc'
6666
- name: Cache node modules
67-
uses: actions/cache@v4
67+
uses: actions/cache@v5
6868
env:
6969
cache-name: cache-node-platform
7070
with:
@@ -99,7 +99,7 @@ jobs:
9999
run: node common/scripts/install-run-rush.js validate
100100

101101
- name: Cache build results
102-
uses: actions/cache@v4
102+
uses: actions/cache@v5
103103
env:
104104
cache-name: cache-build-results
105105
with:
@@ -122,7 +122,7 @@ jobs:
122122
node-version-file: '.nvmrc'
123123

124124
- name: Cache build results
125-
uses: actions/cache@v4
125+
uses: actions/cache@v5
126126
env:
127127
cache-name: cache-build-results
128128
with:
@@ -145,7 +145,7 @@ jobs:
145145
with:
146146
node-version-file: '.nvmrc'
147147
- name: Cache build results
148-
uses: actions/cache@v4
148+
uses: actions/cache@v5
149149
env:
150150
cache-name: cache-build-results
151151
with:
@@ -177,7 +177,7 @@ jobs:
177177
with:
178178
node-version-file: '.nvmrc'
179179
- name: Cache build results
180-
uses: actions/cache@v4
180+
uses: actions/cache@v5
181181
env:
182182
cache-name: cache-build-results
183183
with:
@@ -215,7 +215,7 @@ jobs:
215215
with:
216216
node-version-file: '.nvmrc'
217217
- name: Cache node modules
218-
uses: actions/cache@v4
218+
uses: actions/cache@v5
219219
env:
220220
cache-name: cache-node-platform
221221
with:
@@ -347,7 +347,7 @@ jobs:
347347
with:
348348
node-version-file: '.nvmrc'
349349
- name: Cache node modules
350-
uses: actions/cache@v4
350+
uses: actions/cache@v5
351351
env:
352352
cache-name: cache-node-platform
353353
with:
@@ -444,7 +444,7 @@ jobs:
444444
with:
445445
node-version-file: '.nvmrc'
446446
- name: Cache node modules
447-
uses: actions/cache@v4
447+
uses: actions/cache@v5
448448
env:
449449
cache-name: cache-node-platform
450450
with:
@@ -525,7 +525,7 @@ jobs:
525525
with:
526526
node-version-file: '.nvmrc'
527527
- name: Cache node modules
528-
uses: actions/cache@v4
528+
uses: actions/cache@v5
529529
env:
530530
cache-name: cache-node-platform
531531
with:
@@ -646,7 +646,7 @@ jobs:
646646
with:
647647
version: latest
648648
- name: Cache node modules
649-
uses: actions/cache@v4
649+
uses: actions/cache@v5
650650
env:
651651
cache-name: cache-node-platform
652652
with:
@@ -727,7 +727,7 @@ jobs:
727727
node-version-file: '.nvmrc'
728728

729729
- name: Cache node modules
730-
uses: actions/cache@v4
730+
uses: actions/cache@v5
731731
env:
732732
cache-name: node
733733
with:
@@ -829,7 +829,7 @@ jobs:
829829
node-version-file: '.nvmrc'
830830

831831
- name: Cache node modules
832-
uses: actions/cache@v4
832+
uses: actions/cache@v5
833833
env:
834834
cache-name: node
835835
with:

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"MODEL_JSON": "${workspaceRoot}/models/all/bundle/model.json",
9898
// "SERVER_PROVIDER":"uweb"
9999
"SERVER_PROVIDER": "ws",
100-
"MODEL_VERSION": "0.7.312",
100+
"MODEL_VERSION": "0.7.331",
101101
// "version": "0.7.0",
102102
"COMMUNICATION_API_ENABLED": "true",
103103
"ELASTIC_INDEX_NAME": "local_storage_index",

changelog.md

Lines changed: 881 additions & 100 deletions
Large diffs are not rendered by default.

cliff.toml

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,48 @@ filter_unconventional = true
4848
split_commits = false
4949
# regex for preprocessing the commit messages
5050
commit_preprocessors = [
51+
# Transform non-conventional commits to conventional format BEFORE filtering
52+
{ pattern = '^Fix ', replace = "fix: " },
53+
{ pattern = '^fix ', replace = "fix: " },
54+
{ pattern = '^QFix ', replace = "fix: " },
55+
{ pattern = '^qfix ', replace = "fix: " },
56+
{ pattern = '^QFIX: ', replace = "fix: " },
57+
{ pattern = '^Add ', replace = "feat: " },
58+
{ pattern = '^Update ', replace = "chore: " },
59+
{ pattern = '^Remove ', replace = "chore: " },
60+
{ pattern = '^Bump ', replace = "chore: " },
61+
{ pattern = '^Enable ', replace = "feat: " },
62+
{ pattern = '^Disable ', replace = "chore: " },
63+
{ pattern = '^Improve ', replace = "feat: " },
64+
{ pattern = '^Optimize ', replace = "perf: " },
65+
{ pattern = '^Reuse ', replace = "refactor: " },
66+
{ pattern = '^Allow ', replace = "feat: " },
67+
{ pattern = '^Ability to ', replace = "feat: " },
68+
{ pattern = '^Return ', replace = "fix: " },
69+
{ pattern = '^Navigate ', replace = "feat: " },
70+
{ pattern = '^Clear ', replace = "fix: " },
71+
{ pattern = '^Do not ', replace = "fix: " },
72+
# Link issue numbers
5173
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/hcengineering/platform/issues/${2}))"},
52-
{ pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"},
74+
{ pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"},
5375
]
5476
# regex for parsing and grouping commits
5577
commit_parsers = [
78+
# Skip merge commits and noise FIRST
79+
{ message = "^Merge branch", skip = true },
80+
{ message = "^Merge remote-tracking branch", skip = true },
81+
{ message = "^chore\\(release\\): prepare for", skip = true },
82+
{ message = "^chore\\(deps.*\\)", skip = true },
83+
{ message = "^chore\\(pr\\)", skip = true },
84+
{ message = "^chore\\(pull\\)", skip = true },
85+
# Categorize conventional commits
5686
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
5787
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
5888
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
5989
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
6090
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
6191
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
6292
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
63-
{ message = "^chore\\(release\\): prepare for", skip = true },
64-
{ message = "^chore\\(deps.*\\)", skip = true },
65-
{ message = "^chore\\(pr\\)", skip = true },
66-
{ message = "^chore\\(pull\\)", skip = true },
6793
{ message = "^chore|^ci", group = "<!-- 7 -->⚙️ Miscellaneous Tasks" },
6894
{ body = ".*security", group = "<!-- 8 -->🛡️ Security" },
6995
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },

0 commit comments

Comments
 (0)