Releases: z5labs/gogm
Releases · z5labs/gogm
Patch Release 2.1.1
Changes:
- Added configuration option to use system cert pool or generate a new one
- GoGM doesn't attempt to load certs or connect with a cert pool unless the protocol calls for it
Minor Release 2.1.0
Changes:
- Added TLS support
- Added integration test to verify
- Updated driver to most recent release
- Verified on neo4j 4.3
- Simplified some of the decode code
- Added more examples
Known Issues:
gogmcli
is currently ONLY compatible with UUIDIndexStrategy
Patch Release 2.0.2
Changes:
- Changed Id type in
gogm.BaseNode
fromint64
to*int64
to resolve error when updating a node with graph id 0. Updated save, decode and tests where relevant
Patch Release 2.0.1
Changes:
- Fixed default graph id primary key validation (thanks @Mogztter)
- Fixed validation error when using default PK strategy for the auto generated graph id and a custom primary key (such as UUID)
- Fixed index drop issue (if no indices existed, it failed because the query returned an empty result)
Release 2.0.0
Changes:
- GoGM changed from package level to object level (with a global reference)
- Added primary key strategy to control primary keys
- Added support for tracing
- Added support for contexts (with timeouts and cancel)
- Deprecated
ISession
SessionV2
now primary session object- Removed dependence on UUID
Patch Release 1.5.1
Change Log:
- Added ability to pass logger or set custom log level
v2.0.0 Alpha 3
Changes:
- Updated queries to remove deprecated param representation
- Updated indexing queries to support v4 cypher and v3 cypher
- Updated config to define target dbs
- Updated init function to grab current neo4j version
1.5.0 Release
Changes:
- Updated queries to remove deprecated param representation
- Updated indexing queries to support v4 cypher and v3 cypher
- Updated config to define target dbs
- Updated init function to grab current neo4j version
v2.0.0 Alpha 2
Changes:
- Introduces
SessionV2
andTransactionV2
to start exploring additional functionality - Added managed transaction to
SessionV2
- Added mocks for
SessionV2
andTransactionV2
- Updated
QueryRaw
to return query stats - Bug fixes and stability improvements
1.4.1 Patch Release
Change log:
- Fixed issue with using typedeffed maps and slices for property values
- Changed gogm init logs to debug