Skip to content

Commit

Permalink
πŸ”– Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Aug 9, 2021
1 parent 50b75c6 commit 8827a2d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

<a name="1.1.0"></a>
## 1.1.0 (2021-08-09)

### Changed

- ♻️ Do not auto convert blobs to strings [[50b75c6](https://github.com/Tomas2D/knex-firebird-dialect/commit/50b75c6934ed8c8737f970f85f30adaf1f770f51)]

### Miscellaneous

- πŸ—‘οΈ Remove unused dependencies [[dbf76ae](https://github.com/Tomas2D/knex-firebird-dialect/commit/dbf76ae1cfafcb292ad4e668e4deecc14557104b)]


<a name="1.0.1"></a>
## 1.0.1 (2021-08-06)

Expand Down
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,23 @@
This library serves as dialect (client) for [Knex.js](https://github.com/knex/knex) (A SQL query builder).

Purpose of doing is to replace old unmaintained libraries, this one is based on [igorklopov/firebird-knex](https://github.com/igorklopov/firebird-knex).
Under the hood there is a [Firebird driver for Node.JS](https://github.com/hgourvest/node-firebird).

## πŸš€ Usage

This snippet shows basic setup, for more look at `tests` folder.
Start with installing the package with your favorite package manager.

```
yarn install knex-firebird-dialect
```

or

```
npm install knex-firebird-dialect
```

Snippet below shows basic setup.

```javascript
import knexLib from "knex";
Expand All @@ -26,3 +39,5 @@ const knexConfig = {
debug: false,
};
```

For more look at the `tests` folder.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knex-firebird-dialect",
"version": "1.0.1",
"version": "1.1.0",
"description": "Knex dialect for Firebird",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 8827a2d

Please sign in to comment.