Skip to content

Commit

Permalink
bump to beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
refset committed Feb 15, 2025
1 parent 56a32d8 commit 72c21ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cloudformation/03-lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Resources:
Environment:
Variables:
JAVA_TOOL_OPTIONS: '--add-opens=java.base/java.nio=ALL-UNNAMED -Dio.netty.tryReflectionSetAccessible=true'
XTDB_VERSION: '2.0.0-beta5'
XTDB_VERSION: '2.0.0-beta6'

SSMPlayLambdaName:
Type: AWS::SSM::Parameter
Expand Down
12 changes: 7 additions & 5 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
{org.clojure/clojure {:mvn/version "1.12.0"}

;; XTDB dependencies
com.xtdb/xtdb-api {:mvn/version "2.0.0-beta5"}
com.xtdb/xtdb-core {:mvn/version "2.0.0-beta5"}
;; needed only for beta5
org.jetbrains.kotlin/kotlin-reflect {:mvn/version "2.1.0"} ; added for beta5
org.jetbrains.kotlin/kotlin-stdlib-jdk8 {:mvn/version "2.1.0"}
com.xtdb/xtdb-api {:mvn/version "2.0.0-beta6"}
com.xtdb/xtdb-core {:mvn/version "2.0.0-beta6"
;; needed since beta6 introduced a protobuf dep
;; see https://github.com/xtdb/xtdb/issues/4172
:exclusions [com.google.protobuf/protobuf-java]}
;; explicit version, instead of the exclusion
com.google.protobuf/protobuf-java {:mvn/version "3.25.5"}

org.postgresql/postgresql {:mvn/version "42.7.4"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}
Expand Down
2 changes: 1 addition & 1 deletion test/cljs/xt_play/model/run_test.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[xt-play.model.tx-batch :as batch]))

(def app-db
{:version "2.0.0-beta5",
{:version "2.0.0-beta6",
:type :sql,
:query "SELECT *, _valid_from FROM docs",
::batch/list [::batch/tx5],
Expand Down

0 comments on commit 72c21ab

Please sign in to comment.