Skip to content

Commit 020a225

Browse files
authored
Registry: auditing of provisional entities (#1954)
1 parent 26ae988 commit 020a225

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

packages/components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/components",
3-
"version": "7.23.3",
3+
"version": "7.23.4",
44
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
55
"sideEffects": false,
66
"files": [

packages/components/releaseNotes/components.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# @labkey/components
22
Components, models, actions, and utility functions for LabKey applications and pages
33

4+
### version 7.23.4
5+
*Released*: 22 March 2026
6+
- Set query and registry audit events to `hasTransactionId=true`
7+
48
### version 7.23.3
59
*Released*: 19 March 2026
610
- GitHub Issue 942: Add error for duplicate values for MVTC fields

packages/components/src/internal/components/auditlog/constants.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const DOMAIN_PROPERTY_AUDIT_QUERY: AuditQuery = {
2020
};
2121
export const QUERY_UPDATE_AUDIT_QUERY: AuditQuery = {
2222
hasDetail: true,
23+
hasTransactionId: true,
2324
label: 'Query Update Events',
2425
value: 'QueryUpdateAuditEvent',
2526
};
@@ -97,7 +98,11 @@ export const SOURCE_AUDIT_QUERY: AuditQuery = {
9798

9899
export const NOTEBOOK_AUDIT_QUERY: AuditQuery = { label: 'Notebook Events', value: 'LabBookEvent' };
99100
export const NOTEBOOK_REVIEW_AUDIT_QUERY: AuditQuery = { label: 'Notebook Review Events', value: 'NotebookEvent' };
100-
export const REGISTRY_AUDIT_QUERY: AuditQuery = { label: 'Registry Events', value: 'RegistryEvent' };
101+
export const REGISTRY_AUDIT_QUERY: AuditQuery = {
102+
hasTransactionId: true,
103+
label: 'Registry Events',
104+
value: 'RegistryEvent',
105+
};
101106
export const REPORT_AUDIT_QUERY: AuditQuery = { label: 'Report Events', value: 'ReportEvent' };
102107

103108
export const FILE_SYSTEM_AUDIT_QUERY: AuditQuery = {

0 commit comments

Comments
 (0)