iudex-da 1.2.b.1-java → 1.2.b.2-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.rdoc CHANGED
@@ -1,3 +1,15 @@
1
+ === 1.2.b.2 (2012-6-23)
2
+ * Add configurable transaction isolation level to ContentWriter,
3
+ ContentUpdater, and UpdateFilter. Change default level from
4
+ READ_COMMITED to REPEATABLE_READ where updater SELECT FOR UPDATE
5
+ locking works as intended, by delaying or rolling back overlapping
6
+ transactions as with PostgreSQL "could not serialize access due to
7
+ concurrent update" or "deadlock detected."
8
+ * Add retry loop to UpdateFilter with configurable retryCount (default
9
+ 3) and logging. Warning: It is now possible for UpdateFilter
10
+ sub-chains to be executed repeatedly, though not at least in the most
11
+ common rollback/retry case.
12
+
1
13
  === 1.2.b.1 (2012-5-31)
2
14
  * Use explicit UPDATE statements. This is ~10x faster than cursor
3
15
  updateRow, at least with latest updates.
data/Manifest.txt CHANGED
@@ -33,4 +33,4 @@ test/setup.rb
33
33
  test/test_migrate.rb
34
34
  test/test_poll_work.rb
35
35
  test/test_pool_factory.rb
36
- lib/iudex-da/iudex-da-1.2.b.1.jar
36
+ lib/iudex-da/iudex-da-1.2.b.2.jar
data/lib/iudex-da/base.rb CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  module Iudex
18
18
  module DA
19
- VERSION = '1.2.b.1'
19
+ VERSION = '1.2.b.2'
20
20
 
21
21
  LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
22
22
  end
Binary file
data/pom.xml CHANGED
@@ -5,7 +5,7 @@
5
5
  <groupId>iudex</groupId>
6
6
  <artifactId>iudex-da</artifactId>
7
7
  <packaging>jar</packaging>
8
- <version>1.2.b.1</version>
8
+ <version>1.2.b.2</version>
9
9
  <name>Iudex Data Access</name>
10
10
 
11
11
  <parent>
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: iudex-da
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 4
5
- version: 1.2.b.1
5
+ version: 1.2.b.2
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-06-01 00:00:00 Z
13
+ date: 2012-06-23 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: iudex-core
@@ -160,7 +160,7 @@ files:
160
160
  - test/test_migrate.rb
161
161
  - test/test_poll_work.rb
162
162
  - test/test_pool_factory.rb
163
- - lib/iudex-da/iudex-da-1.2.b.1.jar
163
+ - lib/iudex-da/iudex-da-1.2.b.2.jar
164
164
  homepage: http://github.com/dekellum/iudex
165
165
  licenses: []
166
166
 
Binary file