Skip to content

Commit eb5eecb

Browse files
Merge branch 'main' into ssh-ui
Signed-off-by: Fabio Vincenzi <93596376+fabiovincenzi@users.noreply.github.com>
2 parents e6c0d5f + b7b67a5 commit eb5eecb

22 files changed

Lines changed: 410 additions & 455 deletions

.github/workflows/npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# Setup .npmrc file to publish to npm
1919
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2020
with:
21-
node-version: '20.x'
21+
node-version: '22.x'
2222
registry-url: 'https://registry.npmjs.org'
2323
- run: npm ci
2424
- run: npm run build

.github/workflows/sample-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Setup .npmrc file to publish to npm
2222
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2323
with:
24-
node-version: '20.x'
24+
node-version: '22.x'
2525
registry-url: 'https://registry.npmjs.org'
2626
- name: publish sample package
2727
run: npm install --include peer && npm publish --access=public

.github/workflows/unused-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: 'Setup Node.js'
1919
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2020
with:
21-
node-version: '20.x'
21+
node-version: '22.x'
2222
- name: 'Run depcheck'
2323
run: |
2424
npx depcheck --skip-missing --ignores="tsx,@babel/*,@commitlint/*,eslint,eslint-*,husky,mocha,ts-mocha,ts-node,concurrently,nyc,prettier,typescript,tsconfig-paths,vite-tsconfig-paths"

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ Drop a note, ask a question or just say hello in our [community Slack channel](h
115115

116116
If you can't access Slack, you can also [subscribe to our mailing list](mailto:git-proxy+subscribe@lists.finos.org).
117117

118-
Join our [fortnightly Zoom meeting](https://zoom.us/j/97235277537?pwd=aDJsaE8zcDJpYW1vZHJmSTJ0RXNZUT09) on Monday, 11AM EST (odd week numbers). Send an e-mail to [help@finos.org](mailto:help@finos.org) to get a calendar invitation.
118+
🤝 Join our [fortnightly Zoom meeting](https://zoom-lfx.platform.linuxfoundation.org/meeting/95849833904?password=99413314-d03a-4b1c-b682-1ede2c399595) on Monday, 4PM BST (odd week numbers).
119+
🌍 [Convert to your local time](https://www.timeanddate.com/worldclock)
120+
📅 [Click here](https://calendar.google.com/calendar/event?action=TEMPLATE&tmeid=MTRvbzM0NG01dWNvNGc4OGJjNWphM2ZtaTZfMjAyNTA2MDJUMTUwMDAwWiBzYW0uaG9sbWVzQGNvbnRyb2wtcGxhbmUuaW8&tmsrc=sam.holmes%40control-plane.io&scp=ALL) for the recurring Google Calendar meeting invite. Alternatively, send an e-mail to [help@finos.org](https://zoom-lfx.platform.linuxfoundation.org/meeting/95849833904?password=99413314-d03a-4b1c-b682-1ede2c399595#:~:text=Need-,an,-invite%3F) to get a calendar invitation.
119121

120122
Otherwise, if you have a deeper query or require more support, please [raise an issue](https://github.com/finos/git-proxy/issues).

cypress/e2e/repo.cy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('Repo', () => {
1010

1111
describe('Code button for repo row', () => {
1212
it('Opens tooltip with correct content and can copy', () => {
13-
const cloneURL = 'http://localhost:8000/finos/test-repo.git';
13+
const cloneURL = 'http://localhost:8000/finos/git-proxy.git';
1414
const tooltipQuery = 'div[role="tooltip"]';
1515

1616
cy
@@ -19,8 +19,8 @@ describe('Repo', () => {
1919
.should('not.exist');
2020

2121
cy
22-
// find the entry for finos/test-repo
23-
.get('a[href="/dashboard/repo/test-repo"]')
22+
// find the entry for finos/git-proxy
23+
.get('a[href="/dashboard/repo/git-proxy"]')
2424
// take it's parent row
2525
.closest('tr')
2626
// find the nearby span containing Code we can click to open the tooltip

experimental/li-cli/package-lock.json

Lines changed: 65 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

experimental/li-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"update-local-licenses": "wget https://spdx.org/licenses/licenses.json -O src/lib/licenses.json"
1515
},
1616
"dependencies": {
17-
"@inquirer/prompts": "^7.5.3",
17+
"@inquirer/prompts": "^7.6.0",
1818
"yaml": "^2.8.0",
1919
"yargs": "^17.7.2",
20-
"zod": "^3.25.67"
20+
"zod": "^3.25.73"
2121
},
2222
"devDependencies": {
2323
"@jest/globals": "^29.7.0",
24-
"@types/node": "^22.15.34",
24+
"@types/node": "^22.16.0",
2525
"@types/yargs": "^17.0.33",
2626
"jest": "^29.7.0",
2727
"rimraf": "^6.0.1",

experimental/license-inventory/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ services:
106106

107107
# everything dashboard
108108
grafana:
109-
image: grafana/grafana:11.5.2@sha256:8b37a2f028f164ce7b9889e1765b9d6ee23fec80f871d156fbf436d6198d32b7
109+
image: grafana/grafana:12.0.2@sha256:b5b59bfc7561634c2d7b136c4543d702ebcc94a3da477f21ff26f89ffd4214fa
110110
ports:
111111
- 3001:3000
112112
volumes:

0 commit comments

Comments
 (0)