Skip to content

Commit 3cb649f

Browse files
authored
update dependencies and sync (eclipse-velocitas#269)
* update dependencies and sync * update sdk and transitive dependencies * use correct package version * pre-commit update * fix licenses
1 parent 5fe2ff4 commit 3cb649f

18 files changed

+95
-90
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
2-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
2+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/configure-codespaces.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/configure-proxies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/container-set.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/onCreateCommand.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/postStartCommand.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2024-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at
@@ -14,7 +14,9 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616

17-
.devcontainer/scripts/upgrade-cli.sh
17+
if [[ -z "${VELOCITAS_OFFLINE}" ]]; then
18+
.devcontainer/scripts/upgrade-cli.sh
19+
fi
1820

1921
# Call user initialization hook if present
2022
POST_START_USER_HOOK_PATH=.devcontainer/scripts/onPostStartUserHook.sh

.devcontainer/scripts/setup-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/setup-git.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.devcontainer/scripts/upgrade-cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
3-
# Copyright (c) 2023-2024 Contributors to the Eclipse Foundation
3+
# Copyright (c) 2023-2025 Contributors to the Eclipse Foundation
44
#
55
# This program and the accompanying materials are made available under the
66
# terms of the Apache License, Version 2.0 which is available at

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# See https://pre-commit.com/hooks.html for more hooks
1818
repos:
1919
- repo: https://github.com/pre-commit/pre-commit-hooks
20-
rev: v4.5.0
20+
rev: v5.0.0
2121
hooks:
2222
- id: trailing-whitespace
2323
- id: end-of-file-fixer
@@ -31,22 +31,22 @@ repos:
3131
- id: check-merge-conflict
3232

3333
- repo: https://github.com/astral-sh/ruff-pre-commit
34-
rev: v0.1.13
34+
rev: v0.9.10
3535
hooks:
3636
- id: ruff
3737
args: [--fix]
3838
- id: ruff-format
3939

4040
- repo: https://github.com/pre-commit/mirrors-mypy
41-
rev: "v1.8.0"
41+
rev: "v1.15.0"
4242
hooks:
4343
- id: mypy
4444
args: [app]
4545
language: system
4646
pass_filenames: false
4747

4848
- repo: https://github.com/Lucas-C/pre-commit-hooks
49-
rev: v1.5.4
49+
rev: v1.5.5
5050
hooks:
5151
- id: insert-license
5252
files: '.*\.(py|pyi|yaml|yml|sh|in)$'

0 commit comments

Comments
 (0)