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 09d9745 Bump gunicorn from 19.9.0 to 22.0.0 adds 48126d4 Drop dependency on python-gnupg (#91) adds 524880c Remove duplicated version and author information (#92) adds 375cfcc Rename the package from LNT to llvm-lnt (#93) adds 3470cea Overhaul the README and developer guide (#90) adds b60cc0a Document and add a job to build and publish a PyPI package (#94) adds fb47f11 Only publish to test.PyPI on tag pushes adds 84f07bf Bump version to 0.4.3 (#95) adds 008ea25 Make PyPI publishing jobs verbose adds e82889c Use setuptools_scm to produce a version number dynamically (#97) adds 8e1fa53 Only build a source distribution in Github Actions (#98) adds 435a87e Don't publish to TestPyPI on pushes to main adds 95ede29 Drop Sphinx configuration for non-HTML documentation (#99) adds d303ff0 Build the Docker image on pushes, tags, and pull requests (#100) adds 87656b5 Get rid of ambiguous negative boolean options with Click (#101) adds ae1745a Remove .svn directory inclusion from tests (#102) adds a42da35 By default, run tests without pinning down all dependencies (#103) adds 7a2554e Remove --no-incremental when using mypy (#104) adds ed38846 Persist LNT instance and config in docker-compose.yml adds 1d9ce46 Fix mypy assertion error in upgrade_0_to_1 (#111) adds 3e71f65 Replace usage of "pipes" with shlex. (#112) adds 2b1e74f Add REQUIRES postgres to tests/utils/installation.shtest test (#113) adds 0eb6c92 Officially support Python 3.13 and 3.14, and add CI for them (#87) adds 0367895 [NFC] Reindent docker-entrypoint.sh with spaces adds 388d187 [NFC] Rename .yml files to .yaml for consistency adds b5dbb5c Automatically detect whether we should run the postgres tests (#114) new f35e2e4 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 (09d9745) \ N -- N -- N refs/heads/dependabot/pip/gunicorn-22.0.0 (f35e2e4)
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/build-and-publish-package.yaml | 78 ++++++++++++++++++++ .github/workflows/build-docker.yaml | 11 +-- .github/workflows/tox.yaml | 11 ++- .gitignore | 2 +- README.md | 38 ++++++---- docker-compose.yml => docker-compose.yaml | 7 ++ docker/docker-entrypoint.sh | 40 +++++----- docs/conf.py | 93 ++++-------------------- docs/developer_guide.rst | 60 +++++++++------ docs/quickstart.rst | 24 ++---- lnt/__init__.py | 5 -- lnt/lnttool/main.py | 31 ++------ lnt/server/db/migrations/upgrade_0_to_1.py | 12 +-- lnt/server/db/testsuite.py | 8 +- lnt/server/ui/app.py | 3 +- lnt/tests/compile.py | 16 ++-- lnt/tests/nt.py | 46 +++++------- lnt/tests/test_suite.py | 20 ++--- pyproject.toml | 32 ++++---- requirements.client.txt | 1 - tests/SharedInputs/postgres_wrapper.sh | 9 ++- tests/lit.cfg | 10 ++- tests/lnttool/PostgresDB.shtest | 2 +- tests/lnttool/version.shtest | 4 + tests/runtest/nt.py | 6 +- tests/runtest/rerun.py | 2 +- tests/server/ui/Inputs/last-run-report.json | 2 +- tests/utils/installation.shtest | 1 + 28 files changed, 289 insertions(+), 285 deletions(-) create mode 100644 .github/workflows/build-and-publish-package.yaml rename docker-compose.yml => docker-compose.yaml (83%) create mode 100644 tests/lnttool/version.shtest