Skip to content

4.5 release #1785

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

Merged
merged 4 commits into from
Jun 5, 2025
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
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ enable = true

[params.localstack]
# LocalStack specific configuration values
latest_version = "4.4.0"
latest_version = "4.5.0"

[params.localstack.cli_links]
# Configure the different download links for the cli-binary-download shortcode
Expand Down
1 change: 1 addition & 0 deletions content/en/references/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ Please consult the [migration guide]({{< ref "user-guide/aws/lambda#migrating-to
| `MYSQL_IMAGE` | `mysql:8.0` | Defines a specific MySQL image that should be used when spinning up the MySQL engine. Only available if `RDS_MYSQL_DOCKER` is enabled. |
| `MSSQL_IMAGE` | `mcr.microsoft.com/mssql/server:2022-latest` | Defines a specific image that should be used when spinning up a SQL server engine. |
| `MSSQL_ACCEPT_EULA` | `Y` | Set to `Y` if you accept the [EULA from MSSQL](https://hub.docker.com/_/microsoft-mssql-server). |
| `RDS_PG_MAX_CONNECTIONS` | `0` (default) | Sets the maximum number of connections for Postgres RDS instances. |

### S3

Expand Down
2 changes: 1 addition & 1 deletion content/en/user-guide/aws/codebuild/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: CodeBuild
linkTitle: CodeBuild
description: >
Get started with CodeBuild on LocalStack
tags: ["Pro image"]
tags: ["Base"]
---

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion content/en/user-guide/aws/codedeploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: CodeDeploy
linkTitle: CodeDeploy
description: >
Get started with CodeDeploy on LocalStack
tags: ["Pro image"]
tags: ["Ultimate"]
---

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion content/en/user-guide/aws/codepipeline/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: CodePipeline
linkTitle: CodePipeline
description: >
Get started with CodePipeline on LocalStack
tags: ["Pro image"]
tags: ["Ultimate"]
---

## Introduction
Expand Down
6 changes: 3 additions & 3 deletions content/en/user-guide/aws/rds/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ For instance, the `storage-encrypted` flag is returned as configured, but active
### PostgreSQL Engine

When you establish an RDS DB cluster or instance using the `postgres`/`aurora-postgresql` DB engine along with a specified `EngineVersion`, LocalStack will dynamically install and configure the corresponding PostgreSQL version as required.
Presently, you have the option to choose major versions ranging from 11 to 16.
If you select a major version beyond this range, the system will automatically default to version 15.
Presently, you have the option to choose major versions ranging from 11 to 17.
If you select a major version beyond this range, the system will automatically default to version 17.

It's important to note that the selection of minor versions is not available.
The latest major version will be installed within the Docker environment.
If you wish to prevent the installation of customized versions, adjusting the `RDS_PG_CUSTOM_VERSIONS` environment variable to `0` will enforce the use of the default PostgreSQL version 15.
If you wish to prevent the installation of customized versions, adjusting the `RDS_PG_CUSTOM_VERSIONS` environment variable to `0` will enforce the use of the default PostgreSQL version 17.

{{< callout >}}
While the [`DescribeDbCluster`](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html) and [`DescribeDbInstances`](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html) APIs will still reflect the initially defined `engine-version`, the actual installed PostgreSQL engine might differ.
Expand Down