Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def online_write_batch(
(entity_key, feature_name, value, event_ts, created_ts)
VALUES {value_formatters}
ON DUPLICATE KEY UPDATE
value = VALUES(value)
event_ts = VALUES(event_ts)
value = VALUES(value),
event_ts = VALUES(event_ts),
created_ts = VALUES(created_ts)
""",
[item for row in rows_to_insert for item in row]
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@elastic/datemath": "^5.0.3",
"@elastic/eui": "^55.0.1",
"@emotion/react": "^11.9.0",
"@feast-dev/feast-ui": "0.29.0",
"@feast-dev/feast-ui": "0.30.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
8 changes: 4 additions & 4 deletions sdk/python/feast/ui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1300,10 +1300,10 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"

"@feast-dev/feast-ui@0.29.0":
version "0.29.0"
resolved "https://registry.yarnpkg.com/@feast-dev/feast-ui/-/feast-ui-0.29.0.tgz#b78070b51c3f83b2b823946b64fea4f223820429"
integrity sha512-XF/C3CcLmQTAUV9vHbW37BEACoNXXbUaMUoWPIJMrZvW6IStoVUlBuA4bx995XSE4gUcZ7j/5SmrOUAAlanL9Q==
"@feast-dev/feast-ui@0.30.0":
version "0.30.0"
resolved "https://registry.affirm-stage.com/artifactory/api/npm/npm/@feast-dev/feast-ui/-/feast-ui-0.30.0.tgz#6c68b243d65f8a3a1df029a39f4c382d17a4b272"
integrity sha1-bGiyQ9Zfijod8Cmjn0w4LReksnI=
dependencies:
"@elastic/datemath" "^5.0.3"
"@elastic/eui" "^55.0.1"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from distutils.core import setup

NAME = "feast"
VERSION = "0.28+affirm51"
VERSION = "0.28+affirm52"
DESCRIPTION = "Python SDK for Feast @ Affirm"
URL = "https://github.com/feast-dev/feast"
AUTHOR = "Feast"
Expand Down Expand Up @@ -590,7 +590,7 @@ def copy_extensions_to_source(self):
"pybindgen==0.22.0",
],
cmdclass={
#"build_python_protos": BuildPythonProtosCommand,
"build_python_protos": BuildPythonProtosCommand,
"build_go_protos": BuildGoProtosCommand,
"build_py": BuildCommand,
"develop": DevelopCommand,
Expand Down