From a422e88a9f611046e35c76911bec3191e75f3772 Mon Sep 17 00:00:00 2001 From: Henrique Graca <999396+hjgraca@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:04:16 +0000 Subject: [PATCH 1/4] Update version for batch GA Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com> --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 64350663..32010ea4 100644 --- a/version.json +++ b/version.json @@ -7,6 +7,6 @@ "Utilities": { "Parameters": "1.1.2", "Idempotency": "1.0.0", - "BatchProcessing": "0.0.1-preview" + "BatchProcessing": "1.0.0" } } From dba793fe8feca1a25797d8232bf1f90b3f34700d Mon Sep 17 00:00:00 2001 From: Henrique Graca <999396+hjgraca@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:07:20 +0000 Subject: [PATCH 2/4] Update README.md Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20fe95fc..41b3cb34 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Powertools for AWS Lambda (.NET) provides three core utilities: * **[Idempotency](https://docs.powertools.aws.dev/lambda/dotnet/utilities/idempotency/)** - The idempotency utility provides a simple solution to convert your Lambda functions into idempotent operations which are safe to retry. -* **[Batch Processing (developer preview)](https://docs.powertools.aws.dev/lambda/dotnet/utilities/batch-processing/)** - The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. +* **[Batch Processing](https://docs.powertools.aws.dev/lambda/dotnet/utilities/batch-processing/)** - The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. ### Installation From e5fe2d0311ff07ff8d3320e5ecdbf8904e95c590 Mon Sep 17 00:00:00 2001 From: Henrique Graca <999396+hjgraca@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:08:22 +0000 Subject: [PATCH 3/4] Update index.md Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com> --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index fa9c51b8..515bd07d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -31,7 +31,7 @@ Core utilities such as Tracing, Logging, and Metrics will be available across al [Metrics](./core/metrics.md) | Custom AWS metrics created asynchronously via CloudWatch Embedded Metric Format (EMF) [Parameters](./utilities/parameters/) | provides high-level functionality to retrieve one or multiple parameter values from [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html){target="_blank"}, [AWS Secrets Manager](https://aws.amazon.com/secrets-manager/){target="_blank"}, or [Amazon DynamoDB](https://aws.amazon.com/dynamodb/){target="_blank"}. We also provide extensibility to bring your own providers. [Idempotency](./utilities/idempotency/) | The idempotency utility provides a simple solution to convert your Lambda functions into idempotent operations which are safe to retry. -[Batch Processing (developer preview)](./utilities/batch-processing/) | The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. +[Batch Processing](./utilities/batch-processing/) | The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. ## Install From 819a1ce7f12e88111f25b5735c9162543dcad60a Mon Sep 17 00:00:00 2001 From: Henrique Graca <999396+hjgraca@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:09:20 +0000 Subject: [PATCH 4/4] Update batch-processing.md Signed-off-by: Henrique Graca <999396+hjgraca@users.noreply.github.com> --- docs/utilities/batch-processing.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/utilities/batch-processing.md b/docs/utilities/batch-processing.md index e8145877..2c3e460b 100644 --- a/docs/utilities/batch-processing.md +++ b/docs/utilities/batch-processing.md @@ -2,8 +2,6 @@ title: Batch Processing description: Utility --- -???+ warning - **This utility is currently in developer preview** and is intended strictly for feedback and testing purposes **and not for production workloads**. The version and all future versions tagged with the `-preview` suffix should be treated as not stable. Until this utility is [General Availability](https://github.com/aws-powertools/powertools-lambda-dotnet/milestone/4) we may introduce significant breaking changes and improvements in response to customer feedback. The batch processing utility handles partial failures when processing batches from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. @@ -1047,4 +1045,4 @@ As there is no external calls, you can unit test your code with `BatchProcessor` EventSourceArn = "arn:aws:sqs:us-east-2:123456789012:my-queue" }, }; - ``` \ No newline at end of file + ```