Implement Couchbase Lite 4.1 for Linux and Windows - #70
Open
jeffdgr8 wants to merge 1 commit into
Open
Conversation
Vendors libcblite 4.1.0 (CE and EE) for linux x86_64/arm64 and windows x86_64, replacing 3.2.4, and updates the version catalog. linuxMingw actuals updated to 4.1: - CollectionConfiguration bound to its Collection; fromCollections - ReplicatorConfiguration built from collection configurations with same-database validation matching the other platforms - Document.timestamp (CBLDocument_Timestamp, new in 4.0) - Replicator.correlationId (CBLReplicator_CorrelationID, new in 4.1) - Replicator pending-document APIs use the re-signed collection-scoped CBLReplicator_PendingDocumentIDs/IsDocumentPending (the *2 variants are deprecated in 4.x) - LogDomain adds PEER_DISCOVERY and MULTIPEER (no C SDK equivalents; never produced on these platforms) - KeyUsage actual; TLSIdentity.createIdentity(Set<KeyUsage>, ...) (still unsupported at runtime on these platforms) - Listener configurations are collections-only Removes the private CBLDocument_Generation declaration from libcblite.def: the symbol is no longer exported by libcblite 4.x (replaced by the public timestamp API). Verified: linuxX64/linuxArm64/mingwX64 main and test sources compile and test binaries link against libcblite 4.1.0. Tests require Linux and Windows hosts to run. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements the Couchbase Lite 4.1 common API for Linux and Windows: vendors libcblite 4.1.0 (CE and EE) for linux x86_64/arm64 and windows x86_64.
Document.timestamp(CBLDocument_Timestamp),Replicator.correlationId(CBLReplicator_CorrelationID), re-signed collection-scoped pending-document APIsLogDomain.PEER_DISCOVERY/MULTIPEERentries exist but are never produced (no C SDK equivalents)CBLDocument_Generationdeclaration from libcblite.def (symbol no longer exported by 4.x; replaced by the public timestamp API)Verified by compiling and linking the linuxX64/mingwX64 test binaries; test execution requires Linux and Windows hosts.
🤖 Generated with Claude Code