This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/golang.org/x/crypto-0.1.0
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
discard 038cdc0499 Bump golang.org/x/crypto from
0.0.0-20210921155107-089bfa567519 to 0.1.0
add 767821339f Add ACME permissions to Operations Role (#7370)
add 9ae015a09e Adding Types table and details (#7355)
add 044fa8a312 ATC Collaborators for March 2023 (#7378)
add 1ae0fed7e8 Have TPv2 reuse TPv1 builder (#7379)
add b3371d7bc1 Add GHA to update chromedriver (#7365)
add b8159abbc0 Move assert functionality (#7288)
add 7b8e4137cc Added ASN table for TPv2 (#7362)
add ba014ce88b TP: adds strikethru for expired certs and red for less than
7 days until expiration (#7380)
add 34a601f184 Update Go version to 1.19.7 (#7381)
add 229149da9c Bump golang.org/x/crypto from
0.0.0-20210921155107-089bfa567519 to 0.1.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 (038cdc0499)
\
N -- N -- N
refs/heads/dependabot/go_modules/golang.org/x/crypto-0.1.0 (229149da9c)
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:
.asf.yaml | 17 +-
.env | 2 +-
.github/actions/chromedriver-updater/README.rst | 56 ++++++
.github/actions/chromedriver-updater/action.yml | 24 +++
.../chromedriver_updater/__main__.py | 210 +++++++++++++++++++++
.../chromedriver_updater/constants.py | 36 ++++
.../chromedriver_updater/templates/pr.md | 33 ++++
.github/actions/chromedriver-updater/entrypoint.sh | 55 ++++++
.../actions/chromedriver-updater/requirements.txt | 13 ++
.github/actions/chromedriver-updater/setup.cfg | 36 ++++
.github/actions/chromedriver-updater/setup.py | 20 ++
.github/workflows/chromdriver-update.yml | 51 +++++
CHANGELOG.md | 2 +
GO_VERSION | 2 +-
build/build.sh | 4 +-
.../traffic-portal/nightwatch/globals/globals.ts | 38 +++-
.../page_objects/cacheGroups/asnsTable.ts | 46 +++++
.../nightwatch/page_objects/types/typeDetail.ts | 45 +++++
.../nightwatch/page_objects/types/typesTable.ts | 45 +++++
.../tests/cacheGroups/asns/table.spec.ts | 24 +++
.../nightwatch/tests/types/detail.spec.ts | 46 +++++
.../nightwatch/tests/types/table.spec.ts | 24 +++
.../src/app/api/cache-group.service.ts | 32 ++++
.../src/app/api/testing/cache-group.service.ts | 46 ++++-
.../src/app/api/testing/type.service.ts | 34 +++-
.../traffic-portal/src/app/api/type.service.ts | 34 +++-
.../asns/table/asns-table.component.html | 30 +++
.../table/asns-table.component.scss} | 0
.../asns/table/asns-table.component.spec.ts | 68 +++++++
.../asns/table/asns-table.component.ts | 137 ++++++++++++++
.../cache-group-table.component.spec.ts | 36 ++--
.../cache-group-table.component.ts | 8 +-
.../traffic-portal/src/app/core/core.module.ts | 11 +-
.../core/types/detail/type-detail.component.html | 45 +++++
.../core/types/detail/type-detail.component.scss | 26 +++
.../types/detail/type-detail.component.spec.ts | 78 ++++++++
.../app/core/types/detail/type-detail.component.ts | 109 +++++++++++
.../core/types/table/types-table.component.html | 29 +++
.../table/types-table.component.scss} | 0
.../core/types/table/types-table.component.spec.ts | 166 ++++++++++++++++
.../app/core/types/table/types-table.component.ts | 133 +++++++++++++
.../app/shared/navigation/navigation.service.ts | 9 +
.../docker/build/Dockerfile-traffic_portal | 6 -
infrastructure/docker/build/docker-compose.yml | 8 +-
.../api => lib/go-util}/assert/assertions.go | 60 ++++++
traffic_ops/app/db/seeds.sql | 4 +
traffic_ops/testing/api/utils/utils.go | 2 +-
traffic_ops/testing/api/v3/asns_test.go | 2 +-
traffic_ops/testing/api/v3/cachegroups_test.go | 2 +-
.../api/v3/cachegroupsdeliveryservices_test.go | 2 +-
traffic_ops/testing/api/v3/cdn_federations_test.go | 2 +-
.../api/v3/cdns_name_configs_monitoring_test.go | 2 +-
.../testing/api/v3/cdns_name_snapshot_new_test.go | 2 +-
traffic_ops/testing/api/v3/cdns_test.go | 2 +-
traffic_ops/testing/api/v3/coordinates_test.go | 2 +-
.../v3/deliveryservice_request_comments_test.go | 2 +-
.../api/v3/deliveryservice_requests_test.go | 2 +-
.../testing/api/v3/deliveryservices_keys_test.go | 2 +-
.../deliveryservices_required_capabilities_test.go | 2 +-
.../testing/api/v3/deliveryservices_test.go | 2 +-
.../testing/api/v3/deliveryserviceservers_test.go | 2 +-
.../testing/api/v3/deliveryservicesregexes_test.go | 2 +-
traffic_ops/testing/api/v3/divisions_test.go | 2 +-
.../api/v3/federation_deliveryservices_test.go | 2 +-
.../api/v3/federation_federation_resolvers_test.go | 2 +-
.../testing/api/v3/federation_resolvers_test.go | 2 +-
.../testing/api/v3/federation_users_test.go | 2 +-
traffic_ops/testing/api/v3/federations_test.go | 2 +-
traffic_ops/testing/api/v3/iso_test.go | 2 +-
traffic_ops/testing/api/v3/jobs_test.go | 2 +-
traffic_ops/testing/api/v3/loginfail_test.go | 2 +-
traffic_ops/testing/api/v3/origins_test.go | 2 +-
traffic_ops/testing/api/v3/parameters_test.go | 2 +-
traffic_ops/testing/api/v3/phys_locations_test.go | 2 +-
.../testing/api/v3/profile_parameters_test.go | 2 +-
traffic_ops/testing/api/v3/profiles_export_test.go | 2 +-
traffic_ops/testing/api/v3/profiles_import_test.go | 2 +-
traffic_ops/testing/api/v3/profiles_test.go | 2 +-
traffic_ops/testing/api/v3/regions_test.go | 2 +-
traffic_ops/testing/api/v3/roles_test.go | 2 +-
.../testing/api/v3/server_capabilities_test.go | 2 +-
.../api/v3/server_server_capabilities_test.go | 2 +-
.../testing/api/v3/servercheckextension_test.go | 2 +-
traffic_ops/testing/api/v3/serverchecks_test.go | 2 +-
.../api/v3/servers_id_deliveryservices_test.go | 2 +-
.../testing/api/v3/servers_id_queue_update_test.go | 2 +-
.../testing/api/v3/servers_id_status_test.go | 2 +-
traffic_ops/testing/api/v3/servers_test.go | 2 +-
.../testing/api/v3/servicecategories_test.go | 2 +-
traffic_ops/testing/api/v3/snapshot_test.go | 2 +-
.../testing/api/v3/staticdnsentries_test.go | 2 +-
traffic_ops/testing/api/v3/stats_summary_test.go | 2 +-
traffic_ops/testing/api/v3/statuses_test.go | 2 +-
traffic_ops/testing/api/v3/steering_test.go | 2 +-
traffic_ops/testing/api/v3/steeringtargets_test.go | 2 +-
traffic_ops/testing/api/v3/tenants_test.go | 2 +-
.../testing/api/v3/topologies_queue_update_test.go | 2 +-
traffic_ops/testing/api/v3/topologies_test.go | 2 +-
traffic_ops/testing/api/v3/types_test.go | 2 +-
traffic_ops/testing/api/v3/user_current_test.go | 2 +-
traffic_ops/testing/api/v3/users_register_test.go | 2 +-
traffic_ops/testing/api/v3/users_test.go | 2 +-
traffic_ops/testing/api/v4/asns_test.go | 2 +-
traffic_ops/testing/api/v4/cachegroups_test.go | 2 +-
.../api/v4/cachegroupsdeliveryservices_test.go | 2 +-
traffic_ops/testing/api/v4/cdn_dnsseckeys_test.go | 2 +-
traffic_ops/testing/api/v4/cdn_federations_test.go | 2 +-
traffic_ops/testing/api/v4/cdn_locks_test.go | 2 +-
.../testing/api/v4/cdn_queue_updates_test.go | 2 +-
.../testing/api/v4/cdnnotifications_test.go | 2 +-
.../api/v4/cdns_name_configs_monitoring_test.go | 2 +-
.../testing/api/v4/cdns_name_snapshot_new_test.go | 2 +-
traffic_ops/testing/api/v4/cdns_test.go | 2 +-
traffic_ops/testing/api/v4/coordinates_test.go | 2 +-
.../v4/deliveryservice_request_comments_test.go | 2 +-
.../api/v4/deliveryservice_requests_test.go | 2 +-
.../testing/api/v4/deliveryservices_keys_test.go | 2 +-
.../deliveryservices_required_capabilities_test.go | 2 +-
.../testing/api/v4/deliveryservices_test.go | 2 +-
.../testing/api/v4/deliveryserviceservers_test.go | 2 +-
.../testing/api/v4/deliveryservicesregexes_test.go | 2 +-
traffic_ops/testing/api/v4/divisions_test.go | 2 +-
.../api/v4/federation_deliveryservices_test.go | 2 +-
.../api/v4/federation_federation_resolvers_test.go | 2 +-
.../testing/api/v4/federation_resolvers_test.go | 2 +-
.../testing/api/v4/federation_users_test.go | 2 +-
traffic_ops/testing/api/v4/federations_test.go | 2 +-
traffic_ops/testing/api/v4/iso_test.go | 2 +-
traffic_ops/testing/api/v4/jobs_test.go | 2 +-
traffic_ops/testing/api/v4/loginfail_test.go | 2 +-
traffic_ops/testing/api/v4/logs_test.go | 2 +-
.../api/v4/multiple_server_capabilities_test.go | 2 +-
traffic_ops/testing/api/v4/origins_test.go | 2 +-
traffic_ops/testing/api/v4/parameters_test.go | 2 +-
traffic_ops/testing/api/v4/phys_locations_test.go | 2 +-
.../testing/api/v4/profile_parameters_test.go | 2 +-
traffic_ops/testing/api/v4/profiles_export_test.go | 2 +-
traffic_ops/testing/api/v4/profiles_import_test.go | 2 +-
traffic_ops/testing/api/v4/profiles_test.go | 2 +-
traffic_ops/testing/api/v4/regions_test.go | 2 +-
traffic_ops/testing/api/v4/roles_test.go | 2 +-
.../testing/api/v4/server_capabilities_test.go | 2 +-
.../api/v4/server_server_capabilities_test.go | 2 +-
.../testing/api/v4/servercheckextension_test.go | 2 +-
traffic_ops/testing/api/v4/serverchecks_test.go | 2 +-
.../testing/api/v4/servers_hostname_update_test.go | 2 +-
.../api/v4/servers_id_deliveryservices_test.go | 2 +-
.../testing/api/v4/servers_id_queue_update_test.go | 2 +-
.../testing/api/v4/servers_id_status_test.go | 2 +-
traffic_ops/testing/api/v4/servers_test.go | 2 +-
.../testing/api/v4/servicecategories_test.go | 2 +-
traffic_ops/testing/api/v4/snapshot_test.go | 2 +-
.../testing/api/v4/staticdnsentries_test.go | 2 +-
traffic_ops/testing/api/v4/stats_summary_test.go | 2 +-
traffic_ops/testing/api/v4/statuses_test.go | 2 +-
traffic_ops/testing/api/v4/steering_test.go | 2 +-
traffic_ops/testing/api/v4/steeringtargets_test.go | 2 +-
traffic_ops/testing/api/v4/tenants_test.go | 2 +-
.../testing/api/v4/topologies_queue_update_test.go | 2 +-
traffic_ops/testing/api/v4/topologies_test.go | 2 +-
traffic_ops/testing/api/v4/types_test.go | 2 +-
traffic_ops/testing/api/v4/users_register_test.go | 2 +-
traffic_ops/testing/api/v4/users_test.go | 2 +-
traffic_ops/testing/api/v5/asns_test.go | 2 +-
traffic_ops/testing/api/v5/cachegroups_test.go | 2 +-
.../api/v5/cachegroupsdeliveryservices_test.go | 2 +-
traffic_ops/testing/api/v5/cdn_dnsseckeys_test.go | 2 +-
traffic_ops/testing/api/v5/cdn_federations_test.go | 2 +-
traffic_ops/testing/api/v5/cdn_locks_test.go | 2 +-
.../testing/api/v5/cdn_queue_updates_test.go | 2 +-
.../testing/api/v5/cdnnotifications_test.go | 2 +-
.../api/v5/cdns_name_configs_monitoring_test.go | 2 +-
.../testing/api/v5/cdns_name_snapshot_new_test.go | 2 +-
traffic_ops/testing/api/v5/cdns_test.go | 2 +-
traffic_ops/testing/api/v5/coordinates_test.go | 2 +-
.../v5/deliveryservice_request_comments_test.go | 2 +-
.../api/v5/deliveryservice_requests_test.go | 2 +-
.../testing/api/v5/deliveryservices_keys_test.go | 2 +-
.../deliveryservices_required_capabilities_test.go | 2 +-
.../testing/api/v5/deliveryservices_test.go | 2 +-
.../testing/api/v5/deliveryserviceservers_test.go | 2 +-
.../testing/api/v5/deliveryservicesregexes_test.go | 2 +-
traffic_ops/testing/api/v5/divisions_test.go | 2 +-
.../api/v5/federation_deliveryservices_test.go | 2 +-
.../api/v5/federation_federation_resolvers_test.go | 2 +-
.../testing/api/v5/federation_resolvers_test.go | 2 +-
.../testing/api/v5/federation_users_test.go | 2 +-
traffic_ops/testing/api/v5/federations_test.go | 2 +-
traffic_ops/testing/api/v5/iso_test.go | 2 +-
traffic_ops/testing/api/v5/jobs_test.go | 2 +-
traffic_ops/testing/api/v5/loginfail_test.go | 2 +-
traffic_ops/testing/api/v5/logs_test.go | 2 +-
.../api/v5/multiple_server_capabilities_test.go | 2 +-
traffic_ops/testing/api/v5/origins_test.go | 2 +-
traffic_ops/testing/api/v5/parameters_test.go | 2 +-
traffic_ops/testing/api/v5/phys_locations_test.go | 2 +-
.../testing/api/v5/profile_parameters_test.go | 2 +-
traffic_ops/testing/api/v5/profiles_export_test.go | 2 +-
traffic_ops/testing/api/v5/profiles_import_test.go | 2 +-
traffic_ops/testing/api/v5/profiles_test.go | 2 +-
traffic_ops/testing/api/v5/regions_test.go | 2 +-
traffic_ops/testing/api/v5/roles_test.go | 2 +-
.../testing/api/v5/server_capabilities_test.go | 2 +-
.../api/v5/server_server_capabilities_test.go | 2 +-
.../testing/api/v5/servercheckextension_test.go | 2 +-
traffic_ops/testing/api/v5/serverchecks_test.go | 2 +-
.../testing/api/v5/servers_hostname_update_test.go | 2 +-
.../api/v5/servers_id_deliveryservices_test.go | 2 +-
.../testing/api/v5/servers_id_queue_update_test.go | 2 +-
.../testing/api/v5/servers_id_status_test.go | 2 +-
traffic_ops/testing/api/v5/servers_test.go | 2 +-
.../testing/api/v5/servicecategories_test.go | 2 +-
traffic_ops/testing/api/v5/snapshot_test.go | 2 +-
.../testing/api/v5/staticdnsentries_test.go | 2 +-
traffic_ops/testing/api/v5/stats_summary_test.go | 2 +-
traffic_ops/testing/api/v5/statuses_test.go | 2 +-
traffic_ops/testing/api/v5/steering_test.go | 2 +-
traffic_ops/testing/api/v5/steeringtargets_test.go | 2 +-
traffic_ops/testing/api/v5/tenants_test.go | 2 +-
.../testing/api/v5/topologies_queue_update_test.go | 2 +-
traffic_ops/testing/api/v5/topologies_test.go | 2 +-
traffic_ops/testing/api/v5/types_test.go | 2 +-
traffic_ops/testing/api/v5/users_register_test.go | 2 +-
traffic_ops/testing/api/v5/users_test.go | 2 +-
.../app/src/common/modules/table/_table.scss | 8 +-
.../TableCertExpirationsController.js | 7 +-
traffic_stats/assert/testhelpers.go | 109 -----------
traffic_stats/influxdb_tools/sync/sync_test.go | 2 +-
228 files changed, 2082 insertions(+), 338 deletions(-)
create mode 100644 .github/actions/chromedriver-updater/README.rst
create mode 100644 .github/actions/chromedriver-updater/action.yml
create mode 100644
.github/actions/chromedriver-updater/chromedriver_updater/__main__.py
create mode 100644
.github/actions/chromedriver-updater/chromedriver_updater/constants.py
create mode 100644
.github/actions/chromedriver-updater/chromedriver_updater/templates/pr.md
create mode 100755 .github/actions/chromedriver-updater/entrypoint.sh
create mode 100644 .github/actions/chromedriver-updater/requirements.txt
create mode 100644 .github/actions/chromedriver-updater/setup.cfg
create mode 100644 .github/actions/chromedriver-updater/setup.py
create mode 100644 .github/workflows/chromdriver-update.yml
create mode 100644
experimental/traffic-portal/nightwatch/page_objects/cacheGroups/asnsTable.ts
create mode 100644
experimental/traffic-portal/nightwatch/page_objects/types/typeDetail.ts
create mode 100644
experimental/traffic-portal/nightwatch/page_objects/types/typesTable.ts
create mode 100644
experimental/traffic-portal/nightwatch/tests/cacheGroups/asns/table.spec.ts
create mode 100644
experimental/traffic-portal/nightwatch/tests/types/detail.spec.ts
create mode 100644
experimental/traffic-portal/nightwatch/tests/types/table.spec.ts
create mode 100644
experimental/traffic-portal/src/app/core/cache-groups/asns/table/asns-table.component.html
copy
experimental/traffic-portal/src/app/core/cache-groups/{divisions/table/divisions-table.component.scss
=> asns/table/asns-table.component.scss} (100%)
create mode 100644
experimental/traffic-portal/src/app/core/cache-groups/asns/table/asns-table.component.spec.ts
create mode 100644
experimental/traffic-portal/src/app/core/cache-groups/asns/table/asns-table.component.ts
create mode 100644
experimental/traffic-portal/src/app/core/types/detail/type-detail.component.html
create mode 100644
experimental/traffic-portal/src/app/core/types/detail/type-detail.component.scss
create mode 100644
experimental/traffic-portal/src/app/core/types/detail/type-detail.component.spec.ts
create mode 100644
experimental/traffic-portal/src/app/core/types/detail/type-detail.component.ts
create mode 100644
experimental/traffic-portal/src/app/core/types/table/types-table.component.html
copy
experimental/traffic-portal/src/app/core/{cache-groups/divisions/table/divisions-table.component.scss
=> types/table/types-table.component.scss} (100%)
create mode 100644
experimental/traffic-portal/src/app/core/types/table/types-table.component.spec.ts
create mode 100644
experimental/traffic-portal/src/app/core/types/table/types-table.component.ts
rename {traffic_ops/testing/api => lib/go-util}/assert/assertions.go (74%)
delete mode 100644 traffic_stats/assert/testhelpers.go