@exabugs/dynamodb-client 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.8.1] - 2025-12-28
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Terraform Outputs**: Removed deleted Cognito parameters from parameter-store module outputs
|
|
15
|
+
- Removed `cognito_user_pool_id`, `cognito_client_id`, `cognito_domain` from outputs.tf
|
|
16
|
+
- These parameters were removed in v0.8.0 but outputs.tf was not updated
|
|
17
|
+
- Fixes Terraform validation errors in consuming projects
|
|
18
|
+
|
|
10
19
|
## [0.8.0] - 2025-12-28
|
|
11
20
|
|
|
12
21
|
### BREAKING CHANGES
|
package/dist/server/handler.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exabugs/dynamodb-client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "DynamoDB Single-Table Client SDK with MongoDB-like API, Shadow Records, and Lambda implementation for serverless applications",
|
|
5
5
|
"author": "exabugs",
|
|
6
6
|
"license": "MIT",
|
|
@@ -5,9 +5,6 @@ output "parameter_arns" {
|
|
|
5
5
|
description = "作成されたParameter StoreパラメータのARN一覧"
|
|
6
6
|
value = {
|
|
7
7
|
records_api_url = aws_ssm_parameter.app_records_api_url.arn
|
|
8
|
-
cognito_user_pool_id = aws_ssm_parameter.app_admin_ui_cognito_user_pool_id.arn
|
|
9
|
-
cognito_client_id = aws_ssm_parameter.app_admin_ui_cognito_client_id.arn
|
|
10
|
-
cognito_domain = aws_ssm_parameter.app_admin_ui_cognito_domain.arn
|
|
11
8
|
dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.arn
|
|
12
9
|
records_function_arn = aws_ssm_parameter.lambda_records_function_arn.arn
|
|
13
10
|
}
|
|
@@ -18,9 +15,6 @@ output "parameter_names" {
|
|
|
18
15
|
description = "作成されたParameter Storeパラメータの名前一覧"
|
|
19
16
|
value = {
|
|
20
17
|
records_api_url = aws_ssm_parameter.app_records_api_url.name
|
|
21
|
-
cognito_user_pool_id = aws_ssm_parameter.app_admin_ui_cognito_user_pool_id.name
|
|
22
|
-
cognito_client_id = aws_ssm_parameter.app_admin_ui_cognito_client_id.name
|
|
23
|
-
cognito_domain = aws_ssm_parameter.app_admin_ui_cognito_domain.name
|
|
24
18
|
dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
|
|
25
19
|
records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
|
|
26
20
|
}
|
|
@@ -31,9 +25,6 @@ output "parameter_paths" {
|
|
|
31
25
|
description = "作成されたParameter Storeパラメータのパス一覧"
|
|
32
26
|
value = {
|
|
33
27
|
records_api_url = aws_ssm_parameter.app_records_api_url.name
|
|
34
|
-
cognito_user_pool_id = aws_ssm_parameter.app_admin_ui_cognito_user_pool_id.name
|
|
35
|
-
cognito_client_id = aws_ssm_parameter.app_admin_ui_cognito_client_id.name
|
|
36
|
-
cognito_domain = aws_ssm_parameter.app_admin_ui_cognito_domain.name
|
|
37
28
|
dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
|
|
38
29
|
records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
|
|
39
30
|
}
|