Skip to content

Commit

Permalink
Change log and bump version to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marwen-abid committed Feb 6, 2025
1 parent 1a43f5c commit 11cd4e5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/).

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

> [!WARNING] This version is only compatible with the
> [stellar/stellar-disbursement-platform-frontend] version `3.5.0`.

### Added

- Added short linking for Wallet Registration Links.
[#523](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/523)
- Added a new `is_link_shortener_enabled` property to `GET` and `PATCH` organizations endpoints to enable/disable the short link feature.
[#523](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/523)
- Added receiver contact info for Payments export.
[#538](https://github.com/stellar/stellar-disbursement-platform-frontend/pull/538)


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

Release of the Stellar Disbursement Platform `v3.4.0`. This release adds support for `q={term}` query searches in the
Expand Down
4 changes: 2 additions & 2 deletions helmchart/sdp/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: stellar-disbursement-platform
description: A Helm chart for the Stellar Disbursement Platform Backend (A.K.A. `sdp`)
version: "3.3.0"
appVersion: "3.4.0"
version: "3.5.0"
appVersion: "3.5.0"
type: application
maintainers:
- name: Stellar Development Foundation
Expand Down
8 changes: 4 additions & 4 deletions helmchart/sdp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Configuration parameters for the SDP Core Service which is the core backend serv
- Wallet Registration UI: a web application that collects and verifies the recipient’s OTP code and verification information via Stellar’s SEP-24: Hosted Deposit and Withdrawal protocol

| Name | Description | Value |
| ----------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------- |
| ----------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |-------------------------------------------------|
| `sdp.route` | Configuration related to the routing of the SDP service. | |
| `sdp.route.schema` | Protocol scheme used for the service. Can be "http" or "https". | `https` |
| `sdp.route.domain` | Public domain/address of the SDP service. If using localhost, consider including the port as part of the domain. | `nil` |
Expand All @@ -106,7 +106,7 @@ Configuration parameters for the SDP Core Service which is the core backend serv
| `sdp.image` | Configuration related to the Docker image used by the SDP service. | |
| `sdp.image.repository` | Docker image repository for the SDP backend service. | `stellar/stellar-disbursement-platform-backend` |
| `sdp.image.pullPolicy` | Image pull policy for the SDP service. For locally built images, consider using "Never" or "IfNotPresent". | `Always` |
| `sdp.image.tag` | Docker image tag for the SDP service. If set, this overrides the default value from `.Chart.AppVersion`. | `3.4.0` |
| `sdp.image.tag` | Docker image tag for the SDP service. If set, this overrides the default value from `.Chart.AppVersion`. | `3.5.0` |
| `sdp.deployment` | Configuration related to the deployment of the SDP service. | |
| `sdp.deployment.annotations` | Annotations to be added to the deployment. | `nil` |
| `sdp.deployment.podAnnotations` | Annotations specific to the pods. | `{}` |
Expand Down Expand Up @@ -283,15 +283,15 @@ This service is designed to maximize payment throughput, handle queuing, and gra
Configuration parameters for the Dashboard. This is the user interface administrators use to initiate and track the progress of disbursements.

| Name | Description | Value |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |---------------------------------------------------------------|
| `dashboard.enabled` | If true, the dashboard will be deployed. | `false` |
| `dashboard.route` | Configuration related to the routing of the Dashboard. | |
| `dashboard.route.schema` | Protocol scheme used for the service. Can be "http" or "https". | `https` |
| `dashboard.route.domain` | Public domain/address of the Dashboard. | `nil` |
| `dashboard.route.mtnDomain` | Public domain/address of the multi-tenant Dashboard. This is a wild-card domain used for multi-tenant setups e.g. "*.sdp-dashboard.localhost.com". | `nil` |
| `dashboard.route.port` | Primary port on which the Dashboard listens. | `80` |
| `dashboard.image` | Configuration related to the Docker image used by the Dashboard. | |
| `dashboard.image.fullName` | Full name of the Docker image. | `stellar/stellar-disbursement-platform-frontend:3.4.0` |
| `dashboard.image.fullName` | Full name of the Docker image. | `stellar/stellar-disbursement-platform-frontend:3.5.0` |
| `dashboard.image.pullPolicy` | Image pull policy for the dashboard. For locally built images, consider using "Never" or "IfNotPresent". | `Always` |
| `dashboard.deployment` | Configuration related to the deployment of the Dashboard. | |
| `dashboard.deployment.annotations` | Annotations to be added to the deployment. | `{}` |
Expand Down
4 changes: 2 additions & 2 deletions helmchart/sdp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ sdp:
image:
repository: stellar/stellar-disbursement-platform-backend
pullPolicy: Always
tag: "3.4.0"
tag: "3.5.0"

## @extra sdp.deployment Configuration related to the deployment of the SDP service.
## @param sdp.deployment.annotations Annotations to be added to the deployment.
Expand Down Expand Up @@ -536,7 +536,7 @@ dashboard:
## @param dashboard.image.fullName Full name of the Docker image.
## @param dashboard.image.pullPolicy Image pull policy for the dashboard. For locally built images, consider using "Never" or "IfNotPresent".
image:
fullName: stellar/stellar-disbursement-platform-frontend:3.4.0
fullName: stellar/stellar-disbursement-platform-frontend:3.5.0
pullPolicy: Always

## @extra dashboard.deployment Configuration related to the deployment of the Dashboard.
Expand Down

0 comments on commit 11cd4e5

Please sign in to comment.