Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Bump ruff from 0.6.9 to 0.7.0

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.6.9 to 0.7.0.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.9...0.7.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump boto3 from 1.35.42 to 1.35.43 (DefectDojo#11091)

Bumps [boto3](https://github.com/boto/boto3) from 1.35.42 to 1.35.43.
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.35.42...1.35.43)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Ruff: Fix DefectDojo#11090

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and Pedro Henrique Dias Junqueira de Souza committed Oct 21, 2024
1 parent 2a2e2cb commit e3d4df3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruff==0.6.9
ruff==0.7.0
1 change: 0 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ select = [
"TRY003",
"TRY004",
"TRY2",
"TRY302",
"FLY",
"NPY",
"FAST",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import string

from django.test import TestCase

from dojo.models import Finding, Test
Expand Down Expand Up @@ -548,7 +550,7 @@ def test_appcheck_web_application_scanner_parser_non_printable_escape(self):
for test_string, expected in [
("", ""),
(
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c",
string.printable,
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\\x0b\\x0c",
),
("'!Test String?'\"\"", "'!Test String?'\"\""),
Expand Down

0 comments on commit e3d4df3

Please sign in to comment.