-
Notifications
You must be signed in to change notification settings - Fork 8
Release: app version 1.13.0-beta, frontend version 1.4.6-beta #498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v1.13.0-alpha | ||
| v1.13.0-beta |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,15 +7,30 @@ Changelog | |
| Next Version | ||
| ------------ | ||
|
|
||
| - fixed a bug where a dataprovider could upload her clks multiple time in a project using the same upload token (#463) | ||
|
|
||
| Version 1.13.0-beta | ||
| ------------------- | ||
|
|
||
| - fixed a bug where a dataprovider could upload their clks multiple time in a project using the same upload token (#463) | ||
|
||
| - modify ``similarity_score`` output to follow the group format, which will simplify extending this output type to more parties (#464) | ||
| - Tutorials have been improved following an internal review. (#467) | ||
| - Database has been changed in preparation to support blocking. (#470) | ||
| - Benchmarking results can be saved to Object Store/S3 without authentication. E.g. using node permissions on AWS. (#490) | ||
| - Removed duplicate/redundant tests. (#466) | ||
| - Update dependencies: | ||
| - We have enabled `dependabot <https://dependabot.com/>`_ on GitHub to keep our Python dependencies up to date. | ||
| - ``anonlinkclient`` now used for benchmarking (#490) | ||
| - Chart dependencies ``redis-ha``, ``postgres`` and ``minio`` all updated. | ||
|
||
|
|
||
|
|
||
| Breaking Change | ||
| ~~~~~~~~~~~~~~~ | ||
|
|
||
| - the ``dataproviders`` table `uploaded` field has been modified from a BOOL to an ENUM type (#463) | ||
| - the ``similarity_score`` output type has been modified, it now returns a JSON array of JSON objects, where such an object | ||
| looks like `[[party_id_0, row_index_0], [party_id_1, row_index_1], score]`. (#464) | ||
| - Integration test configuration is now consistent with benchmark config. Instead of setting ``ENTITY_SERVICE_URL`` including | ||
| ``/api/v1`` now just set the host address in ``SERVER``. | ||
|
||
|
|
||
| Version 1.13.0-alpha | ||
| -------------------- | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v1.4.6-alpha | ||
| v1.4.6-beta |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<nitpick mode ON>
the two parameters
minReplicasandmaxReplicasare clearly related. Why do we set them at different levels in theValuesfile?<upgrade to double nitpick mode NOW>
Why do we set the
minReplicasvalue asreplicaCount? Wouldn't that just confuse some random DevOps guy when (s)he tries to configure the autoscaler?/<all nitpick modes OFF>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We set them at different levels because
replicaCountis always required (whether the autoscaler is enabled or not), and I just decided that if the autoscaler is enabled we would use the initial number of replicas as the minimum. I'll add another configurable:workers.autoscaler.minReplicas.