Skip to content

Feature/version check #26

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

Merged
merged 20 commits into from
Nov 10, 2017
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9ce25cb
Adding orai18n to the dependencies
viniciusam Oct 26, 2017
817068e
Close reporters if any unexpected errors occurred while running tests
viniciusam Oct 29, 2017
f930370
Merge pull request #24 from utPLSQL/bugfix/orai18n
viniciusam Oct 29, 2017
a1113b8
Simple approach towards checking version compability
Oct 29, 2017
c4c6e08
Merge branch 'feature/version_check' of https://github.com/utPLSQL/ut…
Nov 4, 2017
23d3dae
Merge remote-tracking branch 'upstream/develop' into feature/version_…
Nov 4, 2017
9e7fdd2
Introduced new Version-class to parse version-string information
Nov 5, 2017
4fbda90
Introduced DatabaseNotComptabileException
Nov 5, 2017
f0d6916
Changed Version-number or API to Framework-number
Nov 5, 2017
4ec2b90
Started with compatibility support
Nov 8, 2017
09eeff4
Very simple compatibility implementation
Nov 8, 2017
51ac9db
Merge pull request #25 from utPLSQL/bugfix/close_reporters_on_error
viniciusam Nov 8, 2017
b31a2e5
Merge branch 'develop' of https://github.com/utPLSQL/utPLSQL-java-api…
Nov 8, 2017
c73ccab
Merge with latest develop and bugfix
Nov 8, 2017
9c1daed
Include original error reason when Compatibility-check fails
pesse Nov 9, 2017
aed5dfe
Change travis to use 3.0.4 release of framework
pesse Nov 9, 2017
17bf456
Possible typo
pesse Nov 9, 2017
7a469d4
We of course should copy the .tar.gz and untar it before doing stuff
pesse Nov 9, 2017
6b4d2af
Included possibility to skip CompatibilityCheck
pesse Nov 9, 2017
ec81b5b
Refactoring and changing DatabaseNotCompatibleException
pesse Nov 10, 2017
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
Prev Previous commit
Next Next commit
Possible typo
  • Loading branch information
pesse authored and Samuel Nitsche committed Nov 9, 2017
commit 17bf456b27b6393cacdac0cc8e1999bb1b509536
6 changes: 3 additions & 3 deletions .travis/install_utplsql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ set -ev
cd $(dirname $(readlink -f $0))

# Download the specified version of utPLSQL.
UTPLSQL_VERSION="v3.0.4"
UTPLSQL_FILE="utPLSQL"
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"
UTPLSQL_VERSION="v3.0.4"
UTPLSQL_FILE="utPLSQL"
curl -L -O "https://github.com/utPLSQL/utPLSQL/releases/download/$UTPLSQL_VERSION/$UTPLSQL_FILE.tar.gz"

# Download develop branch of utPLSQL.
#UTPLSQL_VERSION="develop"
Expand Down