Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# [1.0.8] - 2025-03-04
### Enhancements
* Allow delete to execute via DML statement.
* Add fallback to PDML API if a transaction contains too many mutations.

# [1.0.7] - 2025-02-25
### Others
* Bump dependency version for Spanner Go Client Library.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Current Released Version

Version `1.0.7`
Version `1.0.8`

## Introduction
Cassandra to Cloud Spanner Proxy Adapter is designed to forward your application's CQL traffic to Spanner database service. It listens on a local address and securely forwards that traffic.
Expand Down
2 changes: 1 addition & 1 deletion third_party/datastax/proxy/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var (
clusterReleaseversion = "4.0.0.6816"
defaultCqlVersion = "3.4.5"
TCP_BIND_PORT = "0.0.0.0:%s"
proxyReleaseVersion = "v1.0.7"
proxyReleaseVersion = "v1.0.8"
)
var readFile = os.ReadFile
var atomicStartedListenersCounter atomic.Int32
Expand Down
Loading