This is an automated email from the ASF dual-hosted git repository.
ebenizzy pushed a change to branch asf-release-0.41.0
in repository https://gitbox.apache.org/repos/asf/burr.git
discard 2d3e39da Version bump to 0.41.0
add a7caa128 Various UI updates: remove elkjs add dagre, cost updates,
executable script (#586)
add e297493e Adds flit as way to build Burr (#587)
add 48db8297 Fixes type annotations to be consistent on application state
type (#588)
add fc2f1447 Fixes some otel and nested burr application bugs (#590)
add 3e58c580 Removes pre-commit action in favor of manual version (#591)
add d33d044f Adds scripts for releasing burr -- prep for first apache
release (#595)
add 21f2681f Version bump to 0.41.0
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (2d3e39da)
\
N -- N -- N refs/heads/asf-release-0.41.0 (21f2681f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/python-package.yml | 12 +-
CONTRIBUTING.rst | 19 +
DISCLAIMER | 1 -
MANIFEST.in | 4 -
NOTICE | 1 -
__init__.py | 0
burr/cli/__main__.py | 31 +-
burr/core/application.py | 24 +-
burr/core/state.py | 15 +-
burr/integrations/opentelemetry.py | 19 +-
burr/telemetry.py | 6 +-
burr/tracking/server/run.py | 8 +-
burr/tracking/server/run.sh | 0
.../tracking/server/s3/deployment/terraform/alb.tf | 17 +
.../server/s3/deployment/terraform/auto_scaling.tf | 17 +
.../tracking/server/s3/deployment/terraform/ecs.tf | 16 +
.../tracking/server/s3/deployment/terraform/iam.tf | 17 +
.../server/s3/deployment/terraform/logs.tf | 17 +
.../server/s3/deployment/terraform/network.tf | 17 +
.../server/s3/deployment/terraform/outputs.tf | 17 +
.../server/s3/deployment/terraform/provider.tf | 17 +
.../server/s3/deployment/terraform/security.tf | 17 +
.../server/s3/deployment/terraform/variable.tf | 17 +
burr/version.py | 6 +-
pyproject.toml | 190 ++++++---
scripts/README.md | 229 +++++++++++
scripts/build_artifacts.py | 290 ++++++++++++++
scripts/release_helper.py | 444 +++++++++++++++++++++
scripts/setup_keys.sh | 95 +++++
telemetry/ui/.eslintrc.js | 17 +
telemetry/ui/package-lock.json | 197 ++-------
telemetry/ui/package.json | 5 +-
telemetry/ui/scripts/model_costs.json | 2 +-
telemetry/ui/src/components/nav/appcontainer.tsx | 4 +-
.../ui/src/components/routes/app/GraphView.tsx | 126 +++---
.../ui/src/components/routes/app/InsightsView.tsx | 2 +-
.../ui/src/components/routes/app/ReproduceView.tsx | 2 +-
tests/core/test_application.py | 43 ++
tests/core/test_state.py | 4 +-
tests/integrations/serde/test_langchain.py | 4 +-
tests/integrations/test_burr_opentelemetry.py | 151 ++++++-
tests/test_release_config.py | 153 +++++++
42 files changed, 1930 insertions(+), 343 deletions(-)
delete mode 100644 MANIFEST.in
delete mode 100644 __init__.py
mode change 100644 => 100755 burr/tracking/server/run.sh
create mode 100644 scripts/README.md
create mode 100644 scripts/build_artifacts.py
create mode 100644 scripts/release_helper.py
create mode 100755 scripts/setup_keys.sh
create mode 100644 tests/test_release_config.py