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

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


 discard b20b0b6  Include a list of ignored components for inclusion in the 
report, and include base path for SBOM generation
 discard b983713  Fix types - don't use model_extra! Also a slight tweak to the 
dev shell script to get logs
 discard 7f9995c  Include source component on the conformance error model. Skip 
missing component errors for "file" components as they don't have PURLs etc.
 discard 4b80721  Fix some wording and add a hyperlink to vulnerability details
     add be43b89  Install syft using Go in the containers
     add d273259  Increase the CodeQL frequency and coverage
     add bac2b9a  Fix linting errors in the script for announcement previews
     add 3106e20  Add some vote page tests
     add 536c9cc  Fix a lint error in the code to copy to clipboard
     add 59c226a  Wait for SBOM task to complete before continuing with revision
     add 3872b89  Fix style and SBOM generation result message
     add b9e2799  Add tests for the script on the committees page
     add 40d55ed  Fix lint errors in the script for the committee directory
     add 00a8504  Add JS formatting to standard lints
     add 93194b5  Fix a small lint issue in the script to process ignore form 
changes
     add 689f8d1  Fix a small linter error in the script to toggle key 
committees
     add bda2fef  Add another container with reloading for faster testing
     add a3b9971  Add tests for the ongoing tasks script
     add bbba4e7  Fix lint errors in the ongoing tasks script
     add 32bfd76  Fix small issues in a few script files
     add ca9f18d  Add tests for the scripting on the report page
     add b507f73  Add license headers automatically to JavaScript and 
TypeScript files
     add f6bbf29  Add biome to the analysis workflow
     add f8f38c3  Fix some lint errors in the report pages script
     add 02f18e2  Fix some wording and add a hyperlink to vulnerability details
     add 749f7bd  Include source component on the conformance error model. Skip 
missing component errors for "file" components as they don't have PURLs etc.
     add f51e7b5  Fix types - don't use model_extra! Also a slight tweak to the 
dev shell script to get logs
     add 65b12ae  Include a list of ignored components for inclusion in the 
report, and include base path for SBOM generation

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   (b20b0b6)
            \
             N -- N -- N   refs/heads/sbom_report_updates (65b12ae)

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/workflows/analyze.yml               |   5 +
 .github/workflows/codeql.yaml               |  19 ++-
 .pre-commit-config.yaml                     |  18 +++
 Dockerfile.alpine                           |   4 +-
 Dockerfile.ubuntu                           |   2 +-
 atr/db/interaction.py                       |  24 +++-
 atr/post/draft.py                           |  25 ++--
 atr/static/js/src/admin-update-form.js      |  27 ++++-
 atr/static/js/src/announce-preview.js       | 172 ++++++++++++++++-----------
 atr/static/js/src/clipboard-copy.js         |  23 +++-
 atr/static/js/src/committee-directory.js    |  58 +++++++--
 atr/static/js/src/copy-variable.js          |  21 ++++
 atr/static/js/src/ignore-form-change.js     |  25 +++-
 atr/static/js/src/keys-add-toggle.js        |  25 +++-
 atr/static/js/src/ongoing-tasks-poll.js     |  85 ++++++++-----
 atr/static/js/src/projects-add-form.js      |  27 ++++-
 atr/static/js/src/projects-directory.js     |  31 ++++-
 atr/static/js/src/report-results.js         |  34 ++++--
 atr/static/js/src/vote-preview.js           |  19 +++
 atr/static/ts/create-a-jwt.ts               |  19 +++
 atr/static/ts/finish-selected-move.ts       |  19 +++
 atr/storage/writers/sbom.py                 |  13 --
 tests/docker-compose.yml                    |  39 ++++++
 tests/e2e/announce/conftest.py              |   2 +-
 {atr => tests/e2e/committees}/__init__.py   |   0
 tests/e2e/{root => committees}/conftest.py  |  33 +++---
 tests/e2e/committees/test_get.py            |  97 +++++++++++++++
 {atr => tests/e2e/compose}/__init__.py      |   0
 tests/e2e/{announce => compose}/conftest.py |  64 ++++------
 tests/e2e/compose/test_get.py               | 106 +++++++++++++++++
 {atr => tests/e2e/report}/__init__.py       |   0
 tests/e2e/report/conftest.py                | 137 +++++++++++++++++++++
 tests/e2e/report/test_get.py                | 178 ++++++++++++++++++++++++++++
 tests/e2e/root/conftest.py                  |   2 +-
 tests/e2e/sbom/conftest.py                  |   2 +-
 tests/e2e/test_files/apache-test-0.2.tar.gz | Bin 4391 -> 4567 bytes
 {atr => tests/e2e/vote}/__init__.py         |   0
 tests/e2e/{announce => vote}/conftest.py    |  53 +++------
 tests/e2e/{announce => vote}/helpers.py     |  23 +++-
 tests/e2e/vote/test_get.py                  | 126 ++++++++++++++++++++
 tests/run-e2e-test.sh                       |  16 ++-
 tests/run-e2e.sh                            |  14 ++-
 42 files changed, 1305 insertions(+), 282 deletions(-)
 copy {atr => tests/e2e/committees}/__init__.py (100%)
 copy tests/e2e/{root => committees}/conftest.py (56%)
 create mode 100644 tests/e2e/committees/test_get.py
 copy {atr => tests/e2e/compose}/__init__.py (100%)
 copy tests/e2e/{announce => compose}/conftest.py (55%)
 create mode 100644 tests/e2e/compose/test_get.py
 copy {atr => tests/e2e/report}/__init__.py (100%)
 create mode 100644 tests/e2e/report/conftest.py
 create mode 100644 tests/e2e/report/test_get.py
 copy {atr => tests/e2e/vote}/__init__.py (100%)
 copy tests/e2e/{announce => vote}/conftest.py (63%)
 copy tests/e2e/{announce => vote}/helpers.py (55%)
 create mode 100644 tests/e2e/vote/test_get.py


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

Reply via email to