Skip to content

Commit e16338b

Browse files
committed
Merge branch 'dev' into misc-import-updates
2 parents 9484510 + 6b14cc3 commit e16338b

55 files changed

Lines changed: 1415 additions & 67 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/k8s-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# databases, broker and k8s are independent, so we don't need to test each combination
1717
# lastest k8s version (https://kubernetes.io/releases/) and the oldest officially supported version
1818
# are tested (https://kubernetes.io/releases/)
19-
- k8s: 'v1.35.4' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
19+
- k8s: 'v1.35.6' # renovate: datasource=github-releases depName=kubernetes/kubernetes versioning=loose
2020
os: debian
2121
- k8s: '1.34.9' # renovate: datasource=custom.endoflife-oldest-maintained depName=kubernetes
2222
os: debian

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,5 @@ docs/.hugo_build.lock
153153
# claude etc
154154
MEMORY.md
155155
.claude/
156+
CLAUDE.md
157+
CLAUDE.local.md

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "defectdojo",
3-
"version": "3.1.0-dev",
3+
"version": "3.2.0-dev",
44
"license": "BSD-3-Clause",
55
"private": true,
66
"dependencies": {

components/tailwind.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,6 +1177,9 @@
11771177
box-shadow: 0 4px 16px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.06);
11781178
}
11791179
.open > .dropdown-menu { display: block; }
1180+
/* Right-align the menu to its toggle (e.g. dropdowns pinned to the right
1181+
edge of a header) so it opens leftward instead of overflowing the page. */
1182+
.dropdown-menu-right { right: 0; left: auto; }
11801183
.dropdown-menu > li > a,
11811184
.dropdown-menu > a {
11821185
display: block;

docker-compose.override.integration_tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ services:
4646
environment:
4747
DD_DATABASE_URL: ${DD_TEST_DATABASE_URL:-postgresql://defectdojo:defectdojo@postgres:5432/test_defectdojo}
4848
DD_V3_FEATURE_LOCATIONS: ${DD_V3_FEATURE_LOCATIONS:-False}
49+
# Delay deduplication batches so the async_wait integration test can
50+
# deterministically distinguish a blocking join (async_wait) from a
51+
# non-blocking one (async). Scoped by _FILTER to that test's findings so
52+
# other dedupe tests are unaffected. Integration-test stack only; never prod.
53+
DD_DEDUPLICATION_BATCH_PROCESS_TEST_DELAY: 10
54+
DD_DEDUPLICATION_BATCH_PROCESS_TEST_DELAY_FILTER: "async_wait finding"
4955
initializer:
5056
environment:
5157
PYTHONWARNINGS: error # We are strict about Warnings during testing
7.74 KB
Loading
76.6 KB
Loading
26.6 KB
Loading
150 KB
Loading
137 KB
Loading

0 commit comments

Comments
 (0)