summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-04-04 16:34:33 -0300
committerTomás Touceda <chiiph@leap.se>2014-04-04 16:34:33 -0300
commita3fed4d42ab4a7be7bc7ebe86b35805ac73d62de (patch)
tree8c69733f1f8a83ac83e40bf7e522a5fe8eae9b50 /client
parenteb6af9fd66d0c69af6735ffbd08fe86c3ccf313a (diff)
Fold in changes
Diffstat (limited to 'client')
-rw-r--r--client/changes/bug_4435_catch-lock-timeout-exception1
-rw-r--r--client/changes/bug_5139-interface-error2
-rw-r--r--client/changes/bug_5208_support_socket_261
-rw-r--r--client/changes/bug_return-always-unicode1
-rw-r--r--client/changes/bug_reuse-http-connection2
-rw-r--r--client/changes/bug_unlock_shared_if_fails2
-rw-r--r--client/changes/feature_4451_avoid_concurrent_syncs2
-rw-r--r--client/changes/feature_4616_sqlite_count_by_index1
-rw-r--r--client/changes/feature_5302_do-not-create-user-db-when-syncing2
-rw-r--r--client/changes/feature_rw_lock_client_ops1
-rw-r--r--client/changes/feature_sqlite-optimization-pragmas1
11 files changed, 0 insertions, 16 deletions
diff --git a/client/changes/bug_4435_catch-lock-timeout-exception b/client/changes/bug_4435_catch-lock-timeout-exception
deleted file mode 100644
index 12c05685..00000000
--- a/client/changes/bug_4435_catch-lock-timeout-exception
+++ /dev/null
@@ -1 +0,0 @@
- o Catch lock timeout exception (#4435).
diff --git a/client/changes/bug_5139-interface-error b/client/changes/bug_5139-interface-error
deleted file mode 100644
index 9127e70b..00000000
--- a/client/changes/bug_5139-interface-error
+++ /dev/null
@@ -1,2 +0,0 @@
-o Add lock for create_doc and update_indexes call,
- prevents concurrent access to the db. Closes #5139.
diff --git a/client/changes/bug_5208_support_socket_26 b/client/changes/bug_5208_support_socket_26
deleted file mode 100644
index b44d1d4e..00000000
--- a/client/changes/bug_5208_support_socket_26
+++ /dev/null
@@ -1 +0,0 @@
- o Back-compatibility for socket.create_connection interface in 2.6. Closes: #5208
diff --git a/client/changes/bug_return-always-unicode b/client/changes/bug_return-always-unicode
deleted file mode 100644
index f4ee51ed..00000000
--- a/client/changes/bug_return-always-unicode
+++ /dev/null
@@ -1 +0,0 @@
- o Always return unicode in helper method, even on UnicodeError. Related to #4998.
diff --git a/client/changes/bug_reuse-http-connection b/client/changes/bug_reuse-http-connection
deleted file mode 100644
index c6cdd9b4..00000000
--- a/client/changes/bug_reuse-http-connection
+++ /dev/null
@@ -1,2 +0,0 @@
- o Fix a bug in soledad.client.sqlcipher by which we were creating
- a new connection for each sync.
diff --git a/client/changes/bug_unlock_shared_if_fails b/client/changes/bug_unlock_shared_if_fails
deleted file mode 100644
index fc5716e4..00000000
--- a/client/changes/bug_unlock_shared_if_fails
+++ /dev/null
@@ -1,2 +0,0 @@
- o Unlock shared_db if anything fails in the bootstrap
- sequence. Fixes #4702. \ No newline at end of file
diff --git a/client/changes/feature_4451_avoid_concurrent_syncs b/client/changes/feature_4451_avoid_concurrent_syncs
deleted file mode 100644
index 04a2c4df..00000000
--- a/client/changes/feature_4451_avoid_concurrent_syncs
+++ /dev/null
@@ -1,2 +0,0 @@
- o Avoid concurrent syncs for the same account, but allow for distinct
- accounts (4451).
diff --git a/client/changes/feature_4616_sqlite_count_by_index b/client/changes/feature_4616_sqlite_count_by_index
deleted file mode 100644
index c7819d38..00000000
--- a/client/changes/feature_4616_sqlite_count_by_index
+++ /dev/null
@@ -1 +0,0 @@
- o Adds a get_count_by_index to sqlcipher u1db backend. Related to: #4616
diff --git a/client/changes/feature_5302_do-not-create-user-db-when-syncing b/client/changes/feature_5302_do-not-create-user-db-when-syncing
deleted file mode 100644
index c3270ab1..00000000
--- a/client/changes/feature_5302_do-not-create-user-db-when-syncing
+++ /dev/null
@@ -1,2 +0,0 @@
- o Do not autocreate remote user database when syncing. Tapicero should make
- sure that that db is created when the user is created. Closes #5302.
diff --git a/client/changes/feature_rw_lock_client_ops b/client/changes/feature_rw_lock_client_ops
deleted file mode 100644
index 1c1ab446..00000000
--- a/client/changes/feature_rw_lock_client_ops
+++ /dev/null
@@ -1 +0,0 @@
- o Add a read-write lock for all client operations. Addresses: #4972
diff --git a/client/changes/feature_sqlite-optimization-pragmas b/client/changes/feature_sqlite-optimization-pragmas
deleted file mode 100644
index 7a35f005..00000000
--- a/client/changes/feature_sqlite-optimization-pragmas
+++ /dev/null
@@ -1 +0,0 @@
- o Add sync=off and tem_store=mem to soledad client, for optimization.