From 7900bbad3cb78684e19c56391a4c28ca7a71dd68 Mon Sep 17 00:00:00 2001 From: Nirdh Mehta Date: Tue, 28 May 2024 11:15:11 +0100 Subject: [PATCH] Update TwTeam to reflect changes in Send Squad (#47) * Remove Speed team Speed team doesn't exist, its services are mostly redistributed amongst pp-transfer and send-money * Bump version * Update CHANGELOG.md * Update TwTeam.java --- CHANGELOG.md | 11 ++++++++++- gradle.properties | 2 +- .../transferwise/common/context/ownership/TwTeam.java | 3 +-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1dd54..4d8f680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.0] - 2024-05-28 + +### Changed +* `TwTeam.ACCOUNT_DETAILS_SERVICE` to `TwTeam.CONTACTS` - the formation and ownership of team has changed in the process, refer to CODEOWNERS in GitHub for respective services. +* `TwTeam.QUOTE_SERVICE` to `TwTeam.SEND_CORE`, to unify team's ownership under its former and current team names. + +### Removed +* `TwTeam.SPEED` - the team no longer exists, CODEOWNERS files for the services it used to own would reflect where they now belong. + ## [1.0.1] - 2024-02-21 ### Changed @@ -192,4 +201,4 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). For example in Payout Service `markCompleted` endpoint was timing out, but the transaction behind it finished. When we introduced deadline interceptors, there, Ops were not able to complete those batches anymore, because the transactions were interrupted with DeadlineExceededException. -When deadline is exceeded, a special counter `tw.context.deadline.extended` is increased, to check quality of the service. \ No newline at end of file +When deadline is exceeded, a special counter `tw.context.deadline.extended` is increased, to check quality of the service. diff --git a/gradle.properties b/gradle.properties index 3cef896..97d695b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=1.0.1 \ No newline at end of file +version=2.0.0 diff --git a/tw-context-ownership-starter/src/main/java/com/transferwise/common/context/ownership/TwTeam.java b/tw-context-ownership-starter/src/main/java/com/transferwise/common/context/ownership/TwTeam.java index 8e9a07b..d2bb178 100644 --- a/tw-context-ownership-starter/src/main/java/com/transferwise/common/context/ownership/TwTeam.java +++ b/tw-context-ownership-starter/src/main/java/com/transferwise/common/context/ownership/TwTeam.java @@ -47,13 +47,12 @@ public enum TwTeam { PP_TRANSFER("pp-transfer"), PRICING("pricing"), PROFILE_SERVICE("profile-service"), - QUOTE_SERVICE("quote-service"), + SEND_CORE("send-core"), RECEIVE("receive"), SECURITY_PRODUCT("security-product"), SECURITY("security"), SEND_MONEY("send-money"), SMB("smb"), - SPEED("speed"), TREASURY("treasury"), USD("usd"), VERIFICATION("verification"),