Skip to content

v1.229.0-rc.0

Pre-release
Pre-release

Choose a tag to compare

@cloudposse-releaser cloudposse-releaser released this 08 Sep 01:08
· 3 commits to main since this release
d055965
feat: implement native Helm release lifecycle controls Mikhail Shirkov (@shirkevich) (#2847) ## what
  • Implement the approved hierarchical native Helm release policy with release-wide defaults and operation-specific install, upgrade, and delete overlays.
  • Deep-merge the complete release tree through stack defaults, abstract/base inheritance, and the concrete component before selecting an operation.
  • Apply only explicitly supplied CLI lifecycle flags after operation selection, at highest precedence.
  • Map install uninstall-on-failure, upgrade rollback and independent cleanup, wait strategy and Jobs, per-operation timeout, history, chart hooks, and CRD policy into Helm 4 actions.
  • Enforce strict nested schemas and reject misplaced, unknown, or inapplicable fields and flags.
  • Preserve inherited Helm values when a bare values: key decodes to null, keep inline and values_files template strings consistent, propagate top-level secrets, and honor command-local --mask=false.

This is 2 of 4 in the native Helm lifecycle stack and is based on #2846:

  1. #2846 — approved PRD and public contract
  2. #2847 — release model, schema, CLI, and Helm actions
  3. #2848 — execution context and cancellation propagation
  4. #2849 — operational reporting, documentation, and integration coverage

why

  • One flat policy cannot express a slow first install and a shorter upgrade or delete timeout.
  • Stack configuration must remain declarative while explicit incident-time CLI flags remain authoritative.
  • Operation-scoped enums make invalid combinations fail clearly instead of being silently ignored.

validation

  • 134 Helm package tests.
  • 59 Helm CLI tests.
  • 202 manifest-schema tests.
  • 116 affected stack-processing tests covering type defaults, nested inheritance, and concrete overrides.
  • A real multi-component POC converges with the hierarchical release tree, including distinct install and upgrade timeouts and upgrade rollback plus cleanup policy.
  • Strict schema coverage, git diff --check, and generic fixture-name audit pass.

references

  • Depends on #2846
  • PRD: docs/prd/native-helm-release-lifecycle.md

Summary by CodeRabbit

  • New Features
    • Added Helm release lifecycle configuration for install, upgrade, and delete operations.
    • Supports rollback, atomic execution, wait strategies, job waiting, timeouts, cleanup, history limits, hook control, and CRD handling.
    • Added namespace selection and lifecycle options through command-line flags and stack configuration.
    • Added Helm values, secrets, and override inheritance with predictable stack and component precedence.
    • Expanded Helm configuration schemas and validation for lifecycle settings.
  • Bug Fixes
    • Improved dry-run behavior and validation for invalid or unsupported lifecycle settings.
    • Added lifecycle details and warnings to operation results.
docs: define native Helm release lifecycle Mikhail Shirkov (@shirkevich) (#2846) ## what
  • Define the product requirements for native Helm release lifecycle controls in Atmos.
  • Specify configuration precedence, inheritance, Helm 4 SDK mappings, migration behavior, failure semantics, cancellation, observability, and deterministic integration coverage.
  • Establish the completion contract for native Helm components participating in dependency-ordered execution.

This is 1 of 4 in the native Helm lifecycle stack:

  1. #2846 — PRD and public contract
  2. #2847 — lifecycle model, schema, CLI, and Helm actions
  3. #2848 — execution context and cancellation propagation
  4. #2849 — operational reporting, documentation, and integration coverage

why

  • Native Helm currently exposes install, upgrade, and delete operations without a complete release-lifecycle policy surface.
  • Apply dry-run propagation, readiness selection, rollback, cleanup, history retention, hooks, CRDs, and cancellation need one reviewed contract before their implementation is released.
  • A documented contract keeps Atmos behavior aligned with Helm 4 while preserving Atmos stack inheritance and dependency execution conventions.

validation

  • Compared the design with the current native Helm implementation and Helm 4.2.1 SDK fields.
  • Followed existing Atmos PRD structure and repository coding conventions.
  • Kept related links limited to documents and pull requests already present in the repository.

references

  • Native Helm introduction: #2667
  • PRD: docs/prd/native-helm-release-lifecycle.md

Summary by CodeRabbit

  • Documentation
    • Added a draft product requirements document for configurable native Helm release lifecycle behavior.
    • Documented options for waiting, timeouts, rollbacks, cleanup, history limits, CRD handling, dry runs, cancellation, validation, observability, compatibility, and testing.
    • Defined configuration precedence, command-line overrides, operation applicability, external-target handling, action mappings, and DAG completion behavior.
    • Outlined implementation phases, success criteria, risks, and deferred work.
ci: fix three post-release pipeline failures (summarizer egress, goreleaser 422, Homebrew) Andriy Knysh (@aknysh) (#3063) ## what
  • Release-notes summarizer egress (.github/workflows/release.yml): add golang.org, go.dev, raw.githubusercontent.com, and dl.google.com to the summarize-notes job's harden-runner allowed-endpoints.
  • sign-and-attest release (.github/workflows/build.yml): add --skip=publish to the GoReleaser step in the sign-and-attest-release job.
  • Homebrew formula bump (.github/workflows/build.yml): replace the broken dawidd6/action-homebrew-bump-formula with a direct brew bump-formula-pr call.
  • Each fix ships a note under docs/fixes/2026-09-06-*.md.

why

Publishing v1.228.0 succeeded (release, binaries, Docker image, website all green), but three downstream jobs failed. None relate to the release contents — they are pre-existing pipeline gaps that were previously masked by the syft break fixed in #3061.

  • Summarizer died at Set up Go with getaddrinfo EAI_AGAIN golang.org before any summarization ran: its egress allow-list lacked the toolchain hosts actions/setup-go resolves (golang.org/go.dev) and downloads from (raw.githubusercontent.com/dl.google.com). (This is not the 125k release-body overflow the summarizer guards against — the draft body was ~5 KB.)
  • sign-and-attest ran goreleaser release --clean against the already-published release; GoReleaser PATCHed target_commitish, which GitHub rejects on a published release (422 Validation Failed). The job only rebuilds dist/* for provenance attestation, so it must not publish — --skip=publish fixes it.
  • Homebrew bump broke on the Homebrew 5.x now on GitHub runners: undefined method 'safe_system' for module Homebrew. v8 has byte-identical code and the upstream Homebrew-5 fix was reverted, so bumping the action does not help. The wrapped command brew bump-formula-pr is fine, so this calls it directly (atmos is in homebrew-core).

references

  • Follows #3061 (the syft fix that unblocked the release build).
  • Fix docs: docs/fixes/2026-09-06-release-notes-summarizer-egress-golang-org.md, docs/fixes/2026-09-06-sign-and-attest-goreleaser-skip-publish.md, docs/fixes/2026-09-06-homebrew-bump-safe-system.md.
  • The Homebrew bump for the current release was done manually via Homebrew/homebrew-core#302706 — the same brew bump-formula-pr command this PR automates, which pre-validates fix 3.
  • Fixes 1 and 2 are deterministic (an egress allow-list entry; a documented GoReleaser flag). Fix 3 (Homebrew) can only be fully verified on the next real release: published run; its fix doc records the manual fallback.

Summary by CodeRabbit

  • Bug Fixes

    • Improved Homebrew formula bumping during releases.
    • Release artifact rebuilding no longer attempts to republish an existing GitHub Release, avoiding related failures.
    • Release-note generation can access GitHub-hosted release assets when retrieving Go toolchain resources.
  • Documentation

    • Added troubleshooting guidance for Homebrew bump and release artifact issues.
    • Updated release-note documentation with asset-download requirements and clearer command examples.

🚀 Enhancements

feat: add Helm lifecycle reporting and integration coverage Mikhail Shirkov (@shirkevich) (#2849) ## what
  • Add actionable native Helm operation errors and canonical release data to CI job summaries.
  • Report the selected action and effective wait strategy before Helm runs, including recovery-driven hookOnly to watcher promotion.
  • Execute bulk delete in reverse dependency order so dependents are removed before their dependencies.
  • Track resolved native Helm values_files targets in --affected selection, including files outside the chart directory.
  • Document the approved nested release hierarchy, operation-specific flags, external delivery behavior, migration defaults, and dependency completion semantics.
  • Keep the public Helm example as a small happy path and move deterministic lifecycle, DAG, and failure fixtures to tests/fixtures/scenarios/helm-lifecycle.
  • Add release-history regression coverage for bounded and explicitly unlimited retention.

This is 4 of 4 in the native Helm lifecycle stack and is based on #2848:

  1. #2846 — approved PRD and public contract
  2. #2847 — release model, schema, CLI, and Helm actions
  3. #2848 — execution context and cancellation propagation
  4. #2849 — operational reporting, documentation, and integration coverage

why

  • Effective lifecycle values must be visible using the same canonical names as stack configuration.
  • Timeout failures must identify the selected operation, release, namespace, wait strategy, effective duration, and the configuration source that supplied it.
  • Cluster integration coverage proves Helm behavior that in-memory action tests cannot establish, especially hooks, recovery, cleanup, readiness, and dependency gating.
  • Bulk --affected execution must react to the files whose values are rendered, not only to changes in the values_files list itself.
  • Teardown must preserve dependency availability until every consuming release has been removed.

validation

  • 660 affected Go tests pass across Helm, Helm CI summaries, CLI, component dispatch, and schemas.
  • Focused post-rebase validation passes 8 masking/CLI tests and 445 Helm execution, context, and cancellation tests.
  • 10 focused native Helm affected tests and 33 changed-file index tests pass, including an aliased component whose values file is outside components/helm and an unrelated-file negative control.
  • 393 complete native Helm and component-graph tests pass after adding effective-policy reporting and reverse-delete regressions.
  • A live ten-release stack was fully deleted and rebuilt from scratch on Helm 4.2.3. Normalized release state, 2,513 rendered manifest lines, Deployments, Services, Ingresses, ServiceAccounts, and 191 environment keys matched the original; nine releases outside the stack were untouched.
  • A forced tier-zero upgrade failure returned non-zero, preserved the running workload, blocked seven direct and two transitive dependents without revision changes, retained both the original timeout and rollback causes, and recovered with a plain bulk apply.
  • Apply dry-run left revisions unchanged. Affected detection passed across five change locations, with the expected transitive closure when dependents were included.
  • Live verification confirms recovery-driven hookOnly to watcher promotion is reported before the action at the default log level with its field path and machine-readable code; Debug output distinguishes derived policy from a directly configured watcher.
  • Live bulk-delete dry-run is the strict reverse of apply order, and pairwise graph checks confirm every direct and transitive dependent precedes each dependency. Both verification dry-runs left all 19 releases deployed and every workload healthy.
  • The restored public example passes validate, template, emulator startup, diff, apply, resource checks, delete, and teardown using the current branch binary.\n- The isolated lifecycle scenario renders with --dependency-update; six objects include both weighted hooks and the preserved inline Helm template expression, and its full k3s workflow passes end to end.
  • describe component confirms deep-merged stack and component release policy.
  • MDX Prettier 3.6.2 and git diff --check pass.

references

  • Depends on #2848
  • Native Helm introduction: #2667
  • PRD: docs/prd/native-helm-release-lifecycle.md

Summary by CodeRabbit

  • New Features

    • Added native Helm lifecycle controls, progress reporting, rollback, cleanup, hooks, CRD installation, and release history management.
    • Added lifecycle details and deterministic aggregate summaries for bulk Helm operations.
    • Added optional chart dependency updates.
    • Added raw secret retrieval, enhanced !secret options, global-scope secret management, and improved secret masking.
    • Added dependency-ordered deletion and improved changed-values-file detection.
  • Bug Fixes

    • Improved Helm operation errors with actionable context.
    • Improved secret handling across supported storage providers and CI reports.
  • Documentation

    • Expanded Helm lifecycle, aggregate reporting, secrets, and command usage documentation.
feat: propagate component execution context Mikhail Shirkov (@shirkevich) (#2848) ## what
  • Add a backward-compatible caller context to component execution.
  • Propagate command and scheduler cancellation through direct Helm operations, bulk graph execution, rendering, diffing, delivery, and cluster actions.
  • Preserve fallback behavior for existing callers that do not provide a context.
  • Add cross-provider regression coverage so the shared execution change does not regress Ansible, Kubernetes, container, or emulator components.
  • Add opt-in --dependency-update support to chart-loading operations without hidden network access by default.

This is 3 of 4 in the native Helm lifecycle stack and is based on #2847:

  1. #2846 — approved PRD and public contract
  2. #2847 — release model, schema, CLI, and Helm actions
  3. #2848 — execution context, cancellation propagation, and opt-in dependency acquisition
  4. #2849 — operational reporting, documentation, and integration coverage

why

  • Several native Helm paths replaced the caller context with context.Background(), preventing signals and scheduler cancellation from consistently reaching active operations.
  • Context belongs in the shared component execution contract so direct and dependency-ordered execution observe the same cancellation semantics.
  • Missing chart dependencies should be actionable without making repository access or chart-directory mutation implicit.

validation

  • 147 Helm package tests.
  • 59 Helm CLI tests.
  • 217 shared component-provider tests.
  • 202 manifest-schema tests.
  • The branch is a clean descendant of #2847 and git diff --check passes.

references

  • Depends on #2847
  • PRD: docs/prd/native-helm-release-lifecycle.md

Summary by CodeRabbit

  • New Features

    • Added optional --dependency-update support for Helm template, apply, diff, and plan operations.
    • Missing Helm dependencies can now be fetched automatically when requested.
    • Helm rendering includes eligible hooks and preserves literal Helm expressions.
  • Bug Fixes

    • Improved cancellation and timeout handling across Helm, Ansible, Kubernetes, and lifecycle operations.
    • Canceled operations stop before starting additional targets or components.
    • Improved Helm upgrade and render error reporting.
    • Corrected command-level masking precedence.
  • Documentation

    • Documented Helm dependency-update behavior and affected chart files.

🤖 Automatic Updates

fix(deps): update module github.com/agiledragon/gomonkey/v2 to v2.14.2 @[renovate[bot]](https://github.com/apps/renovate) (#3067) This PR contains the following updates:
Package Change Age Confidence
github.com/agiledragon/gomonkey/v2 v2.14.0v2.14.2 age confidence

Release Notes

agiledragon/gomonkey (github.com/agiledragon/gomonkey/v2)

v2.14.2: Fix Darwin ARM64 same-page SIGBUS and private method patch corruption

Compare Source

  • Fix a potential SIGBUS on Darwin ARM64 when write removes execute permission from its own active page (NOP isolation was only 4 KiB on 16 KiB pages)
  • Fix private method patch corruption on Darwin ARM64: short methods could be overrun by a 24-byte jump; now use a 4-byte B plus an executable trampoline

Reference: #​188

v2.14.1: Fix potential SIGBUS on Darwin

Compare Source

  • Fix a potential SIGBUS on Darwin when a monkey-patch write crosses a memory page boundary
  • This affects patches whose function entry is near the end of a memory page

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

fix(deps): update module filippo.io/age to v1.3.2 @[renovate[bot]](https://github.com/apps/renovate) (#3066) This PR contains the following updates:
Package Change Age Confidence
filippo.io/age v1.3.1v1.3.2 age confidence

Release Notes

FiloSottile/age (filippo.io/age)

v1.3.2: age v1.3.2

Compare Source

age v1.3.2 is a minor release with a wide range of fixes and hardening improvements.

Some previously-accepted inputs are now rejected: headers over 2 MiB or 1024 recipients, malformed SSH keys in recipients files, and non-UTF-8 plaintext written to a terminal (force with -o -).

Pre-built binaries now cover windows/arm64 and darwin/amd64, and release archives include the compatibility plugins (age-plugin-pq, age-plugin-tag, and age-plugin-tagpq).


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

fix(deps): update aws-sdk-go-v2 monorepo @[renovate[bot]](https://github.com/apps/renovate) (#3044) > ℹ️ **Note** > > This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/aws/aws-sdk-go-v2 v1.43.4v1.45.1 age confidence
github.com/aws/aws-sdk-go-v2/config v1.32.18v1.33.2 age confidence
github.com/aws/aws-sdk-go-v2/credentials v1.19.17v1.20.2 age confidence
github.com/aws/aws-sdk-go-v2/service/bedrockruntime v1.52.0v1.60.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecr v1.57.2v1.63.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.40.0v1.45.0 age confidence
github.com/aws/aws-sdk-go-v2/service/eks v1.84.0v1.97.0 age confidence
github.com/aws/aws-sdk-go-v2/service/inspector2 v1.52.0v1.57.0 age confidence
github.com/aws/aws-sdk-go-v2/service/kms v1.51.1v1.58.0 age confidence
github.com/aws/aws-sdk-go-v2/service/organizations v1.51.3v1.58.0 age confidence
github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi v1.31.12v1.39.0 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0v1.110.0 age confidence
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.41.7v1.47.0 age confidence
github.com/aws/aws-sdk-go-v2/service/securityhub v1.71.0v1.79.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ssm v1.68.6v1.76.0 age confidence
github.com/aws/aws-sdk-go-v2/service/sso v1.30.17v1.36.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.36.0v1.41.0 age confidence
github.com/aws/aws-sdk-go-v2/service/sts v1.45.4v1.48.0 age confidence

Release Notes

aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)

v1.45.1

Compare Source

General Highlights

  • Bug Fix: Add assurance test for operation order.
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/elasticache: v1.45.1
    • Documentation: Doc only update, listing 'valkey7' and 'valkey8' as engine options for parameter groups.
  • github.com/aws/aws-sdk-go-v2/service/iotmanagedintegrations: v1.0.0
    • Release: New AWS service client module
    • Feature: Adding managed integrations APIs for IoT Device Management to setup and control devices across different manufacturers and connectivity protocols. APIs include managedthing operations, credential and provisioning profile management, notification configuration, and OTA update.
  • github.com/aws/aws-sdk-go-v2/service/iotsitewise: v1.47.0
    • Feature: AWS IoT SiteWise now supports MQTT-enabled, V3 gateways. Configure data destinations for real-time ingestion into AWS IoT SiteWise or buffered ingestion using Amazon S3 storage. You can also use path filters for precise data collection from specific MQTT topics.
  • github.com/aws/aws-sdk-go-v2/service/rds: v1.94.1
    • Documentation: Note support for Database Insights for Amazon RDS.

v1.45.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.38.0
    • Feature: API Gateway supports VPC link V2 for REST APIs.
  • github.com/aws/aws-sdk-go-v2/service/athena: v1.56.0
    • Feature: Introduces Spark workgroup features including log persistence, S3/CloudWatch delivery, UI and History Server APIs, and SparkConnect 3.5.6 support. Adds DPU usage limits at workgroup and query levels as well as DPU usage tracking for Capacity Reservation queries to optimize performance and costs.
  • github.com/aws/aws-sdk-go-v2/service/bedrock: v1.50.0
    • Feature: Add support to automatically enforce safeguards across accounts within an AWS Organization.
  • github.com/aws/aws-sdk-go-v2/service/bedrockagentcorecontrol: v1.14.0
    • Feature: Support for agentcore gateway interceptor configurations and NONE authorizer type
  • github.com/aws/aws-sdk-go-v2/service/bedrockdataautomationruntime: v1.9.0
    • Feature: Adding new fields to GetDataAutomationStatus: jobSubmissionTime, jobCompletionTime, and jobDurationInSeconds
  • github.com/aws/aws-sdk-go-v2/service/bedrockruntime: v1.45.0
    • Feature: Add support to automatically enforce safeguards across accounts within an AWS Organization.
  • github.com/aws/aws-sdk-go-v2/service/cloudformation: v1.71.0
    • Feature: Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets
  • github.com/aws/aws-sdk-go-v2/service/computeoptimizerautomation: v1.0.0
    • Release: New AWS service client module
    • Feature: Initial release of AWS Compute Optimizer Automation. Create automation rules to implement recommended actions on a recurring schedule based on your specified criteria. Supported actions include: snapshot and delete unattached EBS volumes and upgrade volume types to the latest generation.
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.148.0
    • Feature: New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks.
  • github.com/aws/aws-sdk-go-v2/service/controltower: v1.28.0
    • Feature: The manifest field is now optional for the AWS Control Tower CreateLandingZone and UpdateLandingZone APIs for Landing Zone version 4.0
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.274.0
    • Feature: This release adds a new capability to create and manage interruptible EC2 Capacity Reservations.
  • github.com/aws/aws-sdk-go-v2/service/ecr: v1.54.0
    • Feature: Add support for ECR managed signing
  • github.com/aws/aws-sdk-go-v2/service/eks: v1.75.0
    • Feature: Adds support for controlPlaneScalingConfig on EKS Clusters.
  • github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2: v1.54.1
    • Documentation: This release adds the health check log feature in ALB, allowing customers to send detailed target health check log data directly to their designated Amazon S3 bucket.
  • github.com/aws/aws-sdk-go-v2/service/invoicing: v1.9.0
    • Feature: Added the CreateProcurementPortalPreference, GetProcurementPortalPreference, PutProcurementPortalPreference, UpdateProcurementPortalPreferenceStatus, ListProcurementPortalPreferences and DeleteProcurementPortalPreference APIs for procurement portal preference management.
  • github.com/aws/aws-sdk-go-v2/service/kinesisvideo: v1.33.0
    • Feature: This release adds support for Tiered Storage
  • github.com/aws/aws-sdk-go-v2/service/kms: v1.49.0
    • Feature: Support for on-demand rotation of AWS KMS Multi-Region keys with imported key material
  • github.com/aws/aws-sdk-go-v2/service/lambda: v1.83.0
    • Feature: Launching Enhanced Error Handling and ESM Grouping capabilities for Kafka ESMs
  • github.com/aws/aws-sdk-go-v2/service/lexmodelsv2: v1.58.0
    • Feature: Adds support for Intent Disambiguation, allowing resolution of ambiguous user inputs when multiple intents match by presenting clarifying questions to users. Also adds Speech Detection Sensitivity configuration for optimizing voice activity detection sensitivity levels in various noise environments.
  • github.com/aws/aws-sdk-go-v2/service/marketplaceentitlementservice: v1.35.0
    • Feature: Endpoint update for new region
  • github.com/aws/aws-sdk-go-v2/service/marketplacemetering: v1.35.0
    • Feature: Endpoint update for new region
  • github.com/aws/aws-sdk-go-v2/service/mediapackagev2: v1.34.0
    • Feature: Adds support for excluding session key tags from HLS multivariant playlists
  • github.com/aws/aws-sdk-go-v2/service/odb: v1.6.0
    • Feature: Adds AssociateIamRoleToResource and DisassociateIamRoleFromResource APIs for managing IAM roles. Enhances CreateOdbNetwork and UpdateOdbNetwork APIs with KMS, STS, and cross-region S3 parameters. Adds OCI identity domain support to InitializeService API.
  • github.com/aws/aws-sdk-go-v2/service/organizations: v1.48.0
    • Feature: Add support for policy operations on the UPGRADE_ROLLOUT_POLICY policy type.
  • github.com/aws/aws-sdk-go-v2/service/qconnect: v1.24.0
    • Feature: This release introduces two new messaging channel subtypes: Push, WhatsApp, under MessageTemplate which is a resource in Amazon Q in Connect.
  • github.com/aws/aws-sdk-go-v2/service/quicksight: v1.98.0
    • Feature: Amazon Quick Suite now supports QuickChat as an embedding type when calling the GenerateEmbedUrlForRegisteredUser API, enabling developers to embed conversational AI agents directly into their applications.
  • github.com/aws/aws-sdk-go-v2/service/rds: v1.111.0
    • Feature: Add support for Upgrade Rollout Order
  • github.com/aws/aws-sdk-go-v2/service/redshift: v1.61.0
    • Feature: Added support for Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation.
  • github.com/aws/aws-sdk-go-v2/service/redshiftserverless: v1.32.0
    • Feature: Added UpdateLakehouseConfiguration API to manage Amazon Redshift Federated Permissions and AWS IAM Identity Center trusted identity propagation for namespaces.
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.226.0
    • Feature: Enhanced SageMaker HyperPod instance groups with support for MinInstanceCount, CapacityRequirements (Spot/On-Demand), and KubernetesConfig (labels and taints). Also Added speculative decoding and MaxInstanceCount for model optimization jobs.
  • github.com/aws/aws-sdk-go-v2/service/sagemakerruntimehttp2: v1.0.0
    • Release: New AWS service client module
    • Feature: Add support for bidirectional streaming invocations on SageMaker AI real-time endpoints
  • github.com/aws/aws-sdk-go-v2/service/securityir: v1.10.0
    • Feature: Add ListInvestigations and SendFeedback APIs to support SecurityIR AI agents
  • github.com/aws/aws-sdk-go-v2/service/sesv2: v1.55.0
    • Feature: Added support for new SES regions - Asia Pacific (Malaysia) and Canada (Calgary)
  • github.com/aws/aws-sdk-go-v2/service/transfer: v1.68.0
    • Feature: Adds support for creating Webapps accessible from a VPC.

v1.44.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.37.0
    • Feature: API Gateway now supports response streaming and new security policies for REST APIs and custom domain names.
  • github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.33.0
    • Feature: Support for API Gateway portals and portal products.
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.54.0
    • Feature: Amazon GuardDuty Malware Protection now supports AWS Backup, extending malware detection capabilities to EC2, EBS, and S3 backups.
  • github.com/aws/aws-sdk-go-v2/service/bcmpricingcalculator: v1.10.0
    • Feature: Add GroupSharingPreference, CostCategoryGroupSharingPreferenceArn, and CostCategoryGroupSharingPreferenceEffectiveDate to Bill Estimate. Add GroupSharingPreference and CostCategoryGroupSharingPreferenceArn to Bill Scenario.
  • github.com/aws/aws-sdk-go-v2/service/bedrockruntime: v1.44.0
    • Feature: This release includes support for Search Results.
  • github.com/aws/aws-sdk-go-v2/service/billing: v1.9.0
    • Feature: Added name filtering support to ListBillingViews API through the new names parameter to efficiently filter billing views by name.
  • github.com/aws/aws-sdk-go-v2/service/billingconductor: v1.27.0
    • Feature: This release adds support for Billing Transfers, enabling management of billing transfers with billing groups on AWS Billing Conductor.
  • github.com/aws/aws-sdk-go-v2/service/cloudtrail: v1.54.0
    • Feature: AWS CloudTrail now supports Insights for data events, expanding beyond management events to automatically detect unusual activity on data plane operations.
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.60.0
    • Feature: Adding support for ocsf version 1.5, add optional parameter MappingVersion
  • github.com/aws/aws-sdk-go-v2/service/connectcampaignsv2: v1.9.0
    • Feature: This release added support for ring timer configuration for campaign calls.
  • github.com/aws/aws-sdk-go-v2/service/costexplorer: v1.60.0
    • Feature: Add support for COST_CATEGORY, TAG, and LINKED_ACCOUNT AWS managed cost anomaly detection monitors
  • github.com/aws/aws-sdk-go-v2/service/costoptimizationhub: v1.21.0
    • Feature: Release ListEfficiencyMetrics API
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.48.0
    • Feature: Amazon DataZone now supports business metadata (readme and metadata forms) at the individual attribute (column) level, a new rule type for glossary terms, and the ability to update the owner of the root domain unit.
  • github.com/aws/aws-sdk-go-v2/service/dynamodb: v1.53.0
    • Feature: Extended Global Secondary Index (GSI) composite keys to support up to 8 attributes.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.272.0
    • Feature: This launch adds support for two new features: Regional NAT Gateway and IPAM Policies. IPAM policies offers customers central control for public IPv4 assignments across AWS services. Regional NAT is a single NAT Gateway that automatically expands across AZs in a VPC to maintain high availability.
  • github.com/aws/aws-sdk-go-v2/service/ecr: v1.53.0
    • Feature: Add support for ECR archival storage class and Inspector org policy for scanning
  • github.com/aws/aws-sdk-go-v2/service/ecs: v1.68.0
    • Feature: Added support for Amazon ECS Managed Instances infrastructure optimization configuration.
  • github.com/aws/aws-sdk-go-v2/service/emr: v1.56.0
    • Feature: Add CloudWatch Logs integration for Spark driver, executor and step logs
  • github.com/aws/aws-sdk-go-v2/service/fsx: v1.64.0
    • Feature: Adding File Server Resource Manager configuration to FSx Windows
  • github.com/aws/aws-sdk-go-v2/service/guardduty: v1.68.0
    • Feature: Add support for scanning and viewing scan results for backup resource types
  • github.com/aws/aws-sdk-go-v2/service/health: v1.35.0
    • Feature: Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter.
  • github.com/aws/aws-sdk-go-v2/service/iam: v1.52.0
    • Feature: Added the EnableOutboundWebIdentityFederation, DisableOutboundWebIdentityFederation and GetOutboundWebIdentityFederationInfo APIs for the IAM outbound federation feature.
  • github.com/aws/aws-sdk-go-v2/service/inspector2: v1.45.0
    • Feature: This release introduces BLOCKED_BY_ORGANIZATION_POLICY error code and IMAGE_ARCHIVED scanStatusReason. BLOCKED_BY_ORGANIZATION_POLICY error code is returned when an operation is blocked by an AWS Organizations policy. IMAGE_ARCHIVED scanStatusReason is returned when an Image is archived in ECR.
  • github.com/aws/aws-sdk-go-v2/service/invoicing: v1.8.0
    • Feature: Add support for adding Billing transfers in Invoice configuration
  • github.com/aws/aws-sdk-go-v2/service/lambda: v1.82.0
    • Feature: Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs.
  • github.com/aws/aws-sdk-go-v2/service/mediaconnect: v1.46.0
    • Feature: This release adds support for global routing in AWS Elemental MediaConnect. You can now use router inputs and router outputs to manage global video and audio routing workflows both within the AWS-Cloud and over the public internet.
  • github.com/aws/aws-sdk-go-v2/service/medialive: v1.87.0
    • Feature: MediaLive is adding support for MediaConnect Router by supporting a new input type called MEDIACONNECT_ROUTER. This new input type will provide seamless encrypted transport between MediaConnect Router and your MediaLive channel.
  • github.com/aws/aws-sdk-go-v2/service/networkfirewall: v1.58.0
    • Feature: Partner Managed Rulegroup feature support
  • github.com/aws/aws-sdk-go-v2/service/networkflowmonitor: v1.11.0
    • Feature: Added new enum value (AWS::EKS::Cluster) for type field under MonitorLocalResource
  • github.com/aws/aws-sdk-go-v2/service/partnercentralchannel: v1.0.0
    • Release: New AWS service client module
    • Feature: Initial GA launch of Partner Central Channel
  • github.com/aws/aws-sdk-go-v2/service/route53: v1.60.0
    • Feature: Add dual-stack endpoint support for Route53
  • github.com/aws/aws-sdk-go-v2/service/rum: v1.30.0
    • Feature: CloudWatch RUM now supports mobile application monitoring for Android and iOS platforms
  • github.com/aws/aws-sdk-go-v2/service/s3: v1.91.0
    • Feature: Adds support for blocking SSE-C writes to general purpose buckets.
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.224.0
    • Feature: Added support for enhanced metrics for SageMaker AI Endpoints. This features provides Utilization Metrics at instance and container granularity and also provides easy configuration of metric publish frequency from 10 sec -> 5 mins
  • github.com/aws/aws-sdk-go-v2/service/secretsmanager: v1.40.0
    • Feature: Adds support to create, update, retrieve, rotate, and delete managed external secrets.
  • github.com/aws/aws-sdk-go-v2/service/sfn: v1.40.0
    • Feature: Adds support to TestState for mocked results and exceptions, along with additional inspection data.
  • github.com/aws/aws-sdk-go-v2/service/signin: v1.0.0
    • Release: New AWS service client module
    • Feature: AWS Sign-In manages authentication for AWS services. This service provides secure authentication flows for accessing AWS resources from the console and developer tools. This release adds the CreateOAuth2Token API, which can be used to fetch OAuth2 access tokens and refresh tokens from Sign-In.
  • github.com/aws/aws-sdk-go-v2/service/sts: v1.41.0
    • Feature: IAM now supports outbound identity federation via the STS GetWebIdentityToken API, enabling AWS workloads to securely authenticate with external services using short-lived JSON Web Tokens.
  • github.com/aws/aws-sdk-go-v2/service/transcribestreaming: v1.33.0
    • Feature: This release adds support for additional locales in AWS transcribe streaming.

v1.43.8

Compare Source

General Highlights

  • Dependency Update: Update to smithy-go v1.27.10.
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2: v1.43.8
    • Bug Fix: Make X-Amz-Checksum-Mode appear on query parameters on presigned URLs
  • github.com/aws/aws-sdk-go-v2/service/account: v1.36.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.51.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/autoscaling: v1.73.0
    • Feature: Adds support for Distribution Segments in mixed instances policies, providing ordered prioritization across On-Demand Capacity Reservations, Capacity Blocks, interruptible Capacity Reservations, and On-Demand capacity.
  • github.com/aws/aws-sdk-go-v2/service/billingconductor: v1.33.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/cloudcontrol: v1.33.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/cloudhsmv2: v1.38.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchevents: v1.36.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/codebuild: v1.73.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/codegurureviewer: v1.38.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/codepipeline: v1.50.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/dataexchange: v1.45.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/deadline: v1.37.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/detective: v1.42.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/devopsagent: v1.11.0
    • Feature: Adds the UpdateApprovalAction API for resolving agent action approvals in AWS DevOps Agent agent spaces.
  • github.com/aws/aws-sdk-go-v2/service/directoryservice: v1.42.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/drs: v1.44.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.323.0
    • Feature: Fleet feature to support Capacity Reservation Resource Groups with Amazon EC2 Capacity Blocks and interruptible Capacity Reservations
  • github.com/aws/aws-sdk-go-v2/service/eks: v1.93.0
    • Feature: This feature would give customers the ability to tune TerminatedPodGcThreshold configuration in an Amazon EKS cluster.
  • github.com/aws/aws-sdk-go-v2/service/emrcontainers: v1.46.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/eventbridge: v1.49.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/evs: v1.14.0
    • Feature: EVS now supports i7i.metal-48xl EC2 bare metal instance type, delivering high random IOPS performance with real-time latency, ideal for IO intensive and latency-sensitive workloads such as transactional databases, real-time analytics, and AI ML pre-processing.
  • github.com/aws/aws-sdk-go-v2/service/frauddetector: v1.45.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/fsx: v1.69.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/globalaccelerator: v1.39.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/iamtoolbox: v1.0.0
    • Release: New AWS service client module
    • Feature: AWS Identity and Access Management (IAM) announces access troubleshooter, helping you debug access denied errors faster. Supported error messages now include an identifier you can use to retrieve detailed evaluations of the policies considered and their results. Preview in US East (N. Virginia).
  • github.com/aws/aws-sdk-go-v2/service/inspector: v1.34.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/iot: v1.78.0
    • Feature: As part of this release, we are extending capability of AWS IoT Rules Engine to support IoT InfluxDB Action. The IoT InfluxDB action lets customers send messages from IoT sensors and applications to InfluxDB.
  • github.com/aws/aws-sdk-go-v2/service/iotsecuretunneling: v1.37.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/iottwinmaker: v1.33.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/ivs: v1.56.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/ivsrealtime: v1.38.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/licensemanager: v1.42.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/marketplacecatalog: v1.46.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/marketplacemetering: v1.40.3
    • Documentation: Updated documentation to clarify duplicate-billing prevention and BatchMeterUsage retry guidance
  • github.com/aws/aws-sdk-go-v2/service/mediapackage: v1.43.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/mediapackagevod: v1.43.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/mediastore: v1.33.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/networkmanager: v1.45.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/outposts: v1.68.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/paymentcryptography: v1.34.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/pi: v1.40.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/qconnect: v1.35.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/resourceexplorer2: v1.28.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/servicecatalogappregistry: v1.39.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/servicediscovery: v1.44.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/shield: v1.38.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/signer: v1.36.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/storagegateway: v1.47.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/swf: v1.38.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/transcribestreaming: v1.39.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/transfer: v1.76.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/translate: v1.37.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/voiceid: v1.34.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/vpclattice: v1.27.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/wafv2: v1.78.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/wisdom: v1.36.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/workspacesthinclient: v1.24.0
    • Feature: Enable schema-based (de)serialization for this service.
  • github.com/aws/aws-sdk-go-v2/service/xray: v1.40.0
    • Feature: Enable schema-based (de)serialization for this service.

v1.43.7

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/aiops: v1.7.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler: v1.28.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/apprunner: v1.40.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.57.0
    • Feature: Launching S3 PITR malware scanning support for AWS Backup
  • github.com/aws/aws-sdk-go-v2/service/batch: v1.65.0
    • Feature: Increase the maximum value of jobExecutionTimeoutMinutes to support longer job timeouts during compute environment infrastructure updates.
  • github.com/aws/aws-sdk-go-v2/service/bcmdataexports: v1.16.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/bedrockagentcore: v1.27.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/bedrockagentcorecontrol: v1.40.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/bedrockdataautomation: v1.15.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/billing: v1.11.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/budgets: v1.43.7
    • Documentation: AWS Budget Name Validation Documentation Updates.
  • github.com/aws/aws-sdk-go-v2/service/chimesdkidentity: v1.28.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines: v1.27.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/cleanrooms: v1.45.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/cleanroomsml: v1.24.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/codeconnections: v1.11.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/connecthealth: v1.2.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/controlcatalog: v1.15.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.62.0
    • Feature: Added resourceConfigurations and allowUserProvidedConfigurations fields to environment blueprint configuration APIs, enabling customers who migrated from V1 to V2 domains to update resource configurations (such as lineage schedules) programmatically via the SDK.
  • github.com/aws/aws-sdk-go-v2/service/devopsguru: v1.41.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/emrserverless: v1.41.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/evs: v1.10.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/greengrassv2: v1.43.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/guardduty: v1.78.0
    • Feature: Add malware scan support for Continuous Backups, also known as Point-In-Time Recovery Points (PITR).
  • github.com/aws/aws-sdk-go-v2/service/identitystore: v1.37.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/iotmanagedintegrations: v1.10.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/ivschat: v1.22.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/keyspacesstreams: v1.7.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/kinesisvideowebrtcstorage: v1.21.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/managedblockchainquery: v1.23.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/marketplaceagreement: v1.16.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/mediapackagev2: v1.39.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/medicalimaging: v1.26.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/notifications: v1.8.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/observabilityadmin: v1.16.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/odb: v1.11.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/osis: v1.22.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/partnercentralchannel: v1.2.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/pcaconnectorscep: v1.12.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/pipes: v1.24.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/redshiftserverless: v1.35.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/resiliencehub: v1.36.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi: v1.32.0
    • Feature: The GetResources API now returns MissingTagKeys in ComplianceDetails, listing tag keys defined as required in the ReportRequiredTagBlock block of the effective tag policy that are absent from the resource.
  • github.com/aws/aws-sdk-go-v2/service/rolesanywhere: v1.23.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/route53globalresolver: v1.3.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/s3tables: v1.16.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/sagemakeredge: v1.32.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/sagemakergeospatial: v1.20.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/scheduler: v1.18.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/servicediscovery: v1.40.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/servicequotas: v1.35.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/ssmquicksetup: v1.9.0
    • Feature: Adding new BDD representation of endpoint ruleset
  • github.com/aws/aws-sdk-go-v2/service/workspacesthinclient: v1.21.0
    • Feature: Adding new BDD representation of endpoint ruleset

v1.43.6

v1.43.5

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2: v1.41.5
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.45.12
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/account: v1.30.5
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/acm: v1.37.23
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.46.12
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/aiops: v1.6.21
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/amp: v1.42.9
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/amplify: v1.38.14
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/amplifybackend: v1.32.20
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder: v1.28.20
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.39.1
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi: v1.29.14
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.34.1
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/appconfig: v1.43.13
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/appconfigdata: v1.23.22
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/appfabric: v1.16.21
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/appflow: v1.51.12
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/appintegrations: v1.37.7
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.41.14
    • Bug Fix: Fix a bug where a recorded clock skew could persist on the client even if the client and server clock ended up realigning.
  • github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler: [v1.27.12](service/applicationcostprofiler

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

chore(deps): update terraform http to v3.6.1 @[renovate[bot]](https://github.com/apps/renovate) (#2957) This PR contains the following updates:
Package Type Update Change
http (source) required_provider patch 3.6.03.6.1

[!WARNING]
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

hashicorp/terraform-provider-http (http)

v3.6.1

Compare Source

NOTES:

  • The StateStore lock request no longer passes the 'Path' or 'Info' fields as we no longer have access to those fields from within the provider (#​602)
  • Dependency updates which address upstream CVEs. (#​626)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

chore(deps): update step-security/harden-runner action to v2.21.1 @[renovate[bot]](https://github.com/apps/renovate) (#3062) This PR contains the following updates:
Package Type Update Change
step-security/harden-runner action patch v2.21.0v2.21.1

Release Notes

step-security/harden-runner (step-security/harden-runner)

v2.21.1

Compare Source

What's Changed
  • Improved performance of the disable-sudo feature.
  • Fixed an issue in the Community tier where new endpoints required by the GitHub Actions runner were not being implicitly allowed in block mode.
  • Fixed the Harden-Runner post step failing on Linux distributions that do not have a merged /usr filesystem layout (for example Debian 11), where /usr/bin/echo does not exist. This mainly affected self-hosted runners.
  • Documentation updates: clarified which features are in the Community (free) vs Enterprise tier.

Full Changelog: step-security/harden-runner@v2.21.0...v2.21.1


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

build(deps): bump golang from 1.27.0 to 1.27.1 in /.devcontainer @[dependabot[bot]](https://github.com/apps/dependabot) (#3059) > [!WARNING] > Cooldown could not be applied because no publication date was available from the registry. >

Bumps golang from 1.27.0 to 1.27.1.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)