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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.11.2 (unreleased)
## 1.11.2

- Don't attempt to create WebSocket connections on watchOS.
- Update default SQLite cache size to 50MB, this was previously erroneously set to 200MB
Expand All @@ -9,6 +9,7 @@
Implementers of `SQLiteConnectionPool` should dispatch blocking SQLite callbacks to an
appropriate dispatcher such as `Dispatchers.IO`. This should prevent the worker pool from
expanding when large numbers of concurrent operations are requested.
- Skip creating `ps_crud` entries when clearing raw tables.

## 1.11.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
repositoryURL = "https://github.com/powersync-ja/powersync-sqlite-core-swift.git";
requirement = {
kind = exactVersion;
version = 0.4.11;
version = 0.4.12;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ development=true
RELEASE_SIGNING_ENABLED=true
# Library config
GROUP=com.powersync
LIBRARY_VERSION=1.11.1
LIBRARY_VERSION=1.11.2
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
# POM
POM_URL=https://github.com/powersync-ja/powersync-kotlin/
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serialization = "1.10.0"
kotlinx-io = "0.8.0"
ktor = "3.4.0"
uuid = "0.8.4"
powersync-core = "0.4.11"
powersync-core = "0.4.12"
rsocket = "0.20.0"
turbine = "1.2.1"
kotest = "5.9.1" # we can't upgrade to 6.x because that requires Java 11 or above (we need Java 8 support)
Expand Down
Loading