Skip to content

Commit 6036d73

Browse files
authored
Merge pull request #970 from stellar/release/6.0.0-dev
Release `6.0.0` to `dev`
2 parents 007dac4 + 2eb03f4 commit 6036d73

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,29 @@ All notable changes to this project will be documented in this file.
44

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

7-
## [Unreleased]
7+
## [6.0.0](https://github.com/stellar/stellar-disbursement-platform-backend/releases/tag/6.0.0) ([diff](https://github.com/stellar/stellar-disbursement-platform-backend/compare/5.0.0...6.0.0))
8+
9+
### 🚨Potential Breaking Changes
10+
11+
- Remove case insensitivity from asset code comparisons [#967](https://github.com/stellar/stellar-disbursement-platform-backend/pull/967)
12+
- Decommission Anchor Platform and add support for SEP-10 and SEP-24 endpoints in the SDP [#834](https://github.com/stellar/stellar-disbursement-platform-backend/pull/834)
13+
- Add SEP10 /auth endpoints
14+
- Add SEP24 /info endpoints
15+
- Add SEP24 interactive deposit endpoint
16+
- Remove Anchor Platform integration from the SDP and deprecate related env variables.
817

918
### Added
1019

1120
- Add Launch Wizard through `make setup` command to simplify initial setup and mainnet configuration for docker compose [#875](https://github.com/stellar/stellar-disbursement-platform-backend/pull/875)
1221
- Add `--env-file` command line argument to support multiple environment file contexts [#963](https://github.com/stellar/stellar-disbursement-platform-backend/pull/963)
1322
- Add HTTPS mode to setup wizard [#957](https://github.com/stellar/stellar-disbursement-platform-backend/pull/957)
14-
- Support for SEP-10 and SEP-24 endpoints in the SDP [#834](https://github.com/stellar/stellar-disbursement-platform-backend/pull/834)
15-
- Add SEP10 /auth endpoints
16-
- Add SEP24 /info endpoints
17-
- Add SEP24 interactive deposit endpoint
18-
- Remove Anchor Platform integration from the SDP and deprecate related env variables.
1923
- Add configurable database connection pool settings to prevent idle connection buildup in multi-tenant deployments [#932](https://github.com/stellar/stellar-disbursement-platform-backend/pull/932)
2024

2125
### Changed
2226

2327
- Default Max Open Connections per pool changed from 30 to 20 to prevent idle connection buildup in multi-tenant deployments [#932](https://github.com/stellar/stellar-disbursement-platform-backend/pull/932)
2428
- Make docker compose environment variables configurable via `.env` file and add documentation [#953](https://github.com/stellar/stellar-disbursement-platform-backend/pull/953)
2529
- Update Stellar Go SDK dependency from `github.com/stellar/go` to `github.com/stellar/go-stellar-sdk` [#956](https://github.com/stellar/stellar-disbursement-platform-backend/pull/956)
26-
- Remove case insensitivity from asset code comparisons [#967](https://github.com/stellar/stellar-disbursement-platform-backend/pull/967)
2730

2831
### Fixed
2932

helmchart/sdp/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: stellar-disbursement-platform
33
description: A Helm chart for the Stellar Disbursement Platform Backend (A.K.A. `sdp`)
4-
version: "5.0.0"
5-
appVersion: "5.0.0"
4+
version: "6.0.0"
5+
appVersion: "6.0.0"
66
type: application
77
maintainers:
88
- name: Stellar Development Foundation

helmchart/sdp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Configuration parameters for the SDP Core Service which is the core backend serv
196196
| `sdp.image` | Configuration related to the Docker image used by the SDP service. | |
197197
| `sdp.image.repository` | Docker image repository for the SDP backend service. | `stellar/stellar-disbursement-platform-backend` |
198198
| `sdp.image.pullPolicy` | Image pull policy for the SDP service. For locally built images, consider using "Never" or "IfNotPresent". | `Always` |
199-
| `sdp.image.tag` | Docker image tag for the SDP service. If set, this overrides the default value from `.Chart.AppVersion`. | `5.0.0` |
199+
| `sdp.image.tag` | Docker image tag for the SDP service. If set, this overrides the default value from `.Chart.AppVersion`. | `6.0.0` |
200200
| `sdp.deployment` | Configuration related to the deployment of the SDP service. | |
201201
| `sdp.deployment.annotations` | Annotations to be added to the deployment. | `nil` |
202202
| `sdp.deployment.podAnnotations` | Annotations specific to the pods. | `{}` |
@@ -335,7 +335,7 @@ Configuration parameters for the Dashboard. This is the user interface administr
335335
| `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` |
336336
| `dashboard.route.port` | Primary port on which the Dashboard listens. | `80` |
337337
| `dashboard.image` | Configuration related to the Docker image used by the Dashboard. | |
338-
| `dashboard.image.fullName` | Full name of the Docker image. | `stellar/stellar-disbursement-platform-frontend:5.0.0` |
338+
| `dashboard.image.fullName` | Full name of the Docker image. | `stellar/stellar-disbursement-platform-frontend:6.0.0` |
339339
| `dashboard.image.pullPolicy` | Image pull policy for the dashboard. For locally built images, consider using "Never" or "IfNotPresent". | `Always` |
340340
| `dashboard.deployment` | Configuration related to the deployment of the Dashboard. | |
341341
| `dashboard.deployment.annotations` | Annotations to be added to the deployment. | `{}` |

helmchart/sdp/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ sdp:
135135
image:
136136
repository: stellar/stellar-disbursement-platform-backend
137137
pullPolicy: Always
138-
tag: "5.0.0"
138+
tag: "6.0.0"
139139

140140
## @extra sdp.deployment Configuration related to the deployment of the SDP service.
141141
## @param sdp.deployment.annotations Annotations to be added to the deployment.
@@ -470,7 +470,7 @@ dashboard:
470470
## @param dashboard.image.fullName Full name of the Docker image.
471471
## @param dashboard.image.pullPolicy Image pull policy for the dashboard. For locally built images, consider using "Never" or "IfNotPresent".
472472
image:
473-
fullName: stellar/stellar-disbursement-platform-frontend:5.0.0
473+
fullName: stellar/stellar-disbursement-platform-frontend:6.0.0
474474
pullPolicy: Always
475475

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

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
// Version is the official version of this application. Whenever it's changed
1515
// here, it also needs to be updated at the `helmchart/Chart.yaml#appVersion“.
16-
const Version = "5.0.0"
16+
const Version = "6.0.0"
1717

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

0 commit comments

Comments
 (0)