From f63f0b1187b6bf5d7014e594e03ab4606869377a Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Thu, 5 Jun 2025 05:03:04 -0700 Subject: [PATCH 1/4] bump up --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 6915b9a953..f50e7312f0 100644 --- a/config.toml +++ b/config.toml @@ -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 From e63ca53db42267f3d5c807a14e24d869fe561514 Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Thu, 5 Jun 2025 05:04:37 -0700 Subject: [PATCH 2/4] update pricing tags --- content/en/user-guide/aws/codebuild/index.md | 2 +- content/en/user-guide/aws/codedeploy/index.md | 2 +- content/en/user-guide/aws/codepipeline/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/user-guide/aws/codebuild/index.md b/content/en/user-guide/aws/codebuild/index.md index 485a19a020..da93ed4e51 100644 --- a/content/en/user-guide/aws/codebuild/index.md +++ b/content/en/user-guide/aws/codebuild/index.md @@ -3,7 +3,7 @@ title: CodeBuild linkTitle: CodeBuild description: > Get started with CodeBuild on LocalStack -tags: ["Pro image"] +tags: ["Base"] --- ## Introduction diff --git a/content/en/user-guide/aws/codedeploy/index.md b/content/en/user-guide/aws/codedeploy/index.md index 70cf6e530a..aa26ce0394 100644 --- a/content/en/user-guide/aws/codedeploy/index.md +++ b/content/en/user-guide/aws/codedeploy/index.md @@ -3,7 +3,7 @@ title: CodeDeploy linkTitle: CodeDeploy description: > Get started with CodeDeploy on LocalStack -tags: ["Pro image"] +tags: ["Ultimate"] --- ## Introduction diff --git a/content/en/user-guide/aws/codepipeline/index.md b/content/en/user-guide/aws/codepipeline/index.md index 2fe106686c..cd21125f8d 100644 --- a/content/en/user-guide/aws/codepipeline/index.md +++ b/content/en/user-guide/aws/codepipeline/index.md @@ -3,7 +3,7 @@ title: CodePipeline linkTitle: CodePipeline description: > Get started with CodePipeline on LocalStack -tags: ["Pro image"] +tags: ["Ultimate"] --- ## Introduction From 5231f8d6c790c79302cebc8730a975df39c66ea5 Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Thu, 5 Jun 2025 05:05:52 -0700 Subject: [PATCH 3/4] set default rds postgres to 17 --- content/en/user-guide/aws/rds/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/user-guide/aws/rds/index.md b/content/en/user-guide/aws/rds/index.md index 8a772feaf9..75ee825d3b 100644 --- a/content/en/user-guide/aws/rds/index.md +++ b/content/en/user-guide/aws/rds/index.md @@ -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. From d9d2cd27c4ba18b8a8e0599daac1f5a0cc860078 Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Thu, 5 Jun 2025 05:08:08 -0700 Subject: [PATCH 4/4] add rds config var --- content/en/references/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/references/configuration.md b/content/en/references/configuration.md index 4ce14f4ee9..8c3bae9573 100644 --- a/content/en/references/configuration.md +++ b/content/en/references/configuration.md @@ -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