Skip to content

Commit

Permalink
Version 2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gponomarev-lykke committed Mar 29, 2024
1 parent 4303aac commit 25076ce
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 7 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
## 2.20.0 - Nova 2. Delivery 41 (March 29, 2024)
### What's changed
* LT-5324: Additional logging for taxes saga.
* LT-5278: Adjust the `iaccountbalancehistoryapi` api.

### Deployment
* For both **AccountsManagement** and **AccountHistory Broker**:

Add a new configuration section `ExtendedLoggingSettings`, then set `TaxesLoggingEnabled` to `true`

Example for **AccountsManagement**

```
{
"MarginTradingAccountManagement":
{
"ExtendedLoggingSettings":
{
"TaxesLoggingEnabled": true
},
// omitted
```
Example for **AccountHistory Broker**
```
{
"MtBrokerSettings":
{
"ExtendedLoggingSettings":
{
"TaxesLoggingEnabled": true
},
// omitted
```


## 2.19.0 - Nova 2. Delivery 40 (February 28, 2024)
### What's changed
* LT-5293: [AccountHistoryBroker] Fix "update version number" and "deprecated packages validation" build steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MarginTrading.AccountsManagement.Dal.Common</RootNamespace>
<Version>2.19.0</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<Version>2.19.0</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<UserSecretsId>94dc4c27-9e8c-48d6-a8e3-95844002f423</UserSecretsId>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyName>MarginTrading.AccountsManagement.AccountHistoryBroker</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>MarginTrading.AccountsManagement.AccountHistoryBroker</PackageId>
<Version>2.18.3</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<AspNetCoreModuleName>AspNetCoreModuleV2</AspNetCoreModuleName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>2.18.3</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<PackageId>Lykke.MarginTrading.AccountsManagement.Contracts</PackageId>
<Company>Lykke Business</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>MarginTrading.AccountsManagement</AssemblyName>
<RootNamespace>MarginTrading.AccountsManagement</RootNamespace>
<NoWarn>$(NoWarn);1591</NoWarn>
<Version>2.18.3</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<AspNetCoreModuleName>AspNetCoreModuleV2</AspNetCoreModuleName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>2.19.0</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<AspNetCoreModuleName>AspNetCoreModuleV2</AspNetCoreModuleName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>2.19.0</Version>
<Version>2.20.0</Version>
<LangVersion>8.0</LangVersion>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<AspNetCoreModuleName>AspNetCoreModuleV2</AspNetCoreModuleName>
Expand Down

0 comments on commit 25076ce

Please sign in to comment.