diff --git a/RELEASE_NOTES_LATEST.md b/RELEASE_NOTES_LATEST.md index 37901bc..b927660 100644 --- a/RELEASE_NOTES_LATEST.md +++ b/RELEASE_NOTES_LATEST.md @@ -3,19 +3,19 @@ ## Bugs Fixed -- **Set release compilation mode to optimized** - - We set the Bazel compilation mode for releases to `opt`. - -## Code Refactors +- **Fix unpacking driver runtime files into working directory** + +Due to a bug in the Java driver, we unpacked the driver dynamic library into the current working directory, rather than into a temporary directory. + +We update to the driver version with the fix. -## Other Improvements -- **Use randomly chosen address/port in console tests** -- **Fix test path** -- **Add native assembly test reliant on Core artifact pulled through Driver** +## Code Refactors + + +## Other Improvements diff --git a/VERSION b/VERSION index ce72c2b..d86fa90 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.24.14 +2.24.15 diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index adc0c93..9b7c6f7 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -28,12 +28,12 @@ def vaticle_typedb_common(): git_repository( name = "vaticle_typedb_common", remote = "https://github.com/vaticle/typedb-common", - tag = "2.24.14", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common + tag = "2.24.15", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common ) def vaticle_typedb_driver(): git_repository( name = "vaticle_typedb_driver", remote = "https://github.com/vaticle/typedb-driver", - tag = "2.24.14", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver + tag = "2.24.15", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver )