Skip to content

Commit 7ca428a

Browse files
committed
Prepare 3.2.4-1.2.0 release
1 parent f954a87 commit 7ca428a

File tree

7,502 files changed

+522579
-59437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,502 files changed

+522579
-59437
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Change Log
22

3+
## 3.2.4-1.2.0
4+
> 24 Oct 2025
5+
6+
* [Vector Search](https://kotbase.dev/current/vector-search/) ([#57](
7+
https://github.com/jeffdgr8/kotbase/pull/57)) — Couchbase Lite [3.2 API](
8+
https://docs.couchbase.com/couchbase-lite/3.2/cbl-whatsnew.html) ([#54](https://github.com/jeffdgr8/kotbase/pull/54))
9+
* [Android SDK](https://docs.couchbase.com/couchbase-lite/3.2/android/releasenotes.html#maint-3-2-4)
10+
* [Java SDK](https://docs.couchbase.com/couchbase-lite/3.2/java/releasenotes.html#maint-3-2-4)
11+
* [Objective-C SDK](https://docs.couchbase.com/couchbase-lite/3.2/objc/releasenotes.html#maint-3-2-4)
12+
* [C SDK](https://docs.couchbase.com/couchbase-lite/3.2/c/releasenotes.html#maint-3-2-4)
13+
* [Support](https://jira.issues.couchbase.com/browse/CBL-6884) 16 KB page sizes ([#47](
14+
https://github.com/jeffdgr8/kotbase/issues/47))
15+
* New log sink API ([#55](https://github.com/jeffdgr8/kotbase/pull/55))
16+
* Paging extensions now use AndroidX Paging directly ([#52](https://github.com/jeffdgr8/kotbase/pull/52))
17+
* Predictive model registration now available on Linux and Mingw platforms ([#57](
18+
https://github.com/jeffdgr8/kotbase/pull/57))
19+
* Migrate kotlinx-datetime to 0.7.1 ([#48](https://github.com/jeffdgr8/kotbase/pull/48))
20+
* `kotlinx.datetime.Instant` is now `kotlin.time.Instant` in the Kotbase API
21+
* kotlinx-datetime is no longer an API dependency
22+
* Update other dependencies
23+
* Fix some memory allocation bugs on Linux & Mingw platforms ([#58](https://github.com/jeffdgr8/kotbase/pull/58), [#60](
24+
https://github.com/jeffdgr8/kotbase/pull/60))
25+
326
## 3.1.11-1.1.2
427
> 1 Sep 2025
528

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ kotlin {
3939
sourceSets {
4040
commonMain.dependencies {
4141
// Community Edition
42-
implementation("dev.kotbase:couchbase-lite:3.1.11-1.1.2")
42+
implementation("dev.kotbase:couchbase-lite:3.2.4-1.2.0")
4343
// or Enterprise Edition
44-
implementation("dev.kotbase:couchbase-lite-ee:3.1.11-1.1.2")
44+
implementation("dev.kotbase:couchbase-lite-ee:3.2.4-1.2.0")
4545
}
4646
}
4747
}
@@ -121,9 +121,9 @@ as well as other convenience functions for composing queries, observing change `
121121

122122
```kotlin
123123
// Community Edition
124-
implementation("dev.kotbase:couchbase-lite-ktx:3.1.11-1.1.2")
124+
implementation("dev.kotbase:couchbase-lite-ktx:3.2.4-1.2.0")
125125
// or Enterprise Edition
126-
implementation("dev.kotbase:couchbase-lite-ee-ktx:3.1.11-1.1.2")
126+
implementation("dev.kotbase:couchbase-lite-ee-ktx:3.2.4-1.2.0")
127127
```
128128

129129
### Kotbase Kermit
@@ -135,9 +135,9 @@ https://kermit.touchlab.co/). Kermit can direct its logs to any number of log ou
135135

136136
```kotlin
137137
// Community Edition
138-
implementation("dev.kotbase:couchbase-lite-kermit:3.1.11-1.1.2")
138+
implementation("dev.kotbase:couchbase-lite-kermit:3.2.4-1.2.0")
139139
// or Enterprise Edition
140-
implementation("dev.kotbase:couchbase-lite-ee-kermit:3.1.11-1.1.2")
140+
implementation("dev.kotbase:couchbase-lite-ee-kermit:3.2.4-1.2.0")
141141
```
142142

143143
### Kotbase Paging
@@ -151,9 +151,9 @@ limit/offset paging queries based on a user-supplied database query.
151151

152152
```kotlin
153153
// Community Edition
154-
implementation("dev.kotbase:couchbase-lite-paging:3.1.11-1.1.2")
154+
implementation("dev.kotbase:couchbase-lite-paging:3.2.4-1.2.0")
155155
// or Enterprise Edition
156-
implementation("dev.kotbase:couchbase-lite-ee-paging:3.1.11-1.1.2")
156+
implementation("dev.kotbase:couchbase-lite-ee-paging:3.2.4-1.2.0")
157157
```
158158

159159
## Roadmap

couchbase-lite-ee-kermit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ its logs to any number of log outputs, including the console.
1111
kotlin {
1212
sourceSets {
1313
commonMain.dependencies {
14-
implementation("dev.kotbase:couchbase-lite-ee-kermit:3.1.11-1.1.2")
14+
implementation("dev.kotbase:couchbase-lite-ee-kermit:3.2.4-1.2.0")
1515
}
1616
}
1717
}

couchbase-lite-ee-ktx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ as well as other convenience functions for composing queries, observing change `
1111
kotlin {
1212
sourceSets {
1313
commonMain.dependencies {
14-
implementation("dev.kotbase:couchbase-lite-ee-ktx:3.1.11-1.1.2")
14+
implementation("dev.kotbase:couchbase-lite-ee-ktx:3.2.4-1.2.0")
1515
}
1616
}
1717
}

couchbase-lite-ee-paging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ limit/offset paging queries based on a user-supplied database query.
1313
kotlin {
1414
sourceSets {
1515
commonMain.dependencies {
16-
implementation("dev.kotbase:couchbase-lite-ee-paging:3.1.11-1.1.2")
16+
implementation("dev.kotbase:couchbase-lite-ee-paging:3.2.4-1.2.0")
1717
}
1818
}
1919
}

couchbase-lite-ee/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Kotbase core Couchbase Lite Enterprise Edition library
1010
kotlin {
1111
sourceSets {
1212
commonMain.dependencies {
13-
implementation("dev.kotbase:couchbase-lite-ee:3.1.11-1.1.2")
13+
implementation("dev.kotbase:couchbase-lite-ee:3.2.4-1.2.0")
1414
}
1515
}
1616
}

couchbase-lite-kermit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ its logs to any number of log outputs, including the console.
1111
kotlin {
1212
sourceSets {
1313
commonMain.dependencies {
14-
implementation("dev.kotbase:couchbase-lite-kermit:3.1.11-1.1.2")
14+
implementation("dev.kotbase:couchbase-lite-kermit:3.2.4-1.2.0")
1515
}
1616
}
1717
}

couchbase-lite-ktx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ as well as other convenience functions for composing queries, observing change `
1111
kotlin {
1212
sourceSets {
1313
commonMain.dependencies {
14-
implementation("dev.kotbase:couchbase-lite-ktx:3.1.11-1.1.2")
14+
implementation("dev.kotbase:couchbase-lite-ktx:3.2.4-1.2.0")
1515
}
1616
}
1717
}

couchbase-lite-paging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ limit/offset paging queries based on a user-supplied database query.
1313
kotlin {
1414
sourceSets {
1515
commonMain.dependencies {
16-
implementation("dev.kotbase:couchbase-lite-paging:3.1.11-1.1.2")
16+
implementation("dev.kotbase:couchbase-lite-paging:3.2.4-1.2.0")
1717
}
1818
}
1919
}

couchbase-lite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Kotbase core Couchbase Lite Community Edition library
1010
kotlin {
1111
sourceSets {
1212
commonMain.dependencies {
13-
implementation("dev.kotbase:couchbase-lite:3.1.11-1.1.2")
13+
implementation("dev.kotbase:couchbase-lite:3.2.4-1.2.0")
1414
}
1515
}
1616
}

0 commit comments

Comments
 (0)