From 5ce342a95d66cc1e9d24f210563284fb678e8009 Mon Sep 17 00:00:00 2001 From: Stephen Fuqua Date: Wed, 24 Jul 2024 12:37:57 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff998292..017e7ff8 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,9 @@ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Ed-Fi-Exchange-OSS/Meadowlark/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Ed-Fi-Exchange-OSS/Meadowlark) > [!WARNING] -> The Meadowlark project has been suspended. See [SUSPENDED.md](https://github.com/Ed-Fi-Exchange-OSS/Meadowlark/blob/main/SUSPENDED.md) -> for more information. +> The Meadowlark project has been suspended and replaced with [Project Tanager](https://github.com/Ed-Fi-Alliance-OSS/Project-Tanager). +> See [SUSPENDED.md](https://github.com/Ed-Fi-Exchange-OSS/Meadowlark/blob/main/SUSPENDED.md) +> for more information on the status of Project Meadowlark. Meadowlark photo (c) Joel Chamberlain Date: Wed, 24 Jul 2024 14:50:31 -0500 Subject: [PATCH 2/2] Meaningless change to trigger build workflows --- .../meadowlark-postgresql-backend/src/BackendFacade.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts b/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts index 89bcc249..b6001e4b 100644 --- a/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts +++ b/Meadowlark-js/backends/meadowlark-postgresql-backend/src/BackendFacade.ts @@ -44,11 +44,11 @@ import { getSharedClient, closeSharedConnection } from './repository/Db'; import * as SecurityMiddleware from './security/SecurityMiddleware'; export async function deleteDocumentById(request: DeleteRequest): Promise { - const poolClient: PoolClient = await getSharedClient(); + const poolClient1: PoolClient = await getSharedClient(); try { - return Delete.deleteDocumentByDocumentUuid(request, poolClient); + return Delete.deleteDocumentByDocumentUuid(request, poolClient1); } finally { - poolClient.release(); + poolClient1.release(); } }