File tree 4 files changed +14
-8
lines changed
python_lib/secretflow_serving_lib
4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 11
11
12
12
> please add your unreleased change here.
13
13
14
+ ## 20241219 - 0.8.0b0
15
+
14
16
- [ 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.
17
+ - [ Feature] In the Kuscia scenario, the startup parameters can specify the predictor.
15
18
16
19
## 20241023 - 0.7.0b0
17
20
Original file line number Diff line number Diff line change @@ -42,21 +42,24 @@ def sf_serving_deps():
42
42
43
43
def _dataproxy ():
44
44
maybe (
45
- git_repository ,
45
+ http_archive ,
46
46
name = "dataproxy" ,
47
- commit = "e38d723ab274d4568bf93cf74c0cb516435118c5" ,
48
- remote = "https://github.com/secretflow/dataproxy.git" ,
47
+ urls = [
48
+ "https://github.com/secretflow/dataproxy/archive/refs/tags/v0.3.0b0.tar.gz" ,
49
+ ],
50
+ strip_prefix = "dataproxy-0.3.0b0" ,
51
+ sha256 = "016915d16bd9331e2b7766d2a4090166c7c9f5e58b3ba75f68df3e23cde9846a" ,
49
52
)
50
53
51
54
def _heu ():
52
55
maybe (
53
56
http_archive ,
54
57
name = "com_alipay_sf_heu" ,
55
58
urls = [
56
- "https://github.com/secretflow/heu/archive/refs/tags/0.6.0.dev20241106 .tar.gz" ,
59
+ "https://github.com/secretflow/heu/archive/refs/tags/v0.5.2b0 .tar.gz" ,
57
60
],
58
- strip_prefix = "heu-0.6.0.dev20241106 " ,
59
- sha256 = "498a73bace6c85bf8c2f2663101d71584bec62eb213acdebc04dbbe11a4460cc " ,
61
+ strip_prefix = "heu-0.5.2b0 " ,
62
+ sha256 = "152309975a6bb655ef6f33cd14cd85fc81a8bb1aabc168f3b8ea545a56e2a088 " ,
60
63
)
61
64
62
65
def _bazel_rules_pkg ():
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- __version__ = "0.8.0.dev$$DATE$$ "
16
+ __version__ = "0.8.0b0 "
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- __version__ = "0.8.0.dev$$DATE$$ "
16
+ __version__ = "0.8.0b0 "
You can’t perform that action at this time.
0 commit comments