Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neo4j/neo4j-javascript-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.0
Choose a base ref
...
head repository: neo4j/neo4j-javascript-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.3
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 28 files changed
  • 3 contributors

Commits on Aug 12, 2021

  1. Fix Path unpacking when useBigInt is on

    The code was trying to do math between Number and BigInt during the Path unpacking. The usage of `toNumber` convert any BigInt|Number|Integer to number in optimal way.
    
    Also implements the bind between Relationship and CypherRelatioship to make the code be able to be tested.
    bigmontz committed Aug 12, 2021
    Copy the full SHA
    dbf93a8 View commit details

Commits on Sep 6, 2021

  1. Fix issues which are blocking the build pipeline

    The wrong typecasting the `record.ts` was giving a `Type 'any' cannot be used to index type 'Entries'.` during the build. And it was fixed just by adjusting the type casting.
    
    The test case `Result Promise should call finally on error` was not handling correctly the error before call finally and it was giving `Unhandled promise rejection` error during the tests.
    bigmontz committed Sep 6, 2021
    Copy the full SHA
    92ad343 View commit details

Commits on Oct 13, 2021

  1. Add type assertion to is functions (#781)

    Allow for easier use in typescript of is function
    thebestnom authored Oct 13, 2021
    Copy the full SHA
    d8c60c5 View commit details

Commits on Oct 14, 2021

  1. Adds optional generic parameter to Node and Relationship (#780)

     adds optional generic parameter to Node and Relationship
    1pxone authored Oct 14, 2021
    Copy the full SHA
    9c30c13 View commit details

Commits on Nov 2, 2021

  1. Copy the full SHA
    31b8000 View commit details
  2. Keep npm version as 7

    bigmontz committed Nov 2, 2021
    Copy the full SHA
    56f13de View commit details

Commits on Nov 3, 2021

  1. Handle AuthorizationExpired during rediscovery

    The connections to a server should not be sent back to the pool if an AuthenticationExpired failure happens.
    
    Sending the connection back to the pool will make the next work using the connection fails with the same error.
    bigmontz committed Nov 3, 2021
    Copy the full SHA
    a282065 View commit details
  2. Copy the full SHA
    02dd421 View commit details

Commits on Nov 4, 2021

  1. Don't send RESET message when the connection is not open (#807)

    Send RESET when the connection is not optimal since it was time waiting for the message send times out. It could be really fast in the nodejs environment, but it could take some minutes in browser.
    
    Skip send RESET when the connection is not open avoid this issue.
    bigmontz authored Nov 4, 2021
    Copy the full SHA
    faf6f6b View commit details

Commits on Nov 26, 2021

  1. Copy the full SHA
    76b5162 View commit details

Commits on Dec 17, 2021

  1. Fix connections not being destroyed when released to purged pool (#823)

    This scenario happens when the pull for a given address is purged while a connection stills in use and then another pool for the same address is created. In this case, the connection was being wrongly added to the existing pool.
    
    The correct behaviour is destroy this orphan connections.
    bigmontz committed Dec 17, 2021
    Copy the full SHA
    8b74997 View commit details

Commits on Dec 21, 2021

  1. Fix routing stub test

    bigmontz committed Dec 21, 2021
    Copy the full SHA
    664b8f2 View commit details

Commits on May 4, 2022

  1. Copy the full SHA
    1b71525 View commit details
  2. Copy the full SHA
    7c6cc18 View commit details
Loading