This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b85f71
commit 154f33a
Showing
3 changed files
with
102 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# v2.0 | ||
|
||
Moved from `reql-sqlite3` because we are now supporting multiple databases! | ||
|
||
# Breaking | ||
|
||
- Changed how Databases are initialized | ||
- You now import either `createSQLite3Database` or `createPostgreDatabase` | ||
- String Datum `includes` function has been renamed to `substr` to not be confused with Array functions | ||
|
||
# Changes | ||
|
||
- :tada: Added PostgreSQL support! :tada: | ||
- `expr` can now be imported by anyone to create "static" expressions, for use in filters or otherwise | ||
- Added the ability to fork statements | ||
- Statements are saved to the initial variable in order to save memory and processing power in creating | ||
tons of new objects. The query queue will only be emptied on an action (i.e. `run`, `delete`, etc), but if | ||
you want to keep it then use `fork()` to return a clone and `run()` off of that instead. | ||
- Added Array abilities to Datums (i.e. not just streams now) | ||
- `count` | ||
- `limit` | ||
- `difference` | ||
- `contains` | ||
- `filter` | ||
- `pluck` | ||
- `map` | ||
- Added the ability to close Database connections (`db.close()`); | ||
|
||
# v1.0 | ||
|
||
Initial Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters