Skip to content

Stable to develop #6443

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
May 12, 2025
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a98642f
Deleting branch correctly deletes nodes with agnostic relationships (…
LucasG0 May 5, 2025
09c4f99
fix(ci): repository dispatch after image is published
fatih-acar May 5, 2025
e563e1f
fix: neo4j docker healthcheck fills storage
fatih-acar Apr 15, 2025
b24d4ce
ci: add INFRAHUB_CUSTOMER2_REPOSITORY to repository-dispatcher
wvandeun May 6, 2025
718f511
Merge pull request #6412 from opsmill/wvd-add-customer-2-to-repositor…
wvandeun May 6, 2025
21d0b22
Fix textarea UI display in object details view (#6414)
pa-lem May 6, 2025
c55c973
logic for deleting nodes removed from a diff (#6391)
ajtmccarty May 6, 2025
e1bce6b
add node kind to node field specifiers (#6359)
ajtmccarty May 6, 2025
7f8b7f9
Add changelog for deleting agnostic relationships (#6409)
LucasG0 May 6, 2025
c3e7563
change wording
petercrocker May 7, 2025
f1f0a68
Update date display to include year and fix consistency across list a…
pa-lem May 7, 2025
acae3cd
Generate templates for inherited kinds (#6423)
gmazoyer May 7, 2025
c50df9b
fix(backend): improve NodeGetHierarchyQuery performance on default br…
fatih-acar May 6, 2025
197f7ed
fix(backend): make sure filter subqueries start from the node
fatih-acar May 6, 2025
dae2057
v1.2.9 release prep
lykinsbd May 7, 2025
7745e6a
fix bug in rel create for migrated kind nodes (#6421)
ajtmccarty May 8, 2025
b2f89a1
Merge pull request #6422 from opsmill/pmc-20250507-docs
dgarros May 8, 2025
75baee0
ci: add INFRAHUB_CUSTOMER3_REPOSITORY to repository-dispatcher
wvandeun May 8, 2025
5420339
Break apart ignored mypy rules to individual error codes
ogenstad May 8, 2025
0c02925
fix: calculate webhook signature on json serialized payload
wvandeun May 8, 2025
8edfae7
Merge pull request #6431 from opsmill/pog-mypy-ruleset
ogenstad May 9, 2025
ae7b246
fix webhook receiver example in docs to calculate signature from json…
wvandeun May 8, 2025
decc592
correct filename of webhook receiver example
wvandeun May 8, 2025
47525b8
add changelog fragment
wvandeun May 8, 2025
75b251c
fix(testcontainers): change json format to JS compatible
fatih-acar Apr 18, 2025
3cfeda9
fix(testcontainers): rename deprecated neo4j config
fatih-acar Apr 24, 2025
7e0af34
Merge pull request #6430 from opsmill/wvd-add-customer-3-to-repositor…
wvandeun May 9, 2025
9db6786
Make sure doc sync only runs on commit to stable (#6429)
BaptisteGi May 9, 2025
d567372
Add 'List' kinds to LARGE_ATTRIBUTE_TYPES
ogenstad May 9, 2025
2ec0f39
Merge pull request #6438 from opsmill/pog-allow-large-dropdown-choice…
ogenstad May 10, 2025
968b3c5
Merge pull request #6432 from opsmill/wvd-2025008-fix-webhook-signature
wvandeun May 10, 2025
4217f0f
Display "dissociate" action only if possible on relationships table's…
pa-lem May 12, 2025
49ccee3
Merge branch 'stable' into stable-to-develop
ajtmccarty May 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(testcontainers): change json format to JS compatible
json.dumps serializes to a format that is not equivalent to the
JSON.Stringify (JS) format.

Also do not raise Exception if the payload was not successfully sent.

Signed-off-by: Fatih Acar <[email protected]>
  • Loading branch information
fatih-acar committed May 9, 2025
commit 75b251ca53714f296fef13453239a12bb0cc43d4
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,12 @@ def send_results(self) -> None:
"kind": PERFORMANCE_TEST_KIND,
"payload_format": PERFORMANCE_TEST_VERSION,
"data": data,
"checksum": hashlib.sha256(json.dumps(data).encode()).hexdigest(),
"checksum": hashlib.sha256(json.dumps(data, separators=(",", ":")).encode()).hexdigest(),
}

with httpx.Client() as client:
response = client.post(self.results_url, json=payload)
response.raise_for_status()
try:
response = client.post(self.results_url, json=payload)
response.raise_for_status()
except Exception as exc:
print(exc)