This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch dependabot/pip/jinja2-3.1.6 in repository llvm-lnt.
discards 27e25b4 Bump jinja2 from 2.11.3 to 3.1.6 adds da59ce3 Fix various Flake8 issues in the codebase (#43) adds 06b6d38 Use allowlist_externals instead of whitelist_externals (#46) adds 609a425 Bump Sphinx version from 2.0 to 7.x (#47) adds ab46fce Fix another mention of whitelist_externals in tox.ini adds 1bdfa48 Bump Python requirement to 3.8 and replace usage of pkg_resou [...] adds 17a374c Fix "Can't determine which FROM clause to join from" SQLAlche [...] adds ed246e5 Run Tox tests in the Github Action CI (#49) adds 7485824 [tox] Fix a few invalid type annotations (#50) adds a86db1b Make aggregation function selection consistent across Run and [...] adds fc25e11 [CI] Update the version of actions used in the CI (#51) new 2502fef Bump jinja2 from 2.11.3 to 3.1.6
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 (27e25b4) \ N -- N -- N refs/heads/dependabot/pip/jinja2-3.1.6 (2502fef)
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 "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: .github/workflows/{flake8_docs.yaml => tox.yaml} | 10 ++- docs/developer_guide.rst | 24 +++--- lnt/__init__.py | 9 +-- lnt/formats/__init__.py | 6 +- lnt/lnttool/main.py | 19 ++--- lnt/server/__init__.py | 4 +- lnt/server/db/__init__.py | 4 +- lnt/server/db/fieldchange.py | 22 +++--- lnt/server/db/migrations/upgrade_2_to_3.py | 2 +- lnt/server/db/migrations/upgrade_7_to_8.py | 2 +- lnt/server/db/rules/__init__.py | 4 +- .../db/rules/rule_update_fixed_regressions.py | 8 +- lnt/server/db/rules_manager.py | 4 +- lnt/server/db/testsuite.py | 2 +- lnt/server/db/util.py | 8 +- lnt/server/reporting/__init__.py | 4 +- lnt/server/ui/__init__.py | 4 +- lnt/server/ui/templates/v4_graph.html | 15 +++- lnt/server/ui/templates/v4_run.html | 12 +-- lnt/server/ui/util.py | 2 +- lnt/server/ui/views.py | 85 ++++++++++++---------- lnt/testing/__init__.py | 4 +- lnt/testing/util/__init__.py | 4 +- lnt/tests/test_suite.py | 2 +- lnt/util/__init__.py | 4 +- lnt/util/stats.py | 18 ----- lnt/util/wsgi_restart.py | 4 +- setup.py | 8 +- tests/Formats/json.py | 4 +- tests/Formats/plist.py | 4 +- tests/SharedInputs/FakeCompilers/fakecompiler.py | 2 + tests/lnttool/PostgresDB.shtest | 4 +- tests/lnttool/Profile.py | 8 +- tests/lnttool/UpdateDB.py | 4 +- tests/lnttool/admin.shtest | 20 ++--- tests/lnttool/checkformat.shtest | 10 +-- tests/lnttool/email_tools.py | 4 +- tests/lnttool/showtests.shtest | 2 +- tests/lnttool/submit.shtest | 22 +++--- tests/lnttool/submit_badurl.shtest | 2 +- tests/runtest/exclude_stat.py | 4 +- tests/runtest/multisample.py | 4 +- tests/runtest/nt-darwin.py | 2 +- tests/runtest/nt.py | 38 +++++----- tests/runtest/only_test.py | 4 +- tests/runtest/rerun.py | 8 +- tests/runtest/test_suite-benchmarking-only.shtest | 2 +- tests/runtest/test_suite-c-compiler.shtest | 2 +- tests/runtest/test_suite-cache.shtest | 12 +-- tests/runtest/test_suite-cc.shtest | 2 +- tests/runtest/test_suite-cflags0.shtest | 2 +- tests/runtest/test_suite-cflags1.shtest | 2 +- tests/runtest/test_suite-cflags2.shtest | 2 +- tests/runtest/test_suite-cflags3.shtest | 2 +- tests/runtest/test_suite-cflags4.shtest | 2 +- tests/runtest/test_suite-compile-only.shtest | 2 +- tests/runtest/test_suite-cross.shtest | 2 +- tests/runtest/test_suite-fail-compile.shtest | 2 +- tests/runtest/test_suite-fail-exec.shtest | 2 +- tests/runtest/test_suite-machine-name.shtest | 2 +- tests/runtest/test_suite-metrics.shtest | 4 +- tests/runtest/test_suite-only-test.shtest | 2 +- tests/runtest/test_suite-perf-events.shtest | 2 +- tests/runtest/test_suite-pgo.shtest | 4 +- tests/runtest/test_suite-profile.shtest | 2 +- tests/runtest/test_suite-run-order.shtest | 2 +- tests/runtest/test_suite-run-under.shtest | 6 +- tests/runtest/test_suite-use-perf.shtest | 2 +- tests/runtest/test_suite.shtest | 14 ++-- tests/runtest/test_suite_diagnose.shtest | 4 +- tests/server/db/ImportV4TestSuiteInstance.py | 10 +-- tests/server/db/yamlschema.shtest | 12 +-- tests/server/ui/V4Pages.py | 9 ++- tests/server/ui/statsTester.py | 63 +++++++--------- tox.ini | 19 +++-- 75 files changed, 304 insertions(+), 329 deletions(-) rename .github/workflows/{flake8_docs.yaml => tox.yaml} (72%)