Skip to content

Commit

Permalink
Merge pull request #516 from stellar/release/3.2.0
Browse files Browse the repository at this point in the history
Release `3.2.0` to `main`
  • Loading branch information
marcelosalloum authored Jan 27, 2025
2 parents d5d6598 + 4ea9d97 commit f09bb4f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
34 changes: 26 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

## Unreleased

## [3.2.0](https://github.com/stellar/stellar-disbursement-platform-backend/releases/tag/3.2.0) ([diff](https://github.com/stellar/stellar-disbursement-platform-backend/compare/3.1.0...3.2.0))

Release of the Stellar Disbursement Platform `v3.2.0`. This release focuses on enhancing the platform’s reliability and
data tracking capabilities. Users can now patch already confirmed verification fields for receivers, providing greater
flexibility in managing locked-out accounts. Additionally, audit logging has been introduced to track changes made to
critical verification data, ensuring improved accountability and transparency.

> [!WARNING]
> This version is compatible with the [stellar/stellar-disbursement-platform-frontend] version `3.2.0`.
### Added

- Dynamic Audit Table Creation through the `create_audit_table` Postgres function. This is initially applied to the receiver_verifications table to track changes. [#513](https://github.com/stellar/stellar-disbursement-platform-backend/pull/513)

### Changed

- Enabled patching of already confirmed verification fields for receivers, addressing scenarios where users might get locked out of a partner’s system. [#512](https://github.com/stellar/stellar-disbursement-platform-backend/pull/512)

## [3.1.0](https://github.com/stellar/stellar-disbursement-platform-backend/releases/tag/3.1.0) ([diff](https://github.com/stellar/stellar-disbursement-platform-backend/compare/3.0.0...3.1.0))

Release of the Stellar Disbursement Platform `v3.1.0`. This release introduces key updates, including the migration to
Expand All @@ -14,8 +32,8 @@ data export through dedicated endpoints, allowing users to export disbursements,
Additionally, users now have the ability to delete disbursements in `DRAFT` or `READY` status, streamlining data
management workflows.

> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend](https://github.com/stellar/stellar-disbursement-platform-frontend) version `3.1.0`.
> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend] version `3.1.0`.
### Added

Expand Down Expand Up @@ -61,8 +79,8 @@ exclusively through SMS as it now supports new types. The options are `PHONE_NUM
`EMAIL_AND_WALLET_ADDRESS`, and `PHONE_NUMBER_AND_WALLET_ADDRESS`. If a receiver is registered with a wallet address,
they can receive the payment right away without having to go through the SEP-24 registration flow.

> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend](https://github.com/stellar/stellar-disbursement-platform-frontend) version `3.0.0`.
> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend] version `3.0.0`.
### Breaking Changes

Expand Down Expand Up @@ -136,8 +154,8 @@ the option to set different distribution account signers per tenant, as well
as Circle support, so the tenant can choose to run their payments through the
Circle API rather than directly on the Stellar network.

> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend](https://github.com/stellar/stellar-disbursement-platform-frontend) version `2.1.0`.
> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend] version `2.1.0`.
### Changed

Expand Down Expand Up @@ -198,8 +216,8 @@ release introduces multi-tenancy support, allowing multiple tenants

Each organization has its own set of users, receivers, disbursements, etc.

> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend](https://github.com/stellar/stellar-disbursement-platform-frontend) version `2.0.0`.
> [!WARNING]
> This version is only compatible with the [stellar/stellar-disbursement-platform-frontend] version `2.0.0`.
### Changed

Expand Down
2 changes: 1 addition & 1 deletion helmchart/sdp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: stellar-disbursement-platform
description: A Helm chart for the Stellar Disbursement Platform Backend (A.K.A. `sdp`)
version: "3.1.0"
appVersion: "3.1.0"
appVersion: "3.2.0"
type: application
maintainers:
- name: Stellar Development Foundation
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

// Version is the official version of this application. Whenever it's changed
// here, it also needs to be updated at the `helmchart/Chart.yaml#appVersion“.
const Version = "3.1.0"
const Version = "3.2.0"

// GitCommit is populated at build time by
// go build -ldflags "-X main.GitCommit=$GIT_COMMIT"
Expand Down

0 comments on commit f09bb4f

Please sign in to comment.