Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prep 17.0.1 release #144

Merged
merged 1 commit into from
Mar 12, 2018
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Change Log
## 17.0.1 - 2018-03-12
Note: this releases fixes a serious regression introduced in 16.7.0
### Enhancements:
- Add connection max lifetime after start to connection pool

### Bug Fixes:
- Fix transaction batching/reordering (introduced in 16.7.0)
- Fix default Sybase IQ update via insert threshold
- Fix running tests in different timezones

## 17.0.0 - 2018-03-02
### Enhancements:
- Eclipse Collections integration. Please see [migration documentation](https://github.com/goldmansachs/reladomo/blob/master/reladomo/src/doc/GSC_TO_EC_MIGRATION_GUIDE.md)
Expand Down
2 changes: 1 addition & 1 deletion build/reladomo-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
under the License.
-->
<project name="mithra-config" default="determine-jdk">
<property name="reladomo.version" value="17.0.0"/>
<property name="reladomo.version" value="17.0.1"/>
<property name="snapshot" value=""/>
</project>
2 changes: 1 addition & 1 deletion build/sign-release.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
setlocal

set VER=17.0.0
set VER=17.0.1

cd ../target
gpg -ab reladomo-%VER%-javadoc.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ public Object executeTransaction(MithraTransaction tx) throws Throwable {
return null;
}
});

sleep(100);
MithraManagerProvider.getMithraManager().executeTransactionalCommand(new TransactionalCommand<Object>() {
@Override
public Object executeTransaction(MithraTransaction tx) throws Throwable {
Expand Down