This is an automated email from the ASF dual-hosted git repository.
ocket8888 pushed a change to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git.
from fd626f2 Fix POST /profileparameters validation error message (#5210)
(#5224)
new 3999693 Fix 403 forbidden in deliveryservices_test (#5214)
new 7f25103 fixes broken context menus due to missing id (#5215)
new 45f1954 Update Go version to 1.15.3 (#5158)
new a9e5342 Enable includeSystemTests in the API tests GitHub Action
(#5168)
new defbee0 Servers Table - Single Click Navigation (#5217)
new ab198b3 Fix compilation error in experimental tool (#5220)
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/actions/to-integration-tests/.eslintrc | 333 ++++
.github/actions/to-integration-tests/Dockerfile | 32 -
.github/actions/to-integration-tests/README.md | 34 +-
.github/actions/to-integration-tests/action.yml | 20 +-
.github/actions/to-integration-tests/cdn.json | 59 +-
.github/actions/to-integration-tests/database.json | 2 +-
.github/actions/to-integration-tests/dbconf.yml | 2 +-
.../dist/to-integration-tests.js | 31 +
.github/actions/to-integration-tests/entrypoint.sh | 129 +-
.../actions/to-integration-tests/package-lock.json | 1994 ++++++++++++++++++++
.github/actions/to-integration-tests/package.json | 24 +
.../actions/to-integration-tests/riak.json | 4 +-
.../to-integration-tests/to-integration-tests.ts | 31 +
.../to-integration-tests/traffic-ops-test.json | 7 +-
.github/actions/to-integration-tests/tsconfig.json | 14 +
.github/workflows/go.fmt.yml | 2 +
.github/workflows/go.unit.tests.yaml | 2 +
.github/workflows/traffic ops.yml | 18 +
.gitignore | 1 +
GO_VERSION | 2 +-
experimental/traffic_ops_auth/traffic_ops_auth.go | 25 +-
.../testing/api/v3/deliveryservices_test.go | 4 -
.../testing/api/v3/serverservercapability_test.go | 4 +-
traffic_ops/testing/api/v3/tc-fixtures.json | 6 +-
.../table.cacheGroupServers.tpl.html | 2 +-
.../table/cdnServers/table.cdnServers.tpl.html | 2 +-
.../table.deliveryServiceJobs.tpl.html | 2 +-
.../table.deliveryServiceServers.tpl.html | 2 +-
.../table.physLocationServers.tpl.html | 2 +-
.../profileServers/table.profileServers.tpl.html | 2 +-
.../table/servers/TableServersController.js | 17 +-
.../statusServers/table.statusServers.tpl.html | 2 +-
.../topologyServers/table.topologyServers.tpl.html | 2 +-
.../table/typeServers/table.typeServers.tpl.html | 2 +-
.../test/end_to_end/servers/servers-spec.js | 2 +-
35 files changed, 2687 insertions(+), 130 deletions(-)
create mode 100644 .github/actions/to-integration-tests/.eslintrc
delete mode 100644 .github/actions/to-integration-tests/Dockerfile
create mode 100644
.github/actions/to-integration-tests/dist/to-integration-tests.js
create mode 100644 .github/actions/to-integration-tests/package-lock.json
create mode 100644 .github/actions/to-integration-tests/package.json
copy traffic_ops/app/conf/development/riak.conf =>
.github/actions/to-integration-tests/riak.json (54%)
create mode 100644 .github/actions/to-integration-tests/to-integration-tests.ts
create mode 100644 .github/actions/to-integration-tests/tsconfig.json