Skip to content

Commit 687a38f

Browse files
Update versions, esp. bump protobuf from 2.28.0 to 3.7.2
* Bump protobuf from 2.28.0 to 3.7.2 in /testbench/multilang/rust-proj Bumps [protobuf](https://github.com/stepancheg/rust-protobuf) from 2.28.0 to 3.7.2. - [Changelog](https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG-before-3.md) - [Commits](stepancheg/rust-protobuf@v2.28.0...v3.7.2) --- updated-dependencies: - dependency-name: protobuf dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Bump protobuf from 2.28.0 to 3.7.2 in /testbench/rust Bumps [protobuf](https://github.com/stepancheg/rust-protobuf) from 2.28.0 to 3.7.2. - [Changelog](https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG-before-3.md) - [Commits](stepancheg/rust-protobuf@v2.28.0...v3.7.2) --- updated-dependencies: - dependency-name: protobuf dependency-type: direct:production ... * Update ruff * Update mypy * Update docker-in-docker * Update version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: BjoernAtBosch <[email protected]>
1 parent 780bc7c commit 687a38f

File tree

10 files changed

+126
-26
lines changed

10 files changed

+126
-26
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@
7272
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
7373
"remoteUser": "vscode",
7474
"features": {
75-
"ghcr.io/devcontainers/features/docker-in-docker:2.7.1": {}
75+
"ghcr.io/devcontainers/features/docker-in-docker:2.12.0": {}
7676
}
7777
}

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ repos:
2727
- id: check-merge-conflict
2828

2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.1.13
30+
rev: v0.11.0
3131
hooks:
3232
- id: ruff
3333
args: [--fix]
3434
- id: ruff-format
3535

3636
- repo: https://github.com/pre-commit/mirrors-mypy
37-
rev: "v1.8.0"
37+
rev: "v1.15.0"
3838
hooks:
3939
- id: mypy
4040
args: [.]
4141
language: system
4242
pass_filenames: false
4343

4444
- repo: https://github.com/Lucas-C/pre-commit-hooks
45-
rev: v1.5.4
45+
rev: v1.5.5
4646
hooks:
4747
- id: insert-license
4848
files: '.*\.(py|pyi|yaml|yml|sh)$'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setuptools.setup(
2424
name="licensevalidator",
25-
version="1.2.5",
25+
version="1.2.6",
2626
description="A validator for dependency licenses",
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",

src/action.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def get_args():
4848
parser.add_argument(
4949
"config_file_path",
5050
type=str,
51-
help="Path to the license check configuration." "(Relative to repository root)",
51+
help="Path to the license check configuration (relative to repository root)",
5252
)
5353
parser.add_argument(
5454
"--github-token",

test/test_checklicenses.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""Unit tests for checklicenses."""
1616

17-
1817
from licensevalidator.checklicenses import check_licenses
1918
from licensevalidator.lib.dependency import DependencyInfo
2019

test/test_licensevalidator.py

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""Integration tests for license validator."""
1616

17-
1817
from licensevalidator.licensevalidator import validate_used_licenses
1918

2019

testbench/multilang/rust-proj/Cargo.lock

+59-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testbench/multilang/rust-proj/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
protobuf = "~2"
9+
protobuf = "~3"
1010
futures = "~0.3"

testbench/rust/Cargo.lock

+59-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testbench/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
protobuf = "~2"
9+
protobuf = "~3"
1010
futures = "~0.3"

0 commit comments

Comments
 (0)