This is an automated email from the ASF dual-hosted git repository.

arm pushed a change to branch form_validation_cache
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git


 discard c8aa3abb #776 - implement 50k character limit for vote comment and 
support passing form errors through a cache in the form module instead of via 
flash in the session
     add 5961d500 #676 Validate exp and nbf when loading pydantic model for 
Github token. Attestable class updated to store and load model instead of dict.
     add 269971c3 Handle extra type cases in Trusted Publishing payload 
validation
     add ef59ffaf Rename generated pip-audit requirements to avoid Dependabot 
scanning them
     add 8027be75 Upgrade RAT to version 0.18
     add d179d949 Move Trusted Publishing fields into a separate form
     add 9799c8f3 Allow more files at the top level
     add 717b82f2 Fix some e2e tests related to Trusted Publishing and RAT 
checks
     add ef54d39c Update dependencies and fix style problems
     add 0947f6ad #915 - Add safe path type
     add d8489a6c Add a classification type for documentation
     add 7d0920f6 Remove binary and source artifact paths from the release 
policy form
     add ee6a1d9f Move the API endpoint to get a release policy
     add 02d2bb3f Add an API endpoint to update release policies
     add da901ba5 Change the size of several release policy form fields
     add bc46b451 OF - typo seem by ASVS
     add d120c688 #776 - implement 50k character limit for vote comment and 
support passing form errors through a cache in the form module instead of via 
flash in the session

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   (c8aa3abb)
            \
             N -- N -- N   refs/heads/form_validation_cache (d120c688)

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:
 .pre-commit-config.yaml                            |   2 +-
 Dockerfile.alpine                                  |   6 +-
 Makefile                                           |   2 +-
 atr/admin/__init__.py                              |  28 +--
 atr/analysis.py                                    |   1 +
 atr/api/__init__.py                                |  87 ++++---
 atr/attestable.py                                  |  35 ++-
 atr/blueprints/admin.py                            |   8 +-
 atr/blueprints/api.py                              |  20 +-
 atr/blueprints/common.py                           |  12 +-
 atr/blueprints/post.py                             |   2 +-
 atr/classify.py                                    |   3 +-
 atr/config.py                                      |   2 +-
 atr/db/interaction.py                              |  17 +-
 atr/form.py                                        |  60 +----
 atr/get/docs.py                                    |  10 +-
 atr/get/download.py                                |  20 +-
 atr/get/draft.py                                   |  15 +-
 atr/get/file.py                                    |   8 +-
 atr/get/projects.py                                |  39 ++-
 atr/get/published.py                               |  10 +-
 atr/get/ref.py                                     |  19 +-
 atr/get/report.py                                  |  10 +-
 atr/get/sbom.py                                    |   8 +-
 atr/jwtoken.py                                     |   4 +-
 atr/models/api.py                                  |  42 +++-
 atr/models/github.py                               |  28 ++-
 atr/models/safe.py                                 |  53 +++++
 atr/paths.py                                       |   8 +-
 atr/post/announce.py                               |   2 +-
 atr/post/draft.py                                  |  33 ++-
 atr/post/finish.py                                 |   8 +-
 atr/post/projects.py                               |  22 ++
 atr/post/sbom.py                                   |  39 ++-
 atr/post/upload.py                                 |  12 +-
 atr/shared/announce.py                             |  24 +-
 atr/shared/draft.py                                |   3 +-
 atr/shared/finish.py                               |  14 +-
 atr/shared/projects.py                             | 137 +++++------
 atr/shared/upload.py                               |   5 +-
 atr/ssh.py                                         |  43 ++--
 atr/storage/writers/announce.py                    |   8 +-
 atr/storage/writers/policy.py                      | 140 +++++++++--
 atr/storage/writers/release.py                     |  57 +++--
 atr/storage/writers/ssh.py                         |  13 +-
 atr/tabulate.py                                    |   2 +-
 atr/tasks/checks/__init__.py                       |  22 +-
 atr/tasks/checks/compare.py                        |  26 +-
 atr/tasks/checks/license.py                        |  11 +-
 atr/tasks/checks/paths.py                          |  14 +-
 atr/tasks/checks/rat.py                            |   7 +-
 atr/tasks/checks/targz.py                          |   2 +-
 atr/tasks/checks/zipformat.py                      |   2 +-
 atr/tasks/gha.py                                   |   3 +-
 atr/tasks/quarantine.py                            |   2 +-
 atr/tasks/svn.py                                   |   3 +-
 atr/util.py                                        |  69 ++----
 atr/web.py                                         |   2 +-
 ...nts-for-pip-audit.txt => pip-audit.requirements |  10 +-
 tests/e2e/policy/conftest.py                       |   9 +-
 tests/e2e/policy/helpers.py                        |  20 ++
 tests/e2e/policy/test_post.py                      |   6 +-
 tests/e2e/report/conftest.py                       |   2 +-
 tests/e2e/report/test_get.py                       |  42 ++--
 tests/unit/recorders.py                            |   4 +-
 tests/unit/test_blueprints.py                      | 264 ++++++++++-----------
 tests/unit/test_checks_compare.py                  |  21 +-
 tests/unit/test_checks_rat.py                      |   4 +-
 tests/unit/test_classify.py                        |  27 +++
 tests/unit/test_detection.py                       |  44 ++--
 tests/unit/test_safe_types.py                      |  12 +-
 uv.lock                                            |  76 +++---
 72 files changed, 1017 insertions(+), 808 deletions(-)
 rename requirements-for-pip-audit.txt => pip-audit.requirements (98%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to