Skip to content

Commit

Permalink
v0.3.19 Added sql:memory default connector
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeares committed Aug 31, 2021
1 parent 842f362 commit 197e502
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/mkdocs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ If you'd like to incorporate Meerschaum into your project, head over to [docs.me
</div>
</div>
<div class="grid-child">
<p>If you're looking to use Meerschaum in your business and would like some help, you can commission me for my consulting services.</p><p>Additionally, in case you're hiring a remote data engineer, I'm open to offers. Reach out on <a href="https://linkedin.com/in/bennettmeares">LinkedIn</a> to get in touch.</p>
<p>If you're looking to use Meerschaum in your business and would like some help, you can commission me for my consulting services. Reach out on <a href="https://linkedin.com/in/bennettmeares">LinkedIn</a> to get in touch.</p>
<div style="display: flex; justify-content: center;">
<!-- <div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="light" data-type="HORIZONTAL" data-vanity="bennettmeares" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://www.linkedin.com/in/bennettmeares?trk=profile-badge">Bennett Meares</a></div> -->

Expand Down
12 changes: 12 additions & 0 deletions docs/mkdocs/news/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ This changelog was not introduced until v0.2.12, so many of the critical release
## 0.3.x Releases
Version 0.3.0 introduced the web interface and continued the focus on the user experience. This is the current release cycle, so future features will be updated below.

### v0.3.12 — v0.3.19
- **Mostly small bugfixes.**
Docker-compose fixes, `params` in `get_pipe_rowcount()`, unique index names for pipes.
- **Added `newest` flag to `pipe.get_sync_time()`.**
Setting `newest=False` will return the oldest time instead of the newest.
- **Migrated `filter_existing` to a member of `Pipe`.**
Although the current implementation for APIConnectors offloads filtering to the SQLConnector, soon filtering will take place locally to save bandwidth.
- **Updated Docker base image.**
Bumped base image from Python 3.7 on Debian Buster Slim to Python 3.9 on Debian Bullseye Slim. Also removed ARM images for the sake of passing builds and reducing build times (e.g. DuckDB fails to compile with QEMU).
- **Improved DuckDB support.**
`sql:memory` is now the default in-memory DuckDB instance.

### v0.3.1 – v0.3.11
- **Improved Microsoft SQL Server support.**
- **Added plugins page to the dashboard.**
Expand Down
4 changes: 4 additions & 0 deletions meerschaum/config/_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
'local' : {
'flavor' : 'sqlite',
},
'memory': {
'flavor' : 'duckdb',
'database' : ':memory:',
},
# 'mrsm' : {
# 'host' : 'mrsm.io',
# },
Expand Down

0 comments on commit 197e502

Please sign in to comment.