You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release contains a potentially breaking change as class `database.Database` has been replaced with `exasol_database.ExasolDatabase`.
6
+
7
+
This release updates the Python API generated from file `openapi.json` multiple times:
8
+
9
+
In the scope of ticket #80 the updated API contains 3 additional fields for object `Schedule`:
10
+
*`createdbyID`
11
+
*`createdbyFirstName`
12
+
*`createdbyLastName`
13
+
14
+
In the scope of ticket #84 the updated API contains multiple additions and one removed field.
15
+
16
+
A `class_override` has been added to file `openapi_config.yml` to solve a conflict caused by `openapi.json` containing model class `Database` with attribute `settings`, from which Openapi Python Client` generates a module `database_settings` containing class `DatabaseSettings`.
17
+
18
+
The `class_override` replaces class `database.Database` with `exasol_database.ExasolDatabase` which potentially is a breaking change to the API.
In case you currently are already working on a branch other than `main`, please ensure to have all changes commited and add command line option `--no-branch`:
152
153
153
154
```shell
154
-
poetry run nox -s release:preparee -- -- <version> --no-pr --no-branch
155
+
poetry run nox -s release:prepare -- -- <version> --no-pr --no-branch
0 commit comments