dependabot[bot]
25d82a2a62
build(deps): bump setuptools from 75.6.0 to 75.8.0 ( #2562 )
2025-01-20 08:27:57 -07:00
dependabot[bot]
079a9e30b1
build(deps): bump deptry from 0.21.1 to 0.22.0 ( #2563 )
2025-01-20 08:27:37 -07:00
dependabot[bot]
c061ec5e2b
build(deps): bump ruff from 0.8.0 to 0.9.2 ( #2566 )
2025-01-20 08:26:20 -07:00
dependabot[bot]
0a547cf0f0
build(deps): bump types-protobuf from 5.28.0.20240924 to 5.29.1.20241207 ( #2534 )
...
Bumps [types-protobuf](https://github.com/python/typeshed ) from 5.28.0.20240924 to 5.29.1.20241207.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-protobuf
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-16 02:02:08 -07:00
dependabot[bot]
4411170869
build(deps): bump mypy from 1.13.0 to 1.14.1 ( #2550 )
...
Bumps [mypy](https://github.com/python/mypy ) from 1.13.0 to 1.14.1.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md )
- [Commits](https://github.com/python/mypy/compare/v1.13.0...v1.14.1 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-16 01:59:45 -07:00
Ana Maria Martinez Gomez
3cd97ae9f2
[copyright + license] Fix headers
...
Replace the header from source code files using the following script:
```Python
for dir_path, dir_names, file_names in os.walk("capa"):
for file_name in file_names:
# header are only in `.py` and `.toml` files
if file_name[-3:] not in (".py", "oml"):
continue
file_path = f"{dir_path}/{file_name}"
f = open(file_path, "rb+")
content = f.read()
m = re.search(OLD_HEADER, content)
if not m:
continue
print(f"{file_path}: {m.group('year')}")
content = content.replace(m.group(0), NEW_HEADER % m.group("year"))
f.seek(0)
f.write(content)
```
Some files had the copyright headers inside a `"""` comment and needed
manual changes before applying the script. `hook-vivisect.py` and
`pyinstaller.spec` didn't include the license in the header and also
needed manual changes.
The old header had the confusing sentence `All rights reserved`, which
does not make sense for an open source license. Replace the header by
the default Google header that corrects this issue and keep capa
consistent with other Google projects.
Adapt the linter to work with the new header.
Replace also the copyright text in the `web/public/index.html` file for
consistency.
2025-01-15 08:52:42 -07:00
dependabot[bot]
e5fe935a8e
build(deps): bump flake8-bugbear from 24.10.31 to 24.12.12
...
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear ) from 24.10.31 to 24.12.12.
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases )
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/24.10.31...24.12.12 )
---
updated-dependencies:
- dependency-name: flake8-bugbear
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-16 14:12:27 +00:00
dependabot[bot]
cb002567c4
build(deps): bump deptry from 0.20.0 to 0.21.1
...
Bumps [deptry](https://github.com/fpgmaas/deptry ) from 0.20.0 to 0.21.1.
- [Release notes](https://github.com/fpgmaas/deptry/releases )
- [Changelog](https://github.com/fpgmaas/deptry/blob/main/CHANGELOG.md )
- [Commits](https://github.com/fpgmaas/deptry/compare/0.20.0...0.21.1 )
---
updated-dependencies:
- dependency-name: deptry
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-26 09:52:23 +01:00
dependabot[bot]
46c513c0a9
build(deps): bump ruff from 0.7.1 to 0.8.0
...
Bumps [ruff](https://github.com/astral-sh/ruff ) from 0.7.1 to 0.8.0.
- [Release notes](https://github.com/astral-sh/ruff/releases )
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/ruff/compare/0.7.1...0.8.0 )
---
updated-dependencies:
- dependency-name: ruff
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-26 09:51:25 +01:00
dependabot[bot]
0f0523d2ba
build(deps): bump setuptools from 75.3.0 to 75.6.0
...
Bumps [setuptools](https://github.com/pypa/setuptools ) from 75.3.0 to 75.6.0.
- [Release notes](https://github.com/pypa/setuptools/releases )
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst )
- [Commits](https://github.com/pypa/setuptools/compare/v75.3.0...v75.6.0 )
---
updated-dependencies:
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-26 09:51:12 +01:00
Moritz
8b7ec049f4
Merge pull request #2495 from mandiant/dependabot/pip/pygithub-2.5.0
...
build(deps): bump pygithub from 2.4.0 to 2.5.0
2024-11-19 12:29:14 +01:00
Moritz
c05e01cc3a
Merge pull request #2494 from mandiant/dependabot/pip/flake8-comprehensions-3.16.0
...
build(deps): bump flake8-comprehensions from 3.15.0 to 3.16.0
2024-11-19 12:28:57 +01:00
Moritz
93da346f32
Merge pull request #2492 from mandiant/dependabot/pip/flake8-bugbear-24.10.31
...
build(deps): bump flake8-bugbear from 24.8.19 to 24.10.31
2024-11-19 12:28:13 +01:00
dependabot[bot]
3a2056b701
build(deps): bump setuptools from 75.2.0 to 75.3.0 ( #2485 )
...
Bumps [setuptools](https://github.com/pypa/setuptools ) from 75.2.0 to 75.3.0.
- [Release notes](https://github.com/pypa/setuptools/releases )
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst )
- [Commits](https://github.com/pypa/setuptools/compare/v75.2.0...v75.3.0 )
---
updated-dependencies:
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-11-19 10:47:04 +01:00
dependabot[bot]
915f3b0511
build(deps): bump pygithub from 2.4.0 to 2.5.0
...
Bumps [pygithub](https://github.com/pygithub/pygithub ) from 2.4.0 to 2.5.0.
- [Release notes](https://github.com/pygithub/pygithub/releases )
- [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst )
- [Commits](https://github.com/pygithub/pygithub/compare/v2.4.0...v2.5.0 )
---
updated-dependencies:
- dependency-name: pygithub
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-18 14:44:53 +00:00
dependabot[bot]
cd61983e43
build(deps): bump flake8-comprehensions from 3.15.0 to 3.16.0
...
Bumps [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions ) from 3.15.0 to 3.16.0.
- [Changelog](https://github.com/adamchainz/flake8-comprehensions/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/adamchainz/flake8-comprehensions/compare/3.15.0...3.16.0 )
---
updated-dependencies:
- dependency-name: flake8-comprehensions
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-18 14:44:49 +00:00
dependabot[bot]
3ebec9ec2b
build(deps): bump flake8-bugbear from 24.8.19 to 24.10.31
...
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear ) from 24.8.19 to 24.10.31.
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases )
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/24.8.19...24.10.31 )
---
updated-dependencies:
- dependency-name: flake8-bugbear
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-11-18 14:44:40 +00:00
dependabot[bot]
e8ad207245
build(deps): bump types-psutil from 6.0.0.20240901 to 6.1.0.20241102 ( #2486 )
...
Bumps [types-psutil](https://github.com/python/typeshed ) from 6.0.0.20240901 to 6.1.0.20241102.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-psutil
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-11-12 12:37:25 +01:00
dependabot[bot]
a31bd2cd15
build(deps): bump pytest-cov from 5.0.0 to 6.0.0 ( #2484 )
...
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov ) from 5.0.0 to 6.0.0.
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v5.0.0...v6.0.0 )
---
updated-dependencies:
- dependency-name: pytest-cov
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-11-12 12:35:59 +01:00
dependabot[bot]
9118946ecb
build(deps): bump pyinstaller from 6.10.0 to 6.11.1 ( #2487 )
...
Bumps [pyinstaller](https://github.com/pyinstaller/pyinstaller ) from 6.10.0 to 6.11.1.
- [Release notes](https://github.com/pyinstaller/pyinstaller/releases )
- [Changelog](https://github.com/pyinstaller/pyinstaller/blob/develop/doc/CHANGES.rst )
- [Commits](https://github.com/pyinstaller/pyinstaller/compare/v6.10.0...v6.11.1 )
---
updated-dependencies:
- dependency-name: pyinstaller
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-11-12 12:35:19 +01:00
dependabot[bot]
7b32706bd4
build(deps): bump psutil from 6.0.0 to 6.1.0 ( #2478 )
...
Bumps [psutil](https://github.com/giampaolo/psutil ) from 6.0.0 to 6.1.0.
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst )
- [Commits](https://github.com/giampaolo/psutil/compare/release-6.0.0...release-6.1.0 )
---
updated-dependencies:
- dependency-name: psutil
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-11-11 16:42:57 +01:00
dependabot[bot]
ec697c01f9
build(deps): bump mypy from 1.12.1 to 1.13.0 ( #2476 )
2024-10-30 17:03:41 +01:00
dependabot[bot]
097ed73ccd
build(deps): bump ruff from 0.6.4 to 0.7.1 ( #2475 )
2024-10-30 17:03:29 +01:00
dependabot[bot]
77758e8922
build(deps): bump mypy from 1.11.2 to 1.12.1 ( #2469 )
...
Bumps [mypy](https://github.com/python/mypy ) from 1.11.2 to 1.12.1.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md )
- [Commits](https://github.com/python/mypy/compare/v1.11.2...v1.12.1 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-10-23 09:06:28 +02:00
dependabot[bot]
296255f581
build(deps): bump setuptools from 75.1.0 to 75.2.0 ( #2468 )
...
Bumps [setuptools](https://github.com/pypa/setuptools ) from 75.1.0 to 75.2.0.
- [Release notes](https://github.com/pypa/setuptools/releases )
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst )
- [Commits](https://github.com/pypa/setuptools/compare/v75.1.0...v75.2.0 )
---
updated-dependencies:
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-10-23 09:05:50 +02:00
dependabot[bot]
0237059cbd
build(deps): bump black from 24.8.0 to 24.10.0 ( #2462 )
...
* build(deps): bump black from 24.8.0 to 24.10.0
Bumps [black](https://github.com/psf/black ) from 24.8.0 to 24.10.0.
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/compare/24.8.0...24.10.0 )
---
updated-dependencies:
- dependency-name: black
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
---------
Signed-off-by: dependabot[bot] <support@github.com >
2024-10-23 09:04:34 +02:00
dependabot[bot]
d4d856767d
build(deps): bump pre-commit from 3.5.0 to 4.0.1 ( #2464 )
...
Bumps [pre-commit](https://github.com/pre-commit/pre-commit ) from 3.5.0 to 4.0.1.
- [Release notes](https://github.com/pre-commit/pre-commit/releases )
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md )
- [Commits](https://github.com/pre-commit/pre-commit/compare/v3.5.0...v4.0.1 )
---
updated-dependencies:
- dependency-name: pre-commit
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-10-22 20:13:49 +02:00
mr-tz
7cc3ddd4ea
remove typing_extensions Annotated import
2024-10-22 09:38:33 +00:00
mr-tz
2987eeb0ac
update type annotations
...
tmp
2024-10-22 09:38:25 +00:00
mr-tz
f2c329b768
rename ida to idapro module for IDA 9.0
2024-10-09 12:20:38 +00:00
dependabot[bot]
9e7e6be374
build(deps): bump types-protobuf from 5.27.0.20240920 to 5.28.0.20240924
...
Bumps [types-protobuf](https://github.com/python/typeshed ) from 5.27.0.20240920 to 5.28.0.20240924.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-protobuf
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-10-01 11:44:19 +00:00
Fariss
51a4eb46b8
replace tqdm, termcolor, tabulate with rich ( #2374 )
...
* logging: use rich handler for logging
* tqdm: remove unneeded redirecting_print_to_tqdm function
* tqdm: introduce `CapaProgressBar` rich `Progress` bar
* tqdm: replace tqdm with rich Progress bar
* tqdm: remove tqdm dependency
* termcolor: replace termcolor and update `scripts/`
* tests: update `test_render.py` to use rich.console.Console
* termcolor: remove termcolor dependency
* capa.render.utils: add `write` & `writeln` methods to subclass `Console`
* update markup util functions to use fmt strings
* tests: update `test_render.py` to use `capa.render.utils.Console`
* replace kwarg `end=""` with `write` and `writeln` methods
* tabulate: replace tabulate with `rich.table`
* tabulate: remove `tabulate` and its dependency `wcwidth`
* logging: handle logging in `capa.main`
* logging: set up logging in `capa.main`
this commit sets up logging in `capa.main` and uses a shared
`log_console` in `capa.helpers` for logging purposes
* changelog: replace packages with rich
* remove entry from pyinstaller and unneeded progress.update call
* update requirements.txt
* scripts: use `capa.helpers.log_console` in `CapaProgressBar`
* logging: configure root logger to use `RichHandler`
* remove unused import `inspect`
2024-09-27 09:34:21 +02:00
dependabot[bot]
76aff57467
build(deps): bump setuptools from 70.0.0 to 75.1.0 ( #2392 )
...
Bumps [setuptools](https://github.com/pypa/setuptools ) from 70.0.0 to 75.1.0.
- [Release notes](https://github.com/pypa/setuptools/releases )
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst )
- [Commits](https://github.com/pypa/setuptools/compare/v70.0.0...v75.1.0 )
---
updated-dependencies:
- dependency-name: setuptools
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-27 09:32:18 +02:00
dependabot[bot]
f82fc1902c
build(deps): bump types-protobuf from 5.27.0.20240907 to 5.27.0.20240920 ( #2393 )
...
Bumps [types-protobuf](https://github.com/python/typeshed ) from 5.27.0.20240907 to 5.27.0.20240920.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-protobuf
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-27 09:32:08 +02:00
Willi Ballenthin
bcd57a9af1
detect and use third-party analysis backends when possible ( #2380 )
...
* introduce script to detect 3P backends
ref #2376
* add idalib backend
* binary ninja: search for API using XDG desktop entry
ref #2376
* binja: search more XDG locations for desktop entry
* binary ninja: optimize embedded PE scanning
closes #2397
* add script for comparing the performance of analysis backends
2024-09-26 13:21:55 +02:00
Willi Ballenthin
01b35e7582
pyproject.toml: bump min python version to 3.8.1
...
fixed #2387
2024-09-23 20:21:50 +00:00
Moritz
4d812f085f
Merge pull request #2366 from mandiant/dependabot/pip/types-protobuf-5.27.0.20240907
...
build(deps): bump types-protobuf from 5.27.0.20240626 to 5.27.0.20240907
2024-09-17 11:45:16 +02:00
dependabot[bot]
38fa7f0b80
build(deps): bump build from 1.2.1 to 1.2.2
...
Bumps [build](https://github.com/pypa/build ) from 1.2.1 to 1.2.2.
- [Release notes](https://github.com/pypa/build/releases )
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pypa/build/compare/1.2.1...1.2.2 )
---
updated-dependencies:
- dependency-name: build
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-09-16 15:00:39 +00:00
dependabot[bot]
6ebbd1db89
build(deps): bump types-protobuf from 5.27.0.20240626 to 5.27.0.20240907
...
Bumps [types-protobuf](https://github.com/python/typeshed ) from 5.27.0.20240626 to 5.27.0.20240907.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-protobuf
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-09-16 15:00:28 +00:00
dependabot[bot]
529a5de534
build(deps): bump deptry from 0.19.1 to 0.20.0 ( #2344 )
...
Bumps [deptry](https://github.com/fpgmaas/deptry ) from 0.19.1 to 0.20.0.
- [Release notes](https://github.com/fpgmaas/deptry/releases )
- [Changelog](https://github.com/fpgmaas/deptry/blob/main/CHANGELOG.md )
- [Commits](https://github.com/fpgmaas/deptry/compare/0.19.1...0.20.0 )
---
updated-dependencies:
- dependency-name: deptry
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Moritz <mr-tz@users.noreply.github.com >
2024-09-10 12:56:04 +02:00
Moritz
9459251e12
use new IDAPython 9.0 APIs ( #2339 )
...
* use new IDAPython 9.0 APIs
* add IDAPython compatibility wrappers
2024-09-10 12:55:42 +02:00
Moritz
113b2593fa
Merge pull request #2351 from mandiant/dependabot/pip/ruff-0.6.4
...
build(deps): bump ruff from 0.6.2 to 0.6.4
2024-09-10 12:11:19 +02:00
dependabot[bot]
363e70f523
build(deps): bump ruff from 0.6.2 to 0.6.4
...
Bumps [ruff](https://github.com/astral-sh/ruff ) from 0.6.2 to 0.6.4.
- [Release notes](https://github.com/astral-sh/ruff/releases )
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/ruff/compare/0.6.2...0.6.4 )
---
updated-dependencies:
- dependency-name: ruff
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-09-09 14:04:36 +00:00
dependabot[bot]
a4e81540d1
build(deps): bump types-psutil from 6.0.0.20240621 to 6.0.0.20240901
...
Bumps [types-psutil](https://github.com/python/typeshed ) from 6.0.0.20240621 to 6.0.0.20240901.
- [Commits](https://github.com/python/typeshed/commits )
---
updated-dependencies:
- dependency-name: types-psutil
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-09-02 14:49:59 +00:00
Moritz
db4798aaf6
Merge pull request #2335 from mandiant/dependabot/pip/pygithub-2.4.0
...
build(deps): bump pygithub from 2.3.0 to 2.4.0
2024-08-27 12:13:26 +02:00
Moritz
ce62fecbea
Merge pull request #2336 from mandiant/dependabot/pip/flake8-bugbear-24.8.19
...
build(deps): bump flake8-bugbear from 24.4.26 to 24.8.19
2024-08-27 12:13:11 +02:00
Moritz
138c7014e5
Merge pull request #2334 from mandiant/dependabot/pip/ruff-0.6.2
...
build(deps): bump ruff from 0.5.6 to 0.6.2
2024-08-27 12:12:51 +02:00
Moritz
9d8401a9a7
Merge pull request #2333 from mandiant/dependabot/pip/mypy-1.11.2
...
build(deps): bump mypy from 1.11.1 to 1.11.2
2024-08-27 12:12:44 +02:00
dependabot[bot]
b1a79fba9d
build(deps): bump flake8-bugbear from 24.4.26 to 24.8.19
...
Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear ) from 24.4.26 to 24.8.19.
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases )
- [Commits](https://github.com/PyCQA/flake8-bugbear/compare/24.4.26...24.8.19 )
---
updated-dependencies:
- dependency-name: flake8-bugbear
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-08-26 14:48:38 +00:00
dependabot[bot]
770fefbba8
build(deps): bump pygithub from 2.3.0 to 2.4.0
...
Bumps [pygithub](https://github.com/pygithub/pygithub ) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/pygithub/pygithub/releases )
- [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst )
- [Commits](https://github.com/pygithub/pygithub/compare/v2.3.0...v2.4.0 )
---
updated-dependencies:
- dependency-name: pygithub
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-08-26 14:48:34 +00:00