Skip to content

Commit 7ae360a

Browse files
committed
Merge branch 'main' into lmendoza/jun-4-2025-multiple-fixes
2 parents 7cc68f9 + 4654593 commit 7ae360a

6 files changed

Lines changed: 67 additions & 1 deletion

File tree

.github/workflows/sast.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: SAST
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
schedule:
10+
- cron: '45 6 * * *'
11+
jobs:
12+
buildmavenDepTree:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
- name: Set up JDK 11
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '11'
21+
distribution: 'temurin'
22+
cache: 'maven'
23+
- name: Generate dependency tree
24+
run: |
25+
find . -name "pom.xml" -execdir mvn -q dependency:tree -DoutputFile=maven_dep_tree.txt -Dmaven.test.skip=true \;
26+
- name: Create zip with all dependency trees
27+
run: find . -type f -name 'maven_dep_tree.txt' -exec zip -r deptree.zip {} +
28+
- name: Upload zip
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: deptree
32+
path: deptree.zip
33+
sast:
34+
needs: buildmavenDepTree
35+
name: sast
36+
runs-on: ubuntu-latest
37+
permissions:
38+
contents: read
39+
env:
40+
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
41+
container:
42+
image: semgrep/semgrep
43+
if: (github.actor != 'dependabot[bot]')
44+
steps:
45+
- name: Checkout code
46+
uses: actions/checkout@v4
47+
- name: Download Maven Dependencies
48+
uses: actions/download-artifact@v4
49+
with:
50+
name: deptree
51+
- name: Extract zip and run Semgrep
52+
run: |
53+
unzip -o deptree.zip
54+
semgrep ci > /dev/null 2>&1 || exit $?

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v2.115.7 - 2025-06-03
2+
3+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.115.6...v2.115.7)
4+
5+
- [#2529](https://github.com/ORCID/orcid-angular/pull/2529): lmendoza/jun-2025-multiple-changes
6+
17
## v2.115.6 - 2025-05-29
28

39
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.115.5...v2.115.6)

src/locale/properties/layout/layout.en.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ layout.ariaLabelSearchRegistry=Search the ORCID registry...
117117
layout.notificationTooltip=You have unread notifications
118118
layout.notificationTooltipInactive=Notifications inbox
119119
layout.notifications=Open notification inbox
120-
layout.notificationsActive=You have unread notifications. Open notification inbox
120+
layout.notificationsActive=You have unread notifications. Open notification inbox

src/locale/properties/layout/layout.lr.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ footer.cookieSettings=LR
116116
footer.ariaLabelLicense=LR
117117
layout.ariaLabelConnectingResearchers=LR
118118
layout.ariaLabelSearchRegistry=LR
119+
layout.notificationTooltip=LR
120+
layout.notificationTooltipInactive=LR

src/locale/properties/layout/layout.rl.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,5 @@ footer.ariaLabelLicense=RL
117117
layour.ariaLabelConnectingResearchers=RL
118118
layout.ariaLabelSearchRegistry=RL
119119
layout.ariaLabelConnectingResearchers=RL
120+
layout.notificationTooltip=RL
121+
layout.notificationTooltipInactive=RL

src/locale/properties/layout/layout.xx.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ footer.cookieSettings=X
116116
footer.ariaLabelLicense=X
117117
layout.ariaLabelConnectingResearchers=X
118118
layout.ariaLabelSearchRegistry=X
119+
layout.notificationTooltip=X
120+
layout.notificationTooltipInactive=X

0 commit comments

Comments
 (0)