Skip to content

Commit

Permalink
Merge branch 'master' into ui-summary-area
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rgba authored Nov 21, 2024
2 parents 2139dcc + 52914cc commit 744193c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ module = "weave_query.*"
ignore_errors = true

[tool.bumpversion]
current_version = "0.51.22-dev0"
current_version = "0.51.23-dev0"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down
2 changes: 1 addition & 1 deletion weave-js/src/react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ export const useExpandedNode = (
if (error != null) {
// rethrow in render thread
console.error('useExpanded error', error);
throw new Error(error);
throw error;
}
return {
loading: node.nodeType !== 'output' ? false : node !== result.node,
Expand Down
2 changes: 1 addition & 1 deletion weave/trace_server/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
COMPLETIONS_CREATE_OP_NAME = "weave.completions_create"

MAX_DISPLAY_NAME_LENGTH = 128
MAX_DISPLAY_NAME_LENGTH = 1024
MAX_OP_NAME_LENGTH = 128
MAX_OBJECT_NAME_LENGTH = 128
2 changes: 1 addition & 1 deletion weave/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@
"""

VERSION = "0.51.22-dev0"
VERSION = "0.51.23-dev0"

0 comments on commit 744193c

Please sign in to comment.