Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TwTeam to reflect changes in Send Squad #47

Merged
merged 4 commits into from
May 28, 2024
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
When deadline is exceeded, a special counter `tw.context.deadline.extended` is increased, to check quality of the service.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.1
version=2.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
Loading