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

ocket8888 pushed a change to tag t3c-testing
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


*** WARNING: tag t3c-testing was modified! ***

    from 67a5641689 (commit)
      to 7370d996ed (commit)
    from 67a5641689 Fix t3c multiple profile generation (#7163)
     add 9c7ed32f60 Update TO tests README (#7173)
     add a969fb0ee8 ASN test fixes (#7034)
     add 3721d91acb Dev CiaB: Prefix Traffic Monitor profile name with TM 
profile prefix (#7175)
     add 6c64fcffed Update log4j to version 2.19.0 (#7178)
     add 52414a1895 dep(run-ciab): update from Node12 to Node16 (#7177)
     add 49913ad342 Fixed sort in DS form for topologies and DSCP and 
topologies table. (#7174)
     add a1a7ddeb7f DTP open sourcing (#7161)
     add 715718894c Fixed column search filter in Delivery Service table (#7179)
     add 7370d996ed ATC build system: aarch64 support (#7176)

No new revisions were added by this update.

Summary of changes:
 .github/actions/build-ats-test-rpm/action.yaml     |   2 +-
 .github/actions/build-ciab/action.yaml             |   2 +-
 .../cache-config-integration-tests/action.yml      |   2 +-
 .../health-client-integration-tests/action.yml     |   2 +-
 .github/actions/run-ciab/action.yaml               |   2 +-
 CHANGELOG.md                                       |   5 +
 build/functions.sh                                 |   6 +-
 cache-config/testing/docker/trafficserver/run.sh   |   6 +-
 dev/traffic_ops/seed.psql                          |  10 +-
 grove/build/build_rpm.sh                           |   4 +-
 grove/grovetccfg/build/build_rpm.sh                |   4 +-
 infrastructure/cdn-in-a-box/Makefile               |   8 +-
 .../docker/build/Dockerfile-cache-config           |  13 +-
 infrastructure/docker/build/Dockerfile-grove       |  13 +-
 infrastructure/docker/build/Dockerfile-grovetccfg  |  13 +-
 .../docker/build/Dockerfile-tc-health-client       |  13 +-
 .../docker/build/Dockerfile-traffic_monitor        |  13 +-
 infrastructure/docker/build/Dockerfile-traffic_ops |  13 +-
 .../docker/build/Dockerfile-traffic_stats          |  13 +-
 infrastructure/docker/build/docker-compose.yml     |  32 ++
 test/fakeOrigin/README.md                          |   1 +
 test/fakeOrigin/docs/Configuration.md              |   8 +-
 test/fakeOrigin/docs/Testing.md                    | 318 ++++++++++++++++++
 test/fakeOrigin/dtp/bin.go                         |  86 +++++
 test/fakeOrigin/dtp/config.go                      | 120 +++++++
 test/fakeOrigin/dtp/dtp.go                         | 127 ++++++++
 test/fakeOrigin/dtp/fwd_delay.go                   |  78 +++++
 test/fakeOrigin/dtp/fwd_posevt.go                  | 169 ++++++++++
 test/fakeOrigin/dtp/handler.go                     | 360 +++++++++++++++++++++
 test/fakeOrigin/dtp/num.go                         | 276 ++++++++++++++++
 test/fakeOrigin/dtp/plugutils.go                   | 100 ++++++
 test/fakeOrigin/dtp/text.go                        |  86 +++++
 test/fakeOrigin/dtp/type_bin.go                    |  79 +++++
 test/fakeOrigin/dtp/type_binf.go                   | 124 +++++++
 test/fakeOrigin/dtp/type_gen3s.go                  |  79 +++++
 .../vault.go => test/fakeOrigin/dtp/type_hijack.go |  39 ++-
 test/fakeOrigin/dtp/type_tex.go                    | 181 +++++++++++
 test/fakeOrigin/dtp/type_txt.go                    |  77 +++++
 test/fakeOrigin/endpoint/endpoint.go               |  50 +--
 test/fakeOrigin/endpoint/endpoint_enums.go         |   3 +
 test/fakeOrigin/endpoint/type_jsonenums.go         |   3 +
 test/fakeOrigin/httpService/filter.go              |   5 +-
 test/fakeOrigin/httpService/httpService.go         |  77 ++++-
 test/fakeOrigin/httpService/rangerequest.go        |   2 +-
 test/fakeOrigin/version.go                         |   2 +-
 traffic_ops/testing/api/README.md                  | 128 ++++----
 traffic_ops/testing/api/v3/asns_test.go            | 132 ++++----
 traffic_ops/testing/api/v3/tc-fixtures.json        |   4 +-
 traffic_ops/testing/api/v4/asns_test.go            | 133 ++++----
 traffic_ops/testing/api/v4/tc-fixtures.json        |   4 +-
 .../form.deliveryService.DNS.tpl.html              |   6 +-
 .../form.deliveryService.HTTP.tpl.html             |   6 +-
 .../form.deliveryService.Steering.tpl.html         |   2 +-
 .../form.deliveryService.anyMap.tpl.html           |   2 +-
 .../TableDeliveryServicesController.js             |  10 +-
 .../table/topologies/table.topologies.tpl.html     |   2 +-
 traffic_router/build/build_rpm.sh                  |   2 +-
 traffic_router/build/pom.xml                       |   1 -
 traffic_router/pom.xml                             |   2 +-
 59 files changed, 2777 insertions(+), 283 deletions(-)
 create mode 100644 test/fakeOrigin/docs/Testing.md
 create mode 100644 test/fakeOrigin/dtp/bin.go
 create mode 100644 test/fakeOrigin/dtp/config.go
 create mode 100644 test/fakeOrigin/dtp/dtp.go
 create mode 100644 test/fakeOrigin/dtp/fwd_delay.go
 create mode 100644 test/fakeOrigin/dtp/fwd_posevt.go
 create mode 100644 test/fakeOrigin/dtp/handler.go
 create mode 100644 test/fakeOrigin/dtp/num.go
 create mode 100644 test/fakeOrigin/dtp/plugutils.go
 create mode 100644 test/fakeOrigin/dtp/text.go
 create mode 100644 test/fakeOrigin/dtp/type_bin.go
 create mode 100644 test/fakeOrigin/dtp/type_binf.go
 create mode 100644 test/fakeOrigin/dtp/type_gen3s.go
 copy traffic_ops/traffic_ops_golang/ping/vault.go => 
test/fakeOrigin/dtp/type_hijack.go (54%)
 create mode 100644 test/fakeOrigin/dtp/type_tex.go
 create mode 100644 test/fakeOrigin/dtp/type_txt.go

Reply via email to