Skip to content
Snippets Groups Projects
Verified Commit f957cdc7 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DOC: update CHANGELOG

parent 9ac7b52a
No related branches found
No related tags found
2 merge requests!79Release 0.10.0,!75F http proxy
Pipeline #29960 failed
...@@ -9,11 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -9,11 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### ### Added ###
* HTTP connections are allowed additionally to HTTPS connections.
* Dependency on the `requests` package. * Dependency on the `requests` package.
* Dependency on the `python-dateutil` package. * Dependency on the `python-dateutil` package.
* `Connection.https_proxy` option of the pycaosdb.ini and the `https_proxy` * `Connection.https_proxy` and `Connection.http_proxy` option of the
paramter of the `configure_connection` function. See the documentation of the pycaosdb.ini and the `https_proxy` and `http_proxy` parameter of the
`configure_connection` function. See the documentation of the
latter for more information. latter for more information.
Note that the `HTTP_PROXY` and `HTTPS_PROXY` environment variables are
respected as well, unless overridden programmatically.
* `apiutils.empty_diff` function that returns `True` if the diffs of two * `apiutils.empty_diff` function that returns `True` if the diffs of two
entities found with the `compare_entitis` function are empty, `False` entities found with the `compare_entitis` function are empty, `False`
otherwise. otherwise.
...@@ -34,8 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -34,8 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated ### ### Deprecated ###
* `Connection.socket_proxy` option of the pycaosdb.ini. Please use * `Connection.socket_proxy` option of the pycaosdb.ini. Please use
`Connection.https_proxy` instead. The deprecated option will be removed with `Connection.https_proxy` or `Connection.http_proxy` instead. The deprecated
the next minor release. option will be removed with the next minor release.
### Removed ### ### Removed ###
......
...@@ -57,6 +57,8 @@ def configure(inifile): ...@@ -57,6 +57,8 @@ def configure(inifile):
if "HTTPS_PROXY" in environ: if "HTTPS_PROXY" in environ:
_pycaosdbconf["Connection"]["https_proxy"] = environ["HTTPS_PROXY"] _pycaosdbconf["Connection"]["https_proxy"] = environ["HTTPS_PROXY"]
if "HTTP_PROXY" in environ:
_pycaosdbconf["Connection"]["http_proxy"] = environ["HTTP_PROXY"]
return read_config return read_config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment