Skip to content

Commit

Permalink
Merge pull request #233 from mohrezaei/master
Browse files Browse the repository at this point in the history
prepare 18.0.0 release
  • Loading branch information
mohrezaei authored Sep 6, 2020
2 parents f8566d1 + b426599 commit b61739e
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 10 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Change Log
## 18.0.0 - 2020-09-06
### Enhancements:
- Switch to jdk8. Reladomo's mininum supported jdk is now JDK 8
- Remove GSC collection. Eclipse collections is now the only supported part of the interface.
- Initial implementation of GraphQL API
- Change Strings to be quoted in the toString() representation of in-clause operations.
- Only run off heap free thread when necessary.

### Bug Fixes:
- Fix parameter tokenization with comma
- Correct limit row count for MariaDB and Postgres.
- Implement equals and hashCode() on Timestamp-part and Date-part Calculators.
- Fix a bug in wild card expression parsing

## 17.1.4 - 2019-11-28
### Bug Fixes:
- Fix json deserialization for primitive attributes with "null"
Expand Down
40 changes: 32 additions & 8 deletions build/pom-templates/pom-reladomo-graphql.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,44 @@ under the License.
<parent>
<artifactId>graphql</artifactId>
<groupId>com.goldmansachs.reladomo</groupId>
<version>1.0-SNAPSHOT</version>
<version>@reladomo.version@</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>graphql-reladomo</artifactId>
<artifactId>reladomo-graphql</artifactId>

<name>Reladomo Integration For GraphQL</name>
<description>Reladomo integration for GraphQL</description>
<url>https://github.com/goldmansachs/reladomo</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<name>Victor Borisoff</name>
<email>[email protected]</email>
<organization>Goldman Sachs</organization>
</developer>
</developers>

<scm>
<url>https://github.com/goldmansachs/reladomo</url>
<connection>scm:git:https://github.com/goldmansachs/reladomo.git</connection>
<developerConnection>scm:git:https://github.com/goldmansachs/reladomo.git</developerConnection>
</scm>

<dependencies>
<!-- https://mvnrepository.com/artifact/com.graphql-java/graphql-java -->
<dependency>
<groupId>com.goldmansachs.reladomo</groupId>
<artifactId>reladomo</artifactId>
<version>@reladomo.version@</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
Expand Down Expand Up @@ -64,12 +94,6 @@ under the License.
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.goldmansachs.reladomo</groupId>
<artifactId>reladomo</artifactId>
<version>${reladomo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion build/sign-release.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
setlocal

set VER=17.1.4
set VER=18.0.0

cd ../target
gpg -ab reladomo-%VER%-javadoc.jar
Expand All @@ -23,6 +23,10 @@ gpg -ab reladomo-xa-%VER%-javadoc.jar
gpg -ab reladomo-xa-%VER%-sources.jar
gpg -ab reladomo-xa-%VER%.jar
gpg -ab reladomo-xa-%VER%.pom
gpg -ab reladomo-graphql-%VER%-javadoc.jar
gpg -ab reladomo-graphql-%VER%-sources.jar
gpg -ab reladomo-graphql-%VER%.jar
gpg -ab reladomo-graphql-%VER%.pom
gpg -ab reladomogen-%VER%-javadoc.jar
gpg -ab reladomogen-%VER%-sources.jar
gpg -ab reladomogen-%VER%.jar
Expand Down
6 changes: 5 additions & 1 deletion build/sign-release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

RELADOMO_VERSION=17.1.0
RELADOMO_VERSION=18.0.0

echo Enter passphrase:
read -s PASSPHRASE
Expand All @@ -26,6 +26,10 @@ gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-xa-$RELADOMO_VERSION-jav
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-xa-$RELADOMO_VERSION-sources.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-xa-$RELADOMO_VERSION.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-xa-$RELADOMO_VERSION.pom
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-graphql-$RELADOMO_VERSION-javadoc.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-graphql-$RELADOMO_VERSION-sources.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-graphql-$RELADOMO_VERSION.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomo-graphql-$RELADOMO_VERSION.pom
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomogen-$RELADOMO_VERSION-javadoc.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomogen-$RELADOMO_VERSION-sources.jar
gpg --batch --yes --passphrase $PASSPHRASE -ab reladomogen-$RELADOMO_VERSION.jar
Expand Down

0 comments on commit b61739e

Please sign in to comment.