Closed Brakebein closed 10 months ago
@Brakebein looks like there is a build error:
src/morpheus/morpheus.service.ts:66:26 - error TS2339: Property 'close' does not exist on type 'Connection | Connection'.
Property 'close' does not exist on type 'Connection'.
66 await connection.close();
seems related to the updated driver.
I was using an union before providedConnection?: Connection | CypherQBConnection,
which is no longer needed, CypherQBConnection
is more than enough now.
I was hitting npm run build
multiple times, but obviously not after the very last change of the dependencies. Now it should work, only using Connection
from cypher-query-builder
.
:tada: This PR is included in version 3.5.1 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
dependencies
todevDependencies
, updatedpeerDependencies
(see #38)neo4j-driver-core
to prevent deprecation message duringnpm install
:npm WARN deprecated neo4j-driver-core@5.5.0: Upgrade to 5.5.1 or later
npm audit fix