Skip to content

Releases: GlareDB/glaredb

v0.9.5

16 Aug 11:24
v0.9.5
2e8715f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.4...v0.9.5

v0.9.4

27 Jun 19:11
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.3...v0.9.4

v0.9.3

20 May 15:51
c7befa9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.2...v0.9.3

v0.9.2

21 Mar 15:40
v0.9.2
8d8aefa
Compare
Choose a tag to compare

v0.9.2 is a point release of mostly fixes and chores.

Installing or Updating

CLI

To install or update just run the following command in the directory you want
the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

Full Changelog: v0.9.1...v0.9.2

v0.9.1

05 Mar 20:52
9c27dd0
Compare
Choose a tag to compare

v0.9.1 is a point release of mostly fixes and chores.

Notable Improvements

  • cloud_upload can now be used in hybrid and remote contexts, such as with the CLI or Python and Node.js language bindings
  • You can now create tables from excel
CREATE EXTERNAL TABLE t FROM excel OPTIONS (
    location = '<location>',     -- required
    has_header = 'true',         -- optional, 'true' or 'false'
    sheet_name = '<sheet_name>'  -- optional, defaults to first sheet in the workbook
);

Installing or Updating

CLI

To install or update just run the following command in the directory you want
the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.9.1

v0.9.0

27 Feb 22:51
v0.9.0
8a38470
Compare
Choose a tag to compare

Highlights

For highlights and details since 0.8, check out our full announcement: https://glaredb.com/blog/announcing-v0.9.0 🎉 !

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

Full Changelog: v0.8.5...v0.9.0

v0.8.5

14 Feb 20:26
v0.8.5
8daffa7
Compare
Choose a tag to compare

v0.8.5 is a point release of mostly fixes and chores

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

Full Changelog: v0.8.4...v0.8.5

v0.8.4

08 Feb 16:49
v0.8.4
6c1a83f
Compare
Choose a tag to compare

v0.8.4 is a point release of mainly fixes and chores, notably with some performance improvements (see: #2584, #2601). Refer to the commits below for more detail.

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb --upgrade

What's Changed

New Contributors

Full Changelog: v0.8.3...v0.8.4

v0.8.3

31 Jan 22:11
v0.8.3
f059fd9
Compare
Choose a tag to compare

v0.8.3 is a point release of mainly fixes and chores. Refer to the commits below for more detail.

Notable fixes

  • Postgres: Fixed an issue reading 0 timestamps (0001-01-01 00:00:00)

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

Full Changelog: v0.8.2...v0.8.3

v0.8.2

31 Jan 19:20
v0.8.2
37fc14a
Compare
Choose a tag to compare
v0.8.2 Pre-release
Pre-release

v0.8.2 is a point release of fixes and chores. Refer to the commits below for more detail.

Cassandra Update

We now support Cassandra data sources with PasswordAuthenticator.

-- Add an external table
CREATE EXTERNAL TABLE my_cassandra_table FROM cassandra OPTIONS (
    host = '<host>',
    keyspace = '<keyspace>',
    table = '<table>',
    username = '[username]',
    password = '[password]'
);

-- Add an external database
CREATE EXTERNAL DATABASE my_cassandra_db FROM cassandra OPTIONS (
    host = '<hostname>:<port>',
    username = '[username]',
    password = '[passowrd]'
);

-- Table function
SELECT count(*) FROM read_cassandra('<host>', '<keyspace>', '<table>', '[username]', '[password]');

Installing or Updating

CLI

To install or update just run the following command in the directory you want the binary:

curl https://glaredb.com/install.sh | sh

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

Full Changelog: v0.8.1...v0.8.2