Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions packages/components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/components",
"version": "6.67.0",
"version": "6.67.1",
"description": "Components, models, actions, and utility functions for LabKey applications and pages",
"sideEffects": false,
"files": [
Expand Down
5 changes: 5 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 6.67.1
*Released* 29 October 2025
- Issue 53563: Domain designer lookups don't show newly added entity types after initial load/view
- Remove fetchQueries from client cache

### version 6.67.0
*Released* 29 October 2025
- Issue 52310: Change application single-value dropdowns to include the current value in the listed options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,27 +208,20 @@ export function fetchDomainDetails(options: FetchDomainDetailsOptions): Promise<
}

export function fetchQueries(containerPath: string, schemaName: string): Promise<QueryInfoLite[]> {
const key = [containerPath, schemaName].join('|').toLowerCase();

return cache<QueryInfoLite[]>(
'query-cache',
key,
() =>
new Promise(resolve => {
if (schemaName) {
Query.getQueries({
containerPath,
schemaName,
queryDetailColumns: true,
success: data => {
resolve(processQueries(data));
},
});
} else {
resolve(null);
}
})
);
return new Promise(resolve => {
if (schemaName) {
Query.getQueries({
containerPath,
schemaName,
queryDetailColumns: true,
success: data => {
resolve(processQueries(data));
},
});
} else {
resolve(null);
}
});
}

export function getRequiredParentTypes(
Expand Down