-
Notifications
You must be signed in to change notification settings - Fork 12
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
Showing
12 changed files
with
269 additions
and
289 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,41 @@ | ||
{% | ||
include-markdown "../CHANGELOG.md" | ||
%} | ||
--- | ||
title: Changelog | ||
--- | ||
|
||
## 5.1.0 | ||
|
||
- Added get_oldest_timestamp call to chunkedgraph | ||
|
||
## 5.0.1 | ||
|
||
- Fixed bug with desired_resolution being set at the client level | ||
was being ignored in >5.0.0 | ||
|
||
## 5.0.0 | ||
|
||
- Added support for the new CAVE Materialization 3.0 API | ||
Includes support for the new materialization API, which allows for | ||
server side conversion of the units of position, and ensures that | ||
all positions are returned with the same units, even after joins. | ||
- Added support for querying databases that were materialized without merging | ||
tables together. This will allow for faster materializations. | ||
- Removed support for LiveLive query from the Materialization 2.0 API client. | ||
Note.. <5.0.0 clients interacting with MaterializationEngine >4.7.0 servers will | ||
use live live query but will doubly convert the units of position if you ask | ||
for a desired resolution, as the old client will also do a conversion server side. | ||
- Fixed interaction with api version querying of servers from individual | ||
clients to work with verify=False. (useful for testing) | ||
- Stored infromation from client about mapping between dataframe and table names | ||
and original column names. | ||
- Added support for suffixes and select columns to be passed by dictionary rather than list | ||
making the selection an application of suffixes more explicit when there are collisions | ||
between column names in joined tables. | ||
|
||
--- | ||
|
||
## Older Upgrade Notes | ||
|
||
Change all select_column calls to pass dictionaries rather than lists. | ||
Change all suffix calls to pass dictionaries rather than lists. | ||
Advocate for your server administrator to upgrade to MaterializationEngine 4.7.0 or later, | ||
so you can use the new MaterializationEngine 3.0 API and client. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: client.auth | ||
--- | ||
|
||
::: caveclient.auth.AuthClient | ||
options: | ||
heading_level: 2 | ||
show_bases: false | ||
filters: ["!__init__"] | ||
merge_init_into_class: false |
Oops, something went wrong.