This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch dependabot/pip/gunicorn-22.0.0 in repository llvm-lnt.
discards a83dc10 Bump gunicorn from 19.9.0 to 22.0.0 adds 7cd5f1e Also build the Docker image on PRs, but only push it on pushes (#78) adds d2339d3 Generate JSON reports in format V2 when using `lnt importrepo [...] adds d7a12fb Ensure aggregation function dropdowns expand to valid HTML (#79) adds 163c3dd [NFC] Simplify destructuring which is supported in recent Pyt [...] adds fdb64cf Bump minimum Python version to 3.10 (#62) adds 4292ee1 Unpin versions in setup.py (2nd attempt) (#71) adds 1a6c0de Fix invalid uses of Click in the `nt` test suite (#81) adds 0bf7f0d Overhaul `lnt updatedb` (#80) adds 150dae4 Bump most dependencies to recent versions adds c92b04d Fix a few obsolete uses of Flask-WTF forms adds 2a9b1a5 Fix obsolete usage of flask.json.JSONEncoder adds 595f058 Remove the last remaining XFAIL on V4Pages.py adds dde8ba5 Serialize installation tests adds 8aba409 Add CI jobs that test on Python 3.11 and 3.12 adds 309e185 Use click.Group instead of MultiCommand new f0800db Rewrite project build and metadata using pyproject.toml (#88) new 09d9745 Bump gunicorn from 19.9.0 to 22.0.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 (a83dc10) \ N -- N -- N refs/heads/dependabot/pip/gunicorn-22.0.0 (09d9745)
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 2 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: .../workflows/{build.yaml => build-docker.yaml} | 6 +- .github/workflows/tox.yaml | 2 +- Dockerfile | 9 +- docs/developer_guide.rst | 6 +- lnt/lnttool/admin.py | 2 +- lnt/lnttool/import_report.py | 30 ++-- lnt/lnttool/main.py | 2 +- lnt/lnttool/updatedb.py | 26 ++-- lnt/server/reporting/analysis.py | 6 +- lnt/server/ui/app.py | 8 +- lnt/server/ui/regression_views.py | 14 +- lnt/server/ui/templates/v4_graph.html | 8 +- lnt/server/ui/templates/v4_run.html | 19 ++- lnt/server/ui/views.py | 6 +- lnt/testing/__init__.py | 4 +- lnt/tests/nt.py | 6 +- mypy.ini | 2 - pyproject.toml | 154 +++++++++++++++++++++ requirements.client.txt | 20 +-- setup.cfg | 4 - setup.py | 142 ------------------- tests/lit.cfg | 2 - tests/lnttool/Inputs/example_metrics.lnt | 5 + tests/lnttool/importreport.shtest | 30 ++++ tests/lnttool/test_importreport.py | 8 -- tests/lnttool/{UpdateDB.py => updatedb.shtest} | 33 +++-- tests/server/ui/V4Pages.py | 28 ++-- tests/testing/TestingTest.py | 20 +-- tests/utils/installation-client.shtest | 8 -- tests/utils/installation-server.shtest | 8 -- tests/utils/installation.shtest | 17 +++ tox.ini | 63 --------- 32 files changed, 333 insertions(+), 365 deletions(-) rename .github/workflows/{build.yaml => build-docker.yaml} (88%) delete mode 100644 mypy.ini create mode 100644 pyproject.toml delete mode 100644 setup.cfg delete mode 100644 setup.py create mode 100644 tests/lnttool/Inputs/example_metrics.lnt create mode 100644 tests/lnttool/importreport.shtest delete mode 100644 tests/lnttool/test_importreport.py rename tests/lnttool/{UpdateDB.py => updatedb.shtest} (50%) delete mode 100644 tests/utils/installation-client.shtest delete mode 100644 tests/utils/installation-server.shtest create mode 100644 tests/utils/installation.shtest delete mode 100644 tox.ini