Skip to content

Releases: looker-open-source/bqjdbc

v2.3.4 Release

13 Apr 20:27
c6ec9b4
Compare
Choose a tag to compare

f3480dd Adds BIGNUMERIC support

v2.3.3 Release

02 Apr 19:02
f315d07
Compare
Choose a tag to compare

Major Changes

  • Add support for labels sent along with query jobs:
    • Support default labels (set on the connection URL) that are sent with every request.
    • Support per-statement labels.

Changes

f315d07 (HEAD -> master, origin/master, origin/HEAD) Remove SNAPSHOT to start release (#82)
be77ec2 Add support for sending per-statement labels (#81)
77a72c8 Merge pull request #76 from jonathanswenson/faridzakaria/query-label
ed70a52 Catch IllegalArgumentException
48ef00c Merge branch 'master' into faridzakaria/query-label
9b75d58 Bump version to 2.3.3-SNAPSHOT

v2.3.2 Release

11 Mar 17:34
Compare
Choose a tag to compare

Major Changes

  • Minified BigQuery Client
  • Add support for custom root URL via JDBC parameter

Changes

c464ecc (HEAD -> master, origin/master, origin/HEAD) Removing SNAPSHOT to start release.
1a6b34f Add support for custom root URL via JDBC parameter (#80)
3437525 Merge pull request #78 from jonathanswenson/faridzakaria/test-fixes
5d7ef72 (origin/faridzakaria/test-fixes, faridzakaria/test-fixes) Added test for MinifiedBigquery
fef201d More dumb fixes for TimeoutTest....
7ed5baa Fixed TimeoutTest
c7fd44f Renamed test package name to better match src
a07fc07 Merge pull request #77 from jonathanswenson/faridzakaria/pretty-print
03ecb55 (origin/faridzakaria/pretty-print, faridzakaria/pretty-print) Fix a test
b95a11c Revert accidental change
cd97af8 Disable pretty printing by default
44fd37d cut snapshot 2.3.2 (#75)

Bugfix for NaN issue

16 Nov 16:31
754deff
Compare
Choose a tag to compare

Fixes a bug where a NaN in a FLOAT64 type would cause an exception in ResultSet.getObject.

Remove Catalog -> ProjectId name mangling

28 Oct 23:25
51a479a
Compare
Choose a tag to compare

Removes the translation of ProjectIds containing domain names. This was done inconsistently in the code, leading to failure to find the project in some BigQuery API calls.

Implement `getSchema` and `setSchema

26 Oct 20:35
Compare
Choose a tag to compare

Some users of this library, e.g. our internal usage of dbcp2, require getSchema/setSchema to be implemented if a schema is set on the connection.

Default artifact classifier is no longer shaded

12 Oct 22:52
Compare
Choose a tag to compare

In order to publish both the shaded & non-shade JAR, the default artifact of the project had to not have any classifier (thin).
The artifacts are now as follows:

Normal (unshaded) dependency

<dependency>
    <groupId>com.github.jonathanswenson</groupId>
    <artifactId>bqjdbc</artifactId>
    <version>...</version>
</dependency>

Shaded uber-dependency

<dependency>
    <groupId>com.github.jonathanswenson</groupId>
    <artifactId>bqjdbc</artifactId>
    <version>...</version>
    <classifier>shaded</classifier>
</dependency>

First release v2.2.11

10 Oct 20:48
Compare
Choose a tag to compare
Preparing 2.2.11 release