2020-07-23 17:54:47 +02:00
|
|
|
|
# HalfAPI
|
|
|
|
|
|
2022-06-23 11:07:41 +02:00
|
|
|
|
## 0.6.17
|
|
|
|
|
|
|
|
|
|
- Fix 0.6.16
|
|
|
|
|
- Errata : HALFAPI_DOMAIN is HALFAPI_DOMAIN_NAME
|
|
|
|
|
- Testing : You can now specify "MODULE" class attribute for your "test_domain"
|
|
|
|
|
subclasses
|
|
|
|
|
|
2022-06-23 07:24:05 +02:00
|
|
|
|
## 0.6.16
|
|
|
|
|
|
|
|
|
|
- The definition of "HALFAPI_DOMAIN_MODULE" environment variable allows to
|
|
|
|
|
specify the base module for a domain structure. It is formatted as a python
|
|
|
|
|
import path.
|
|
|
|
|
The "HALFAPI_DOMAIN" specifies the "name" of the module
|
|
|
|
|
|
2022-05-17 16:19:41 +02:00
|
|
|
|
## 0.6.15
|
|
|
|
|
|
|
|
|
|
- Allows to define a "__acl__" variable in the API module's __init__.py, to
|
|
|
|
|
specify how to import the acl lib. You can also specify "acl" in the domain's
|
|
|
|
|
config
|
|
|
|
|
|
2022-05-17 10:31:34 +02:00
|
|
|
|
## 0.6.14
|
|
|
|
|
|
|
|
|
|
- Add XLSXResponse (with format argument set to "xlsx"), to return .xlsx files
|
|
|
|
|
|
2022-03-21 09:48:34 +01:00
|
|
|
|
## 0.6.13
|
|
|
|
|
|
|
|
|
|
- (rollback from 0.6.12) Remove pytest from dependencies in Docker file and
|
|
|
|
|
remove tests
|
|
|
|
|
- (dep) Add "packaging" dependency
|
|
|
|
|
- Add dependency check capability when instantiating a domain (__deps__
|
|
|
|
|
variable, see in dummy_domain)
|
|
|
|
|
|
2022-03-17 17:48:41 +01:00
|
|
|
|
## 0.6.12
|
|
|
|
|
|
|
|
|
|
- Installs pytest with dependencies in Docker image, tests when building image
|
|
|
|
|
|
2022-03-14 15:16:06 +01:00
|
|
|
|
## 0.6.11
|
|
|
|
|
|
|
|
|
|
- Fix "request" has no "path_params" attribute bug
|
|
|
|
|
|
2022-03-08 19:24:21 +01:00
|
|
|
|
## 0.6.10
|
|
|
|
|
|
|
|
|
|
- Add "x-out" field in HTTP headers when "out" parameters are specified for a
|
|
|
|
|
route
|
|
|
|
|
- Add "out" kwarg for not-async functions that specify it
|
|
|
|
|
|
2022-03-02 16:46:32 +01:00
|
|
|
|
## 0.6.9
|
|
|
|
|
|
|
|
|
|
- Hide data fields in args_check logs
|
|
|
|
|
|
2022-02-28 10:21:01 +01:00
|
|
|
|
## 0.6.8
|
|
|
|
|
|
|
|
|
|
- Fix testing lib for domains (add default secret and debug option)
|
|
|
|
|
|
2021-12-08 16:42:12 +01:00
|
|
|
|
## 0.6.2
|
|
|
|
|
|
|
|
|
|
- Domains now need to include the following variables in their __init__.py
|
|
|
|
|
- __name__ (str, optional)
|
|
|
|
|
- __id__ (str, optional)
|
|
|
|
|
- halfapi domain
|
|
|
|
|
|
|
|
|
|
|
2020-07-23 17:54:47 +02:00
|
|
|
|
## 0.1.0
|
|
|
|
|
|
|
|
|
|
- Mounts domain routers with their ACLs as decorator
|
|
|
|
|
- Configuration example files for systemd and a system-wide halfapi install
|
|
|
|
|
- Runs projects
|
|
|
|
|
- Handles JWT authentication middleware
|