Skip to content
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

fix(deps): update patch tuesday #957

Merged
merged 1 commit into from
Jul 23, 2024

Conversation

simonknittel
Copy link
Owner

This PR contains the following updates:

Package Type Update Change Pending
@tanstack/react-table (source) dependencies patch 8.19.2 -> 8.19.3
@trpc/client (source) dependencies patch 11.0.0-rc.456 -> 11.0.0-rc.461 11.0.0-rc.467 (+2)
@trpc/next (source) dependencies patch 11.0.0-rc.456 -> 11.0.0-rc.461 11.0.0-rc.467 (+2)
@trpc/react-query (source) dependencies patch 11.0.0-rc.456 -> 11.0.0-rc.461 11.0.0-rc.467 (+2)
@trpc/server (source) dependencies patch 11.0.0-rc.456 -> 11.0.0-rc.461 11.0.0-rc.467 (+2)
@types/lodash (source) devDependencies patch 4.17.6 -> 4.17.7
@typescript-eslint/eslint-plugin (source) devDependencies patch 7.16.0 -> 7.16.1 7.17.0
@typescript-eslint/parser (source) devDependencies patch 7.16.0 -> 7.16.1 7.17.0
actions/checkout action patch v4.1.3 -> v4.1.7
actions/download-artifact action patch v4.1.6 -> v4.1.8
actions/setup-node action patch v4.0.2 -> v4.0.3
actions/upload-artifact action patch v4.3.3 -> v4.3.4
hashicorp/setup-terraform action minor v3.0.0 -> v3.1.1
oven-sh/setup-bun action patch v1.2.1 -> v1.2.2
prettier (source) devDependencies patch 3.3.2 -> 3.3.3
renovatebot/github-action action minor v40.1.11 -> v40.2.2 v40.2.3
tailwindcss (source) devDependencies patch 3.4.4 -> 3.4.5 3.4.6

Release Notes

TanStack/table (@​tanstack/react-table)

v8.19.3

Compare Source

Version 8.19.3 - 7/14/24, 8:44 AM

Changes

Fix
  • table-core: assign unassign parentId in grouped row model (#​5657) (a71ce10) by PiR
Ci
Docs

Packages

trpc/trpc (@​trpc/client)

v11.0.0-rc.461

Compare Source

v11.0.0-rc.460

Compare Source

v11.0.0-rc.459

Compare Source

v11.0.0-rc.458

Compare Source

trpc/trpc (@​trpc/next)

v11.0.0-rc.461

Compare Source

v11.0.0-rc.460

Compare Source

v11.0.0-rc.459

Compare Source

v11.0.0-rc.458

Compare Source

trpc/trpc (@​trpc/react-query)

v11.0.0-rc.461

Compare Source

v11.0.0-rc.460

Compare Source

v11.0.0-rc.459

Compare Source

v11.0.0-rc.458

Compare Source

trpc/trpc (@​trpc/server)

v11.0.0-rc.461

Compare Source

v11.0.0-rc.460

Compare Source

v11.0.0-rc.459

Compare Source

v11.0.0-rc.458

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.16.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

actions/checkout (actions/checkout)

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

actions/download-artifact (actions/download-artifact)

v4.1.8

Compare Source

What's Changed

Full Changelog: actions/download-artifact@v4...v4.1.8

v4.1.7

Compare Source

What's Changed

Full Changelog: actions/download-artifact@v4.1.6...v4.1.7

actions/setup-node (actions/setup-node)

v4.0.3

Compare Source

What's Changed
Bug fixes:
Documentation changes:
Dependency updates:
New Contributors

Full Changelog: actions/setup-node@v4...v4.0.3

actions/upload-artifact (actions/upload-artifact)

v4.3.4

Compare Source

What's Changed

Full Changelog: actions/upload-artifact@v4.3.3...v4.3.4

hashicorp/setup-terraform (hashicorp/setup-terraform)

v3.1.1

Compare Source

BUG FIXES:

  • wrapper: Fix wrapper to output to stdout and stderr immediately when data is received (#​395)

v3.1.0

Compare Source

ENHANCEMENTS:

  • Automatically fallback to darwin/amd64 for Terraform versions before 1.0.2 as releases for darwin/arm64 are not available (#​409)
oven-sh/setup-bun (oven-sh/setup-bun)

v1.2.2

Compare Source

oven-sh/setup-bun is the github action for setting up Bun.

This release introduces support for the bun-download-url input, which lets you override the URL used to download the .zip file for Bun.

Here's an example:

- name: Setup Bun
  uses: oven-sh/setup-bun@v1.2.2
  with:
    bun-version: latest
    bun-download-url: "https://github.com/oven-sh/bun/releases/latest/download/bun-${{runner.os == 'macOS' && 'darwin' || runner.os}}-${{ runner.arch == 'X64' && 'x64' || 'arm64' }}.zip"
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

renovatebot/github-action (renovatebot/github-action)

v40.2.2

Compare Source

Build System
  • deps: update dependency typescript to v5.5.3 (aa452e6)
Continuous Integration
  • deps: update renovate docker tag to v37.426.0 (fbafef1)

v40.2.1

Compare Source

Documentation
  • update references to ghcr.io/renovatebot/renovate to v37.425.1 (d6eed90)
  • update references to renovatebot/github-action to v40.2.0 (5ddce28)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (65e4373)
Continuous Integration
  • deps: update renovate docker tag to v37.421.10 (07e2a27)
  • deps: update renovate docker tag to v37.422.0 (39218de)
  • deps: update renovate docker tag to v37.422.1 (5c05ca6)
  • deps: update renovate docker tag to v37.422.4 (de537d7)
  • deps: update renovate docker tag to v37.423.0 (7901eac)
  • deps: update renovate docker tag to v37.423.1 (dcd1175)
  • deps: update renovate docker tag to v37.424.0 (f4c559c)
  • deps: update renovate docker tag to v37.424.1 (beaea3f)
  • deps: update renovate docker tag to v37.424.2 (4ebf550)
  • deps: update renovate docker tag to v37.424.3 (2a0f11e)
  • deps: update renovate docker tag to v37.424.4 (f6a1a25)
  • deps: update renovate docker tag to v37.425.1 (e8ded76)

v40.2.0

Compare Source

Features
Documentation
  • update references to actions/checkout to v4.1.7 (4ff182b)
  • update references to ghcr.io/renovatebot/renovate to v37.399.10 (d9f7b19)
  • update references to ghcr.io/renovatebot/renovate to v37.409.1 (b1a2cdc)
  • update references to ghcr.io/renovatebot/renovate to v37.414.1 (ed5f0a1)
  • update references to ghcr.io/renovatebot/renovate to v37.421.3 (9f6242a)
  • update references to renovatebot/github-action to v40.1.12 (1d7e888)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (f9e5140)
  • deps: lock file maintenance (859f2d0)
  • deps: lock file maintenance (f0aa6a9)
  • deps: update dependency typescript to v5.5.2 (eeae706)
Continuous Integration
  • deps: update actions/checkout action to v4.1.7 (d92d1c6)
  • deps: update renovate docker tag to v37.388.0 (e58e07a)
  • deps: update renovate docker tag to v37.388.1 (b969215)
  • deps: update renovate docker tag to v37.390.0 (6537120)
  • deps: update renovate docker tag to v37.390.1 (b39ccad)
  • deps: update renovate docker tag to v37.391.0 (b390760)
  • deps: update renovate docker tag to v37.392.0 (b62d5e0)
  • deps: update renovate docker tag to v37.393.0 (2616b2e)
  • deps: update renovate docker tag to v37.395.0 (bed7655)
  • deps: update renovate docker tag to v37.399.0 (2040c48)
  • deps: update renovate docker tag to v37.399.10 (225db92)
  • deps: update renovate docker tag to v37.399.3 (88330a2)
  • deps: update renovate docker tag to v37.399.8 (cac78b1)
  • deps: update renovate docker tag to v37.401.1 (b45d221)
  • deps: update renovate docker tag to v37.401.2 (7a3b5f2)
  • deps: update renovate docker tag to v37.401.4 (d73e4b3)
  • deps: update renovate docker tag to v37.401.5 (a97d457)
  • deps: update renovate docker tag to v37.402.1 (203a2e1)
  • deps: update renovate docker tag to v37.404.1 (b7493c5)
  • deps: update renovate docker tag to v37.406.1 (9844fc5)
  • deps: update renovate docker tag to v37.406.2 (6b1676d)
  • deps: update renovate docker tag to v37.407.1 (5428f14)
  • deps: update renovate docker tag to v37.407.2 (0f6ba96)
  • deps: update renovate docker tag to v37.407.3 (186a106)
  • deps: update renovate docker tag to v37.408.0 (d0274f1)
  • deps: update renovate docker tag to v37.408.1 (56ab7c8)
  • deps: update renovate docker tag to v37.408.2 (23ad392)
  • deps: update renovate docker tag to v37.409.0 (d00fdff)
  • deps: update renovate docker tag to v37.409.1 (9936cc1)
  • deps: update renovate docker tag to v37.410.1 (07c293a)
  • deps: update renovate docker tag to v37.410.2 (8501ada)
  • deps: update renovate docker tag to v37.412.1 (a91a675)
  • deps: update renovate docker tag to v37.412.2 (91a706b)
  • deps: update renovate docker tag to v37.413.1 (4bc2e47)
  • deps: update renovate docker tag to v37.413.2 (82cd1a4)
  • deps: update renovate docker tag to v37.413.3 (c183ec8)
  • deps: update renovate docker tag to v37.413.4 (195bea4)
  • deps: update renovate docker tag to v37.414.0 (3c2f890)
  • deps: update renovate docker tag to v37.414.1 (8efba2f)
  • deps: update renovate docker tag to v37.415.0 (221a5ff)
  • deps: update renovate docker tag to v37.417.1 (7850b39)
  • deps: update renovate docker tag to v37.419.0 (b297b93)
  • deps: update renovate docker tag to v37.419.1 (b4f97bb)
  • deps: update renovate docker tag to v37.420.1 (6a8705c)
  • deps: update renovate docker tag to v37.421.0 (b79224e)
  • deps: update renovate docker tag to v37.421.1 (d210104)
  • deps: update renovate docker tag to v37.421.2 (1b88eda)
  • deps: update renovate docker tag to v37.421.3 (3172258)
  • deps: update renovate docker tag to v37.421.5 (5a127d9)
  • deps: update renovate docker tag to v37.421.6 (031bba2)
  • deps: update renovate docker tag to v37.421.7 (c9067a7)
  • deps: update renovate docker tag to v37.421.9 (59545c6)

v40.1.12

Compare Source

Documentation
  • add section about commit signing using GitHub App (#​838) (6537be5)
  • clarify file naming (#​835) (e063ae9)
  • update references to actions/checkout to v4.1.5 (9f55642)
  • update references to actions/checkout to v4.1.6 (ef89c4f)
  • update references to ghcr.io/renovatebot/renovate to v37.342.1 (9912bcb)
  • update references to ghcr.io/renovatebot/renovate to v37.356.1 (fb25c83)
  • update references to ghcr.io/renovatebot/renovate to v37.385.0 (af35cfd)
  • update references to renovatebot/github-action to v40.1.11 (ded0be5)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (2b0dd43)
Continuous Integration
  • deps: update actions/checkout action to v4.1.5 (726c6ce)
  • deps: update actions/checkout action to v4.1.6 (c469b8b)
  • deps: update renovate docker tag to v37.327.2 (a5a32e5)
  • deps: update renovate docker tag to v37.329.0 (80ac7b0)
  • deps: update renovate docker tag to v37.329.1 (c860f8b)
  • deps: update renovate docker tag to v37.330.0 (4ac1023)
  • deps: update renovate docker tag to v37.336.0 (c3a2a92)
  • deps: update renovate docker tag to v37.340.4 (a5c073e)
  • deps: update renovate docker tag to v37.340.5 (7c8209b)
  • deps: update renovate docker tag to v37.340.7 (#​836) (c83cffd)
  • deps: update renovate docker tag to v37.340.8 (747a790)
  • deps: update renovate docker tag to v37.340.9 (9510584)
  • deps: update renovate docker tag to v37.342.1 (8370a32)
  • deps: update renovate docker tag to v37.347.0 (f30f9cd)
  • deps: update renovate docker tag to v37.349.2 (ccae59d)
  • deps: update renovate docker tag to v37.349.3 (c3f50f9)
  • deps: update renovate docker tag to v37.351.2 (5aa9fd4)
  • deps: update renovate docker tag to v37.353.0 (fc254a7)
  • deps: update renovate docker tag to v37.353.1 (32702b1)
  • deps: update renovate docker tag to v37.354.1 (64b8e78)
  • deps: update renovate docker tag to v37.354.6 (835916b)
  • deps: update renovate docker tag to v37.355.1 (fa66f0f)
  • deps: update renovate docker tag to v37.356.0 (f26bed6)
  • deps: update renovate docker tag to v37.356.1 (0cb6900)
  • deps: update renovate docker tag to v37.358.0 (8d0582d)
  • deps: update renovate docker tag to v37.363.9 (1bb8d42)
  • deps: update renovate docker tag to v37.368.1 (012ab12)
  • deps: update renovate docker tag to v37.368.6 (129d6fe)
  • deps: update renovate docker tag to v37.368.7 (f4404cb)
  • deps: update renovate docker tag to v37.368.9 (45e5900)
  • deps: update renovate docker tag to v37.371.1 (e966f22)
  • deps: update renovate docker tag to v37.374.3 (ed9467d)
  • deps: update renovate docker tag to v37.375.2 (a57ae60)
  • deps: update renovate docker tag to v37.377.0 (7cd9e62)
  • deps: update renovate docker tag to v37.377.2 (c5b906f)
  • deps: update renovate docker tag to v37.377.4 (11c642f)
  • deps: update renovate docker tag to v37.377.5 (6be22c7)
  • deps: update renovate docker tag to v37.377.6 (1c7d894)
  • deps: update renovate docker tag to v37.377.7 (eeb5134)
  • deps: update renovate docker tag to v37.377.8 (9d4b1c8)
  • deps: update renovate docker tag to v37.379.0 (72ad8b1)
  • deps: update renovate docker tag to v37.381.10 (16df9eb)
  • deps: update renovate docker tag to v37.381.2 (2fd6048)
  • deps: update renovate docker tag to v37.381.3 (2132b87)
  • deps: update renovate docker tag to v37.381.4 (30625d1)
  • deps: update renovate docker tag to v37.381.6 (8050d3a)
  • deps: update renovate docker tag to v37.381.7 (6723050)
  • deps: update renovate docker tag to v37.381.8 (fa4b235)
  • deps: update renovate docker tag to v37.381.9 (d51bce0)
  • deps: update renovate docker tag to v37.382.3 (a7244bf)
  • deps: update renovate docker tag to v37.382.4 (9672df0)
  • deps: update renovate docker tag to v37.384.0 (2499cb4)
  • deps: update renovate docker tag to v37.385.0 (40dc267)
tailwindlabs/tailwindcss (tailwindcss)

v3.4.5

Compare Source

Fixed
  • Disable automatic var() injection for anchor properties (#​13826)
  • Use no value instead of blur(0px) for backdrop-blur-none and blur-none utilities (#​13830)
  • Add .mts and .cts config file detection (#​13940)
  • Don't generate utilities like px-1 unnecessarily when using utilities like px-1.5 (#​13959)
  • Always generate -webkit-backdrop-filter for backdrop-* utilities (#​13997)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Renovate Bot.

Copy link

vercel bot commented Jul 23, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Updated (UTC)
sinister-incorporated ⬜️ Ignored (Inspect) Jul 23, 2024 7:12am

Copy link

sonarcloud bot commented Jul 23, 2024

Copy link

Terraform Plan 📖 success

Show Plan

data.cloudflare_zones.main: Reading...
data.cloudflare_zones.main: Read complete after 0s [id=b0c2ab7d66b3c0b219fc876cf1d63fb9]
data.aws_cloudfront_cache_policy.managed_caching_optimized: Reading...
module.email_function.data.aws_kms_alias.ssm: Reading...
data.aws_caller_identity.current: Reading...
aws_iam_user.app_vercel: Refreshing state... [id=app_vercel]
aws_s3_account_public_access_block.main: Refreshing state... [id=220746603587]
aws_cloudfront_origin_access_control.care_bear_shooter_build_bucket: Refreshing state... [id=E9UD6HRKKYL4H]
aws_acm_certificate.main: Refreshing state... [id=arn:aws:acm:eu-central-1:220746603587:certificate/f4ebd0f0-1e53-49d7-bb39-a5ed253b7959]
aws_dynamodb_table.api_gateway_processed_requests: Refreshing state... [id=ApiGatewayProcessedRequests]
aws_budgets_budget.monthly_total: Refreshing state... [id=220746603587:Total monthly budget]
module.email_function.aws_sqs_queue.main_deadletter: Refreshing state... [id=https://sqs.eu-central-1.amazonaws.com/220746603587/terraform-20240211081314103700000003]
data.aws_caller_identity.current: Read complete after 0s [id=220746603587]
aws_cloudwatch_event_bus.api_gateway: Refreshing state... [id=api-gateway]
aws_cloudwatch_metric_alarm.lambda_errors: Refreshing state... [id=lambda-errors]
aws_cloudwatch_metric_alarm.lambda_throttles: Refreshing state... [id=lambda-throttles]
data.aws_cloudfront_cache_policy.managed_caching_optimized: Read complete after 0s [id=b2884449-e4de-46a7-ac36-70bc7f1ddd6d]
data.aws_iam_openid_connect_provider.github: Reading...
module.email_function.aws_ssm_parameter.custom[0]: Refreshing state... [id=/email-function/mailgun-api-key]
data.aws_iam_openid_connect_provider.github: Read complete after 0s [id=arn:aws:iam::220746603587:oidc-provider/token.actions.githubusercontent.com]
aws_api_gateway_rest_api.main: Refreshing state... [id=xguhlotnsl]
module.email_function.data.aws_kms_alias.ssm: Read complete after 0s [id=arn:aws:kms:eu-central-1:220746603587:alias/aws/ssm]
data.aws_cloudfront_origin_request_policy.managed_cors_s3_origin: Reading...
aws_s3_bucket.care_bear_shooter_build: Refreshing state... [id=care-bear-shooter-build-220746603587]
data.aws_cloudfront_origin_request_policy.managed_cors_s3_origin: Read complete after 1s [id=88a5eaf4-2fd4-4709-b370-b4c650ea3fcf]
aws_s3_bucket.mtls_truststore: Refreshing state... [id=mtls-truststore-220746603587]
aws_iam_role.api_gateway_cloudwatch: Refreshing state... [id=api-gateway]
aws_iam_access_key.app_vercel: Refreshing state... [id=AKIATGZMF3RB4EBRLJ6V]
module.email_function.aws_sqs_queue.main: Refreshing state... [id=https://sqs.eu-central-1.amazonaws.com/220746603587/terraform-20240211081339784400000005]
module.email_function.aws_cloudwatch_metric_alarm.deadletter_message_count: Refreshing state... [id=deadletter-message-count-email-function]
cloudflare_record.main_validation["sinister-api-test.simonknittel.de"]: Refreshing state... [id=89ca1b9952c1bd25cb32367f72d2bced]
aws_schemas_discoverer.test: Refreshing state... [id=events-event-bus-api-gateway]
aws_iam_user_policy.app_vercel: Refreshing state... [id=app_vercel:terraform-20240328141028994700000001]
aws_iam_role.api_gateway_eventbridge: Refreshing state... [id=terraform-20240206162421745900000001]
module.email_function.aws_cloudwatch_event_rule.main: Refreshing state... [id=arn:aws:events:eu-central-1:220746603587:event-bus/api-gateway/terraform-20240211081314103200000002]
module.email_function.aws_sqs_queue_redrive_allow_policy.main_deadletter: Refreshing state... [id=https://sqs.eu-central-1.amazonaws.com/220746603587/terraform-20240211081314103700000003]
module.email_function.aws_sqs_queue_policy.main: Refreshing state... [id=https://sqs.eu-central-1.amazonaws.com/220746603587/terraform-20240211081339784400000005]
aws_api_gateway_account.main: Refreshing state... [id=api-gateway-account]
aws_acm_certificate_validation.main: Refreshing state... [id=0001-01-01 00:00:00 +0000 UTC]
aws_api_gateway_request_validator.validate_request_body: Refreshing state... [id=aijdpj]
aws_cloudwatch_log_group.api_gateway_stage_default: Refreshing state... [id=API-Gateway-Execution-Logs_xguhlotnsl/default]
aws_cloudwatch_metric_alarm.api_gateway_count: Refreshing state... [id=api-gateway-count]
aws_api_gateway_resource.email_function: Refreshing state... [id=7af8s0]
aws_cloudwatch_metric_alarm.api_gateway_5xx_error: Refreshing state... [id=api-gateway-5xx-error]
module.email_function.aws_iam_role.main: Refreshing state... [id=terraform-20240211081405377800000007]
module.email_function_api_gateway.aws_api_gateway_model.request_body: Refreshing state... [id=atb4x1]
module.email_function.aws_cloudwatch_event_target.main: Refreshing state... [id=arn:aws:events:eu-central-1:220746603587:event-bus/api-gateway-terraform-20240211081314103200000002-terraform-20240211081405376200000006]
module.email_function_api_gateway.aws_api_gateway_method.main: Refreshing state... [id=agm-xguhlotnsl-7af8s0-POST]
module.email_function_api_gateway.aws_api_gateway_method_response.response_404: Refreshing state... [id=agmr-xguhlotnsl-7af8s0-POST-404]
module.email_function_api_gateway.aws_api_gateway_method_response.response_503: Refreshing state... [id=agmr-xguhlotnsl-7af8s0-POST-503]
module.email_function_api_gateway.aws_api_gateway_method_response.response_500: Refreshing state... [id=agmr-xguhlotnsl-7af8s0-POST-500]
module.email_function_api_gateway.aws_api_gateway_method_response.response_400: Refreshing state... [id=agmr-xguhlotnsl-7af8s0-POST-400]
module.email_function_api_gateway.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-xguhlotnsl-7af8s0-POST-200]
module.email_function_api_gateway.aws_api_gateway_integration.main: Refreshing state... [id=agi-xguhlotnsl-7af8s0-POST]
module.email_function.aws_lambda_function.main: Refreshing state... [id=email-function]
module.email_function_api_gateway.aws_api_gateway_integration_response.response_400: Refreshing state... [id=agir-xguhlotnsl-7af8s0-POST-400]
module.email_function_api_gateway.aws_api_gateway_integration_response.response_503: Refreshing state... [id=agir-xguhlotnsl-7af8s0-POST-503]
module.email_function_api_gateway.aws_api_gateway_integration_response.response_500: Refreshing state... [id=agir-xguhlotnsl-7af8s0-POST-500]
module.email_function_api_gateway.aws_api_gateway_integration_response.response_404: Refreshing state... [id=agir-xguhlotnsl-7af8s0-POST-404]
module.email_function_api_gateway.aws_api_gateway_integration_response.response_200: Refreshing state... [id=agir-xguhlotnsl-7af8s0-POST-200]
aws_api_gateway_deployment.main: Refreshing state... [id=8yroac]
aws_api_gateway_stage.default: Refreshing state... [id=ags-xguhlotnsl-default]
aws_api_gateway_method_settings.all: Refreshing state... [id=xguhlotnsl-default-*/*]
module.email_function.aws_lambda_permission.api_gateway: Refreshing state... [id=terraform-20240211081423816900000008]
module.email_function.aws_lambda_event_source_mapping.main: Refreshing state... [id=4c996691-1418-4285-8ef0-8f3745120e5a]
aws_iam_role.care_bear_shooter_build_uploader: Refreshing state... [id=care-bear-shooter-build-uploader]
aws_s3_bucket_cors_configuration.care_bear_shooter_build: Refreshing state... [id=care-bear-shooter-build-220746603587]
aws_cloudfront_distribution.care_bear_shooter_build: Refreshing state... [id=E3GY8A42OQ8RFW]
aws_s3_object.mtls_truststore: Refreshing state... [id=truststore.pem]
aws_api_gateway_domain_name.main: Refreshing state... [id=sinister-api-test.simonknittel.de]
aws_s3_bucket_policy.care_bear_shooter_build_cloudfront: Refreshing state... [id=care-bear-shooter-build-220746603587]
aws_api_gateway_base_path_mapping.main: Refreshing state... [id=sinister-api-test.simonknittel.de/]
cloudflare_record.main_cname: Refreshing state... [id=c4fe812314a613cbee9e669930fa4f39]

No changes. Your infrastructure matches the configuration.

Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed.

@simonknittel simonknittel merged commit 4d70e69 into develop Jul 23, 2024
13 checks passed
@simonknittel simonknittel deleted the renovate-self-hosted/patch-tuesday branch July 23, 2024 07:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants