diff --git a/CHANGELOG.md b/CHANGELOG.md index 59a9126..e2f3661 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,10 @@ > please add your unreleased change here. +## 20241219 - 0.8.0b0 + - [Infra] Bump heu version to 0.6.0. Note that he model packages generated by secretflow < 1.11 (heu <= 5.1.0b0) are no longer supported. +- [Feature] In the Kuscia scenario, the startup parameters can specify the predictor. ## 20241023 - 0.7.0b0 diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index 71d68ab..1f09611 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -42,10 +42,13 @@ def sf_serving_deps(): def _dataproxy(): maybe( - git_repository, + http_archive, name = "dataproxy", - commit = "e38d723ab274d4568bf93cf74c0cb516435118c5", - remote = "https://github.com/secretflow/dataproxy.git", + urls = [ + "https://github.com/secretflow/dataproxy/archive/refs/tags/v0.3.0b0.tar.gz", + ], + strip_prefix = "dataproxy-0.3.0b0", + sha256 = "016915d16bd9331e2b7766d2a4090166c7c9f5e58b3ba75f68df3e23cde9846a", ) def _heu(): @@ -53,10 +56,10 @@ def _heu(): http_archive, name = "com_alipay_sf_heu", urls = [ - "https://github.com/secretflow/heu/archive/refs/tags/0.6.0.dev20241106.tar.gz", + "https://github.com/secretflow/heu/archive/refs/tags/v0.5.2b0.tar.gz", ], - strip_prefix = "heu-0.6.0.dev20241106", - sha256 = "498a73bace6c85bf8c2f2663101d71584bec62eb213acdebc04dbbe11a4460cc", + strip_prefix = "heu-0.5.2b0", + sha256 = "152309975a6bb655ef6f33cd14cd85fc81a8bb1aabc168f3b8ea545a56e2a088", ) def _bazel_rules_pkg(): diff --git a/python_lib/secretflow_serving_lib/version.py b/python_lib/secretflow_serving_lib/version.py index d0584b7..ca657a5 100644 --- a/python_lib/secretflow_serving_lib/version.py +++ b/python_lib/secretflow_serving_lib/version.py @@ -13,4 +13,4 @@ # limitations under the License. -__version__ = "0.8.0.dev$$DATE$$" +__version__ = "0.8.0b0" diff --git a/version.txt b/version.txt index d0584b7..ca657a5 100644 --- a/version.txt +++ b/version.txt @@ -13,4 +13,4 @@ # limitations under the License. -__version__ = "0.8.0.dev$$DATE$$" +__version__ = "0.8.0b0"