-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from derek10cloud/improve-macos-compatibility
fix: Enhance platform check for stackql installation(macOS)
- Loading branch information
Showing
7 changed files
with
124 additions
and
90 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 |
---|---|---|
@@ -1,166 +1,173 @@ | ||
# Changelog | ||
|
||
## v3.6.5 (2024-09-19) | ||
|
||
### Bug Fixes | ||
|
||
- Fix(MacOS): Enhanced platform check for stackql installation | ||
- Fix(Test Code): Removed loading of `test.env` in test execution script and Add mocking logic for `pystackql.StackQL`'s methods. | ||
|
||
## v3.6.4 (2024-07-17) | ||
|
||
### Updates | ||
|
||
* added dataflow dependency arguments | ||
- added dataflow dependency arguments | ||
|
||
## v3.6.3 (2024-06-22) | ||
|
||
### Updates | ||
|
||
* build updates | ||
- build updates | ||
|
||
## v3.6.2 (2024-05-06) | ||
|
||
### Updates | ||
|
||
* added `rowsaffected` to dict response for `executeStmt` | ||
- added `rowsaffected` to dict response for `executeStmt` | ||
|
||
## v3.6.1 (2024-04-18) | ||
|
||
### Updates | ||
|
||
* modified dict response for `executeStmt` | ||
* modified error response for `execute`, should never return `None` | ||
- modified dict response for `executeStmt` | ||
- modified error response for `execute`, should never return `None` | ||
|
||
## v3.5.4 (2024-04-11) | ||
|
||
### Updates | ||
|
||
* added `suppress_errors` argument to the `execute` function | ||
- added `suppress_errors` argument to the `execute` function | ||
|
||
## v3.5.3 (2024-04-08) | ||
|
||
### Updates | ||
|
||
* added `backend_storage_mode` and `backend_file_storage_location` constructor args for specifying a file based backend (not applicable in `server_mode`) | ||
- added `backend_storage_mode` and `backend_file_storage_location` constructor args for specifying a file based backend (not applicable in `server_mode`) | ||
|
||
## v3.5.2 (2024-03-21) | ||
|
||
### Updates | ||
|
||
* added `custom_registry` constructor arg for specifying a non-default registry | ||
- added `custom_registry` constructor arg for specifying a non-default registry | ||
|
||
## v3.5.1 (2024-03-15) | ||
|
||
### Updates | ||
|
||
* included `pandas` and `IPython` install requirements | ||
* optional required import of `psycopg2` only if in `server_mode` | ||
- included `pandas` and `IPython` install requirements | ||
- optional required import of `psycopg2` only if in `server_mode` | ||
|
||
## v3.2.5 (2023-12-07) | ||
|
||
### Updates | ||
|
||
* included `app_root` and `execution_concurrency_limit` options in `StackQL` constructor | ||
- included `app_root` and `execution_concurrency_limit` options in `StackQL` constructor | ||
|
||
## v3.2.4 (2023-10-24) | ||
|
||
### Updates | ||
|
||
* implemented non `server_mode` magic extension | ||
* updated dataframe output for statements | ||
* `pandas` type updates | ||
* updated class parameters | ||
* added additional tests | ||
* bin path defaults for codespaces notebooks | ||
- implemented non `server_mode` magic extension | ||
- updated dataframe output for statements | ||
- `pandas` type updates | ||
- updated class parameters | ||
- added additional tests | ||
- bin path defaults for codespaces notebooks | ||
|
||
## v3.0.0 (2023-10-11) | ||
|
||
### Updates | ||
|
||
* added `StackqlMagic` class for `jupyter`, `IPython` integration | ||
* `server_mode` is now used to connect to a `stackql` server process using `pyscopg2` | ||
* added additional tests | ||
- added `StackqlMagic` class for `jupyter`, `IPython` integration | ||
- `server_mode` is now used to connect to a `stackql` server process using `pyscopg2` | ||
- added additional tests | ||
|
||
## v2.0.0 (2023-08-15) | ||
|
||
### Updates | ||
|
||
* added `executeQueriesAsync` stackql class method | ||
- added `executeQueriesAsync` stackql class method | ||
|
||
## v1.5.0 (2023-04-04) | ||
|
||
### Updates | ||
|
||
* added `server_mode` to run a background stackql server process | ||
- added `server_mode` to run a background stackql server process | ||
|
||
## v1.0.2 (2023-02-23) | ||
|
||
### Updates | ||
|
||
* enabled custom `download_dir` argument | ||
- enabled custom `download_dir` argument | ||
|
||
## v1.0.1 (2023-02-23) | ||
|
||
### Minor updates | ||
|
||
* updated `setup.py` | ||
- updated `setup.py` | ||
|
||
## v1.0.0 (2023-02-22) | ||
|
||
### Refactor | ||
|
||
* refactored package | ||
* added support for `kwargs` for the `StackQL` constructor | ||
* added `setup.py` | ||
* added `docs` using `sphinx` | ||
* added additional tests | ||
- refactored package | ||
- added support for `kwargs` for the `StackQL` constructor | ||
- added `setup.py` | ||
- added `docs` using `sphinx` | ||
- added additional tests | ||
|
||
## v0.9.0 (2022-06-06) | ||
|
||
### Bug Fixes | ||
|
||
* added exception handling | ||
- added exception handling | ||
|
||
## v0.5.0 (2022-06-03) | ||
|
||
### Bug Fixes | ||
|
||
* added local registry support | ||
* updated docs | ||
- added local registry support | ||
- updated docs | ||
|
||
## v0.4.1 (2022-05-31) | ||
|
||
### Bug Fixes | ||
|
||
* added `str` handling | ||
* updated docs | ||
- added `str` handling | ||
- updated docs | ||
|
||
## v0.4.0 (2022-02-08) | ||
|
||
### Updates | ||
|
||
* updated `version` output | ||
* updated docs | ||
- updated `version` output | ||
- updated docs | ||
|
||
## v0.3.0 (2022-02-07) | ||
|
||
### Initial release as `pystackql` | ||
|
||
* added `auth` switch | ||
* converted `byte` output to `str` | ||
- added `auth` switch | ||
- converted `byte` output to `str` | ||
|
||
## v0.2.0 (2021-07-19) | ||
|
||
### Updates to `pyinfraql` | ||
|
||
* added `version` method | ||
* updates to accept `None` for arguments | ||
* updated docs | ||
- added `version` method | ||
- updates to accept `None` for arguments | ||
- updated docs | ||
|
||
## v0.1.1 (2021-07-16) | ||
|
||
### Updates to `pyinfraql` | ||
|
||
* added `dbfilepath` argument | ||
- added `dbfilepath` argument | ||
|
||
## v0.1.0 (2021-02-15) | ||
|
||
### Initial Release (as `pyinfraql`) | ||
|
||
* class constructor for `pyinfraql` | ||
* support for `google` provider | ||
* support for integration with `pandas`, `matplotlib` and `jupyter` | ||
- class constructor for `pyinfraql` | ||
- support for `google` provider | ||
- support for integration with `pandas`, `matplotlib` and `jupyter` |
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
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,2 @@ | ||
#!/bin/bash | ||
. tests/creds/env_vars/test.env | ||
python3 -m tests.pystackql_tests | ||
python3 -m tests.pystackql_tests |
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
Oops, something went wrong.