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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- [#6376](https://github.com/apache/trafficcontrol/issues/6376) Updated TO/TM so that TM doesn't overwrite monitoring snapshot data with CR config snapshot data.
- Updated `t3c-apply` to reduce mutable state in `TrafficOpsReq` struct.
- Updated Golang dependencies
- [#6506](https://github.com/apache/trafficcontrol/pull/6506) - Updated `jackson-databind` and `jackson-annotations` Traffic Router dependencies to version 2.13.1

### Deprecated
- Deprecated the endpoints and docs associated with `api_capability`.
Expand Down
4 changes: 2 additions & 2 deletions traffic_router/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.11.3</version>
<version>${jackson-core.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.11.3</version>
<version>${jackson-core.version}</version>
</dependency>
<dependency>
<groupId>com.maxmind.geoip2</groupId>
Expand Down
1 change: 1 addition & 0 deletions traffic_router/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<deploy.dir>/opt/traffic_router</deploy.dir>
<spring.version>5.2.9.RELEASE</spring.version>
<log4j.version>2.17.1</log4j.version>
<jackson-core.version>2.13.1</jackson-core.version>
<junit.version>4.12</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<geoip2.version>2.1.0</geoip2.version>
Expand Down
4 changes: 2 additions & 2 deletions traffic_router/shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ under the License.
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.4.0</version>
<version>${jackson-core.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.4.3</version>
<version>${jackson-core.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
Expand Down