This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/pip/django-4.2.16
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git
omit 9316ea5 Bump django from 3.2.8 to 4.2.16
add 55dc5ff Fix TestClient for fastapi cause the req.client None error
(#355)
add c36972c feat: add sampling service #(357)
add cb2165b Fix agent start failed in async mode when profiling is
enabled (#360)
add 7dd9a30 perf: ignore uuid and timestamp generation for NoopContext
(#361)
add 34285a1 Bump django from 3.2.8 to 4.2.16
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 (9316ea5)
\
N -- N -- N refs/heads/dependabot/pip/django-4.2.16 (34285a1)
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/PULL_REQUEST_TEMPLATE | 2 +-
CHANGELOG.md | 13 +++
docs/en/contribution/CodingStyle.md | 4 +-
docs/en/setup/Configuration.md | 4 +
poetry.lock | 33 ++++++-
pyproject.toml | 1 +
skywalking/agent/__init__.py | 15 +--
skywalking/command/command_service.py | 2 +-
skywalking/config.py | 6 +-
skywalking/plugins/sw_fastapi.py | 2 +-
skywalking/{meter => sampling}/__init__.py | 31 ++++---
skywalking/sampling/sampling_service.py | 101 +++++++++++++++++++++
skywalking/trace/__init__.py | 3 +-
skywalking/trace/context.py | 16 +++-
skywalking/trace/segment.py | 14 +++
.../cli/utility => tests/benchmark}/__init__.py | 0
.../test_span.py} | 34 ++++---
tests/unit/test_sampling.py | 88 ++++++++++++++++++
18 files changed, 324 insertions(+), 45 deletions(-)
copy skywalking/{meter => sampling}/__init__.py (57%)
create mode 100644 skywalking/sampling/sampling_service.py
copy {skywalking/bootstrap/cli/utility => tests/benchmark}/__init__.py (100%)
copy tests/{e2e/case/expected/profile-segment-analyze.yml =>
benchmark/test_span.py} (61%)
create mode 100644 tests/unit/test_sampling.py