Skip to content

Commit baedbd8

Browse files
authored
RELEASE 2025-12-05 (#2145)
## Description Short description of the pull request ## Motivation Background on use case, changes needed ## Fixes: Please provide a list of the fixes implemented in this PR * Items added ## Changes: Please provide a list of the changes implemented by this PR * changes made ## Tests included - [ ] Included for each change/fix? - [ ] Passing? (Merge will not be approved unless this is checked) ## Documentation - [ ] swagger documentation updated \[required\] - [ ] official documentation updated \[nice-to-have\] ### official documentation info If you have updated the official documentation, please provide PR # and URL of the pages where the updates are included ## Backend version - [ ] Does it require a specific version of the backend - which version of the backend is required:
2 parents 6451bf9 + eee59b7 commit baedbd8

File tree

245 files changed

+18735
-3748
lines changed

Some content is hidden

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

245 files changed

+18735
-3748
lines changed

.eslintrc.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"root": true,
3-
"ignorePatterns": ["projects/**/*"],
3+
"ignorePatterns": [
4+
"projects/**/*",
5+
"src/app/shared/sdk/models/ingestor/**"], // Ignore autogenerated files
46
"parserOptions": {
57
"ecmaVersion": 2020,
68
"sourceType": "module",
@@ -83,7 +85,9 @@
8385
"@angular-eslint/prefer-standalone": "warn",
8486
"@ngrx/on-function-explicit-return-type": "warn",
8587
"@ngrx/no-store-subscription": "warn",
86-
"@angular-eslint/no-output-native": "warn"
88+
"@angular-eslint/no-output-native": "warn",
89+
"@angular-eslint/prefer-standalone": "off"
90+
8791
}
8892
}
8993
]

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ updates:
2121
angular:
2222
patterns:
2323
- "@angular*"
24+
- "ngx-cookie-service"
2425
update-types:
2526
- "minor"
2627
- "patch"

.github/mkdocs/mkdocs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
INHERIT: mkdocs-default.yml
2+
# nav:
3+
# - index.md
4+
# - Example.md
5+
# - About: about/index.md

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
github-token: "${{ secrets.GITHUB_TOKEN }}"
2121

2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
## NOTE: This step is only required if the repository has been configured to Require approval
2626
## Checks if update-type is patch or minor, then approve if the PR status is not approved yet.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Set up Docker Buildx
1919
uses: docker/setup-buildx-action@v3

.github/workflows/publish-docs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Deploy docs
2+
3+
on: # yamllint disable-line rule:truthy
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- v*
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: SciCatProject/docs-template/.github/actions/[email protected]
18+
with:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
push: ${{ github.event_name == 'push' && 'true' || '' }}
21+
# if this file does not need to exist locally, the one in the action is used
22+
# https://github.com/SciCatProject/docs-template/blob/v0.1.0/.github/actions/mkdocs-pages/mkdocs-nested.yml
23+
docs_config: .github/mkdocs/mkdocs-nested.yml

.github/workflows/release-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
packages: write
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up Node.js
2323
uses: actions/setup-node@v6

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Check out Git repository
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Node.js
2020
uses: actions/setup-node@v6
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Check out Git repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Set up Node.js
4545
uses: actions/setup-node@v6
@@ -62,7 +62,7 @@ jobs:
6262
needs: [install-and-cache]
6363
steps:
6464
- name: Check out
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666

6767
- name: Set up Node.js
6868
uses: actions/setup-node@v6
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout code
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103

104104
- name: Set up Node.js
105105
uses: actions/setup-node@v6
@@ -131,6 +131,7 @@ jobs:
131131
config-file: cypress.config.ts
132132
browser: chrome
133133
install-command: npm install --omit peer
134+
134135
- name: docker logs
135136
if: ${{ failure() }}
136137
run: |

.vscode/launch.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": "ng serve",
5+
"name": "Debug SciCat frontend in Chrome",
66
"type": "chrome",
77
"request": "launch",
8-
"url": "http://localhost:4200/#",
9-
"webRoot": "${workspaceFolder}"
8+
"url": "http://localhost:4200",
9+
"webRoot": "${workspaceFolder}",
10+
"sourceMaps": true,
11+
"trace": true
1012
},
1113
{
1214
"name": "ng test",

CI/e2e/.env.backend.e2e

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ ES_MAX_RESULT=210000
4545
ES_FIELDS_LIMIT=400000
4646
ES_INDEX="dataset"
4747
ES_REFRESH="wait_for"
48+
49+
FRONTEND_CONFIG_FILE="./dist/config/frontend.config.json"
50+
FRONTEND_THEME_FILE="./dist/config/frontend.theme.json"
51+

0 commit comments

Comments
 (0)