Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- [#6933](https://github.com/apache/trafficcontrol/issues/6933) Fixed tc-health-client to handle credentials files with special characters in variables
- [#6776](https://github.com/apache/trafficcontrol/issues/6776) User properties only required sometimes
- Fixed TO API `GET /deliveryservicesserver` causing error when an IMS request is made with the `cdn` and `maxRevalDurationDays` parameters set.
- [#6792](https://github.com/apache/trafficcontrol/issues/6792) Remove extraneous field from Topologies and Server Capability POST/PUT.
- [#6795](https://github.com/apache/trafficcontrol/issues/6795) Removed an unnecessary response wrapper object from being returned in a POST to the federation resolvers endpoint.


### Removed
- Remove `client.steering.forced.diversity` feature flag(profile parameter) from Traffic Router (TR). Client steering responses now have cache diversity by default.
- Remove traffic\_portal dependencies to mitigate `npm audit` issues, specifically `grunt-concurrent`, `grunt-contrib-concat`, `grunt-contrib-cssmin`, `grunt-contrib-jsmin`, `grunt-contrib-uglify`, `grunt-contrib-htmlmin`, `grunt-newer`, and `grunt-wiredep`
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api/v4/server_capabilities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Request Structure
.. code-block:: http
:caption: Request Example

PUT /api/4.0/server_capabilities/edit?name=RAM HTTP/1.1
PUT /api/4.0/server_capabilities?name=RAM HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.47.0
Accept: */*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (

type TOServerCapability struct {
api.APIInfoImpl `json:"-"`
RequestedName string
RequestedName string `json:"-"`
tc.ServerCapability
}

Expand Down
2 changes: 1 addition & 1 deletion traffic_ops/traffic_ops_golang/topology/topologies.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
type TOTopology struct {
api.APIInfoImpl `json:"-"`
Alerts tc.Alerts `json:"-"`
RequestedName string
RequestedName string `json:"-"`
tc.Topology
}

Expand Down