@btc-embedded/cdk-extensions 0.23.3 → 0.23.5

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.
Files changed (135) hide show
  1. package/.jsii +41 -41
  2. package/CHANGELOG.md +14 -0
  3. package/assets/cli/catnip.js +154 -166
  4. package/lib/constructs/EventPipe.js +1 -1
  5. package/lib/constructs/ExportedService.js +1 -1
  6. package/lib/constructs/S3Bucket.js +1 -1
  7. package/lib/constructs/SecureRestApi.js +1 -1
  8. package/lib/constructs/SecureRestApiV2.js +1 -1
  9. package/lib/constructs/api-keys/ApiKeyClientAuthorization.js +1 -1
  10. package/lib/constructs/api-keys/ApiKeyManagement.js +1 -1
  11. package/lib/constructs/api-keys/ApiKeyPreTokenHandler.js +1 -1
  12. package/lib/constructs/api-keys/ApiKeyStore.js +1 -1
  13. package/lib/extensions/ApiGatewayExtension.js +1 -1
  14. package/lib/extensions/ApplicationContainer.js +1 -1
  15. package/lib/extensions/ApplicationLoadBalancerExtension.js +1 -1
  16. package/lib/extensions/ApplicationLoadBalancerExtensionV2.js +1 -1
  17. package/lib/extensions/CloudMapExtension.js +1 -1
  18. package/lib/extensions/DeactivatableServiceExtension.js +1 -1
  19. package/lib/extensions/DeploymentConfigExtension.js +1 -1
  20. package/lib/extensions/DocumentDbAccessExtension.js +1 -1
  21. package/lib/extensions/DomainEventMessagingExtension.js +1 -1
  22. package/lib/extensions/EfsMountExtension.js +1 -1
  23. package/lib/extensions/ExtraContainerExtension.js +1 -1
  24. package/lib/extensions/HTTPApiExtension.js +1 -1
  25. package/lib/extensions/LogExtension.js +1 -1
  26. package/lib/extensions/ModifyContainerDefinitionExtension.js +1 -1
  27. package/lib/extensions/ModifyTaskDefinitionExtension.js +1 -1
  28. package/lib/extensions/OpenIdExtension.js +1 -1
  29. package/lib/extensions/OpenTelemetryExtension.js +1 -1
  30. package/lib/extensions/PostgresDbAccessExtension.js +1 -1
  31. package/lib/extensions/SharedVolumeExtension.js +1 -1
  32. package/lib/extensions/TcpKeepAliveExtension.js +1 -1
  33. package/lib/platform/ApiGateway.js +1 -1
  34. package/lib/platform/ApiGatewayVpcLink.js +2 -2
  35. package/lib/platform/ApplicationLoadBalancer.js +1 -1
  36. package/lib/platform/ApplicationLoadBalancerV2.d.ts +1 -0
  37. package/lib/platform/ApplicationLoadBalancerV2.js +10 -3
  38. package/lib/platform/AuroraPostgresDB.js +5 -4
  39. package/lib/platform/BTCLogGroup.js +1 -1
  40. package/lib/platform/CognitoUserPool.js +2 -2
  41. package/lib/platform/DefaultUserPoolClients.js +1 -1
  42. package/lib/platform/DocumentDB.js +2 -2
  43. package/lib/platform/EcsCluster.js +1 -1
  44. package/lib/platform/EfsFileSystem.js +1 -1
  45. package/lib/platform/HostedZone.js +1 -1
  46. package/lib/platform/PrivateDnsNamespace.js +1 -1
  47. package/lib/platform/ResourceServer.js +1 -1
  48. package/lib/platform/Vpc.js +1 -1
  49. package/lib/platform/VpcV2.js +1 -1
  50. package/lib/stacks/ApplicationStack.js +1 -1
  51. package/lib/utils/BasePlatformStackResolver.js +1 -1
  52. package/lib/utils/StackParameter.js +1 -1
  53. package/node_modules/@nodable/entities/README.md +41 -0
  54. package/node_modules/@nodable/entities/package.json +54 -0
  55. package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
  56. package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
  57. package/node_modules/@nodable/entities/src/entities.js +1177 -0
  58. package/node_modules/@nodable/entities/src/entityTries.js +49 -0
  59. package/node_modules/@nodable/entities/src/index.d.ts +264 -0
  60. package/node_modules/@nodable/entities/src/index.js +29 -0
  61. package/node_modules/fast-xml-builder/CHANGELOG.md +40 -0
  62. package/node_modules/fast-xml-builder/LICENSE +21 -0
  63. package/node_modules/fast-xml-builder/README.md +74 -0
  64. package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
  65. package/node_modules/fast-xml-builder/lib/fxb.d.cts +270 -0
  66. package/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
  67. package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
  68. package/node_modules/fast-xml-builder/package.json +81 -0
  69. package/node_modules/fast-xml-builder/src/fxb.d.ts +270 -0
  70. package/node_modules/fast-xml-builder/src/fxb.js +599 -0
  71. package/node_modules/fast-xml-builder/src/ignoreAttributes.js +18 -0
  72. package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +359 -0
  73. package/node_modules/fast-xml-builder/src/util.js +16 -0
  74. package/node_modules/fast-xml-parser/CHANGELOG.md +165 -0
  75. package/node_modules/fast-xml-parser/README.md +21 -44
  76. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +1 -1
  77. package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -1
  78. package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -1
  79. package/node_modules/fast-xml-parser/lib/fxp.d.cts +343 -31
  80. package/node_modules/fast-xml-parser/lib/fxp.min.js +1 -1
  81. package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -1
  82. package/node_modules/fast-xml-parser/lib/fxparser.min.js +1 -1
  83. package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -1
  84. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +1 -1
  85. package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -1
  86. package/node_modules/fast-xml-parser/package.json +13 -8
  87. package/node_modules/fast-xml-parser/src/fxp.d.ts +335 -30
  88. package/node_modules/fast-xml-parser/src/fxp.js +1 -1
  89. package/node_modules/fast-xml-parser/src/util.js +18 -25
  90. package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +89 -87
  91. package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +10 -10
  92. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +23 -23
  93. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +29 -29
  94. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +1 -1
  95. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +39 -39
  96. package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +21 -21
  97. package/node_modules/fast-xml-parser/src/v6/XMLParser.js +22 -22
  98. package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +85 -85
  99. package/node_modules/fast-xml-parser/src/validator.js +34 -34
  100. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +5 -284
  101. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +335 -293
  102. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +160 -43
  103. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +540 -308
  104. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +26 -26
  105. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +99 -41
  106. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +10 -10
  107. package/node_modules/path-expression-matcher/LICENSE +21 -0
  108. package/node_modules/path-expression-matcher/README.md +872 -0
  109. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
  110. package/node_modules/path-expression-matcher/lib/pem.d.cts +634 -0
  111. package/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
  112. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
  113. package/node_modules/path-expression-matcher/package.json +78 -0
  114. package/node_modules/path-expression-matcher/src/Expression.js +232 -0
  115. package/node_modules/path-expression-matcher/src/ExpressionSet.js +209 -0
  116. package/node_modules/path-expression-matcher/src/Matcher.js +570 -0
  117. package/node_modules/path-expression-matcher/src/index.d.ts +523 -0
  118. package/node_modules/path-expression-matcher/src/index.js +29 -0
  119. package/node_modules/strnum/CHANGELOG.md +12 -2
  120. package/node_modules/strnum/README.md +1 -0
  121. package/node_modules/strnum/package.json +5 -4
  122. package/node_modules/strnum/strnum.js +99 -65
  123. package/node_modules/xml-naming/README.md +189 -0
  124. package/node_modules/xml-naming/package.json +54 -0
  125. package/node_modules/xml-naming/src/index.d.ts +74 -0
  126. package/node_modules/xml-naming/src/index.js +270 -0
  127. package/package.json +3 -2
  128. package/renovate.json5 +1 -0
  129. package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +0 -134
  130. package/node_modules/strnum/.github/SECURITY.md +0 -5
  131. package/node_modules/strnum/.vscode/launch.json +0 -25
  132. package/node_modules/strnum/algo.stflow +0 -84
  133. package/node_modules/strnum/strnum.test.js +0 -173
  134. package/node_modules/strnum/test.js +0 -9
  135. /package/node_modules/{fast-xml-parser/src/xmlbuilder → fast-xml-builder/src}/prettifyJs2Xml.js +0 -0
package/.jsii CHANGED
@@ -11017,7 +11017,7 @@
11017
11017
  },
11018
11018
  "locationInModule": {
11019
11019
  "filename": "src/platform/ApplicationLoadBalancerV2.ts",
11020
- "line": 147
11020
+ "line": 154
11021
11021
  },
11022
11022
  "parameters": [
11023
11023
  {
@@ -11092,7 +11092,7 @@
11092
11092
  "immutable": true,
11093
11093
  "locationInModule": {
11094
11094
  "filename": "src/platform/ApplicationLoadBalancerV2.ts",
11095
- "line": 145
11095
+ "line": 152
11096
11096
  },
11097
11097
  "name": "domainName",
11098
11098
  "overrides": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base",
@@ -11107,7 +11107,7 @@
11107
11107
  "immutable": true,
11108
11108
  "locationInModule": {
11109
11109
  "filename": "src/platform/ApplicationLoadBalancerV2.ts",
11110
- "line": 144
11110
+ "line": 151
11111
11111
  },
11112
11112
  "name": "targetGroup",
11113
11113
  "overrides": "@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base",
@@ -11350,7 +11350,7 @@
11350
11350
  },
11351
11351
  "locationInModule": {
11352
11352
  "filename": "src/platform/AuroraPostgresDB.ts",
11353
- "line": 281
11353
+ "line": 282
11354
11354
  },
11355
11355
  "parameters": [
11356
11356
  {
@@ -11376,7 +11376,7 @@
11376
11376
  "kind": "class",
11377
11377
  "locationInModule": {
11378
11378
  "filename": "src/platform/AuroraPostgresDB.ts",
11379
- "line": 181
11379
+ "line": 182
11380
11380
  },
11381
11381
  "methods": [
11382
11382
  {
@@ -11387,7 +11387,7 @@
11387
11387
  },
11388
11388
  "locationInModule": {
11389
11389
  "filename": "src/platform/AuroraPostgresDB.ts",
11390
- "line": 194
11390
+ "line": 195
11391
11391
  },
11392
11392
  "name": "fromBasePlatform",
11393
11393
  "parameters": [
@@ -11439,7 +11439,7 @@
11439
11439
  "immutable": true,
11440
11440
  "locationInModule": {
11441
11441
  "filename": "src/platform/AuroraPostgresDB.ts",
11442
- "line": 264
11442
+ "line": 265
11443
11443
  },
11444
11444
  "name": "cluster",
11445
11445
  "type": {
@@ -11454,7 +11454,7 @@
11454
11454
  "immutable": true,
11455
11455
  "locationInModule": {
11456
11456
  "filename": "src/platform/AuroraPostgresDB.ts",
11457
- "line": 276
11457
+ "line": 277
11458
11458
  },
11459
11459
  "name": "connectionSecret",
11460
11460
  "overrides": "@btc-embedded/cdk-extensions.AuroraPostgresClusterBase",
@@ -11470,7 +11470,7 @@
11470
11470
  "immutable": true,
11471
11471
  "locationInModule": {
11472
11472
  "filename": "src/platform/AuroraPostgresDB.ts",
11473
- "line": 270
11473
+ "line": 271
11474
11474
  },
11475
11475
  "name": "credentialsSecret",
11476
11476
  "overrides": "@btc-embedded/cdk-extensions.AuroraPostgresClusterBase",
@@ -11486,7 +11486,7 @@
11486
11486
  "immutable": true,
11487
11487
  "locationInModule": {
11488
11488
  "filename": "src/platform/AuroraPostgresDB.ts",
11489
- "line": 279
11489
+ "line": 280
11490
11490
  },
11491
11491
  "name": "endpoint",
11492
11492
  "overrides": "@btc-embedded/cdk-extensions.AuroraPostgresClusterBase",
@@ -11502,7 +11502,7 @@
11502
11502
  "immutable": true,
11503
11503
  "locationInModule": {
11504
11504
  "filename": "src/platform/AuroraPostgresDB.ts",
11505
- "line": 267
11505
+ "line": 268
11506
11506
  },
11507
11507
  "name": "securityGroup",
11508
11508
  "overrides": "@btc-embedded/cdk-extensions.AuroraPostgresClusterBase",
@@ -11559,7 +11559,7 @@
11559
11559
  "kind": "class",
11560
11560
  "locationInModule": {
11561
11561
  "filename": "src/platform/AuroraPostgresDB.ts",
11562
- "line": 161
11562
+ "line": 162
11563
11563
  },
11564
11564
  "name": "AuroraPostgresClusterBase",
11565
11565
  "properties": [
@@ -11572,7 +11572,7 @@
11572
11572
  "immutable": true,
11573
11573
  "locationInModule": {
11574
11574
  "filename": "src/platform/AuroraPostgresDB.ts",
11575
- "line": 166
11575
+ "line": 167
11576
11576
  },
11577
11577
  "name": "connectionSecret",
11578
11578
  "overrides": "@btc-embedded/cdk-extensions.IAuroraPostgresDB",
@@ -11589,7 +11589,7 @@
11589
11589
  "immutable": true,
11590
11590
  "locationInModule": {
11591
11591
  "filename": "src/platform/AuroraPostgresDB.ts",
11592
- "line": 165
11592
+ "line": 166
11593
11593
  },
11594
11594
  "name": "credentialsSecret",
11595
11595
  "overrides": "@btc-embedded/cdk-extensions.IAuroraPostgresDB",
@@ -11606,7 +11606,7 @@
11606
11606
  "immutable": true,
11607
11607
  "locationInModule": {
11608
11608
  "filename": "src/platform/AuroraPostgresDB.ts",
11609
- "line": 167
11609
+ "line": 168
11610
11610
  },
11611
11611
  "name": "endpoint",
11612
11612
  "overrides": "@btc-embedded/cdk-extensions.IAuroraPostgresDB",
@@ -11623,7 +11623,7 @@
11623
11623
  "immutable": true,
11624
11624
  "locationInModule": {
11625
11625
  "filename": "src/platform/AuroraPostgresDB.ts",
11626
- "line": 168
11626
+ "line": 169
11627
11627
  },
11628
11628
  "name": "securityGroup",
11629
11629
  "overrides": "@btc-embedded/cdk-extensions.IAuroraPostgresDB",
@@ -11645,7 +11645,7 @@
11645
11645
  "kind": "interface",
11646
11646
  "locationInModule": {
11647
11647
  "filename": "src/platform/AuroraPostgresDB.ts",
11648
- "line": 95
11648
+ "line": 96
11649
11649
  },
11650
11650
  "name": "AuroraPostgresClusterOverrides",
11651
11651
  "properties": [
@@ -11659,7 +11659,7 @@
11659
11659
  "immutable": true,
11660
11660
  "locationInModule": {
11661
11661
  "filename": "src/platform/AuroraPostgresDB.ts",
11662
- "line": 101
11662
+ "line": 102
11663
11663
  },
11664
11664
  "name": "clusterIdentifier",
11665
11665
  "optional": true,
@@ -11677,7 +11677,7 @@
11677
11677
  "immutable": true,
11678
11678
  "locationInModule": {
11679
11679
  "filename": "src/platform/AuroraPostgresDB.ts",
11680
- "line": 122
11680
+ "line": 123
11681
11681
  },
11682
11682
  "name": "serverlessV2MaxCapacity",
11683
11683
  "optional": true,
@@ -11695,7 +11695,7 @@
11695
11695
  "immutable": true,
11696
11696
  "locationInModule": {
11697
11697
  "filename": "src/platform/AuroraPostgresDB.ts",
11698
- "line": 115
11698
+ "line": 116
11699
11699
  },
11700
11700
  "name": "serverlessV2MinCapacity",
11701
11701
  "optional": true,
@@ -11713,7 +11713,7 @@
11713
11713
  "immutable": true,
11714
11714
  "locationInModule": {
11715
11715
  "filename": "src/platform/AuroraPostgresDB.ts",
11716
- "line": 129
11716
+ "line": 130
11717
11717
  },
11718
11718
  "name": "storageEncrypted",
11719
11719
  "optional": true,
@@ -11731,7 +11731,7 @@
11731
11731
  "immutable": true,
11732
11732
  "locationInModule": {
11733
11733
  "filename": "src/platform/AuroraPostgresDB.ts",
11734
- "line": 108
11734
+ "line": 109
11735
11735
  },
11736
11736
  "name": "vpcSubnets",
11737
11737
  "optional": true,
@@ -11753,7 +11753,7 @@
11753
11753
  "kind": "interface",
11754
11754
  "locationInModule": {
11755
11755
  "filename": "src/platform/AuroraPostgresDB.ts",
11756
- "line": 67
11756
+ "line": 68
11757
11757
  },
11758
11758
  "name": "AuroraPostgresClusterProps",
11759
11759
  "properties": [
@@ -11766,7 +11766,7 @@
11766
11766
  "immutable": true,
11767
11767
  "locationInModule": {
11768
11768
  "filename": "src/platform/AuroraPostgresDB.ts",
11769
- "line": 89
11769
+ "line": 90
11770
11770
  },
11771
11771
  "name": "engineVersion",
11772
11772
  "type": {
@@ -11782,7 +11782,7 @@
11782
11782
  "immutable": true,
11783
11783
  "locationInModule": {
11784
11784
  "filename": "src/platform/AuroraPostgresDB.ts",
11785
- "line": 74
11785
+ "line": 75
11786
11786
  },
11787
11787
  "name": "instanceName",
11788
11788
  "type": {
@@ -11798,7 +11798,7 @@
11798
11798
  "immutable": true,
11799
11799
  "locationInModule": {
11800
11800
  "filename": "src/platform/AuroraPostgresDB.ts",
11801
- "line": 69
11801
+ "line": 70
11802
11802
  },
11803
11803
  "name": "vpc",
11804
11804
  "type": {
@@ -11814,7 +11814,7 @@
11814
11814
  "immutable": true,
11815
11815
  "locationInModule": {
11816
11816
  "filename": "src/platform/AuroraPostgresDB.ts",
11817
- "line": 79
11817
+ "line": 80
11818
11818
  },
11819
11819
  "name": "clusterProps",
11820
11820
  "optional": true,
@@ -11831,7 +11831,7 @@
11831
11831
  "immutable": true,
11832
11832
  "locationInModule": {
11833
11833
  "filename": "src/platform/AuroraPostgresDB.ts",
11834
- "line": 84
11834
+ "line": 85
11835
11835
  },
11836
11836
  "name": "tunnelHost",
11837
11837
  "optional": true,
@@ -11853,7 +11853,7 @@
11853
11853
  "kind": "interface",
11854
11854
  "locationInModule": {
11855
11855
  "filename": "src/platform/AuroraPostgresDB.ts",
11856
- "line": 25
11856
+ "line": 26
11857
11857
  },
11858
11858
  "name": "AuroraPostgresTunnelHostProps",
11859
11859
  "properties": [
@@ -11868,7 +11868,7 @@
11868
11868
  "immutable": true,
11869
11869
  "locationInModule": {
11870
11870
  "filename": "src/platform/AuroraPostgresDB.ts",
11871
- "line": 61
11871
+ "line": 62
11872
11872
  },
11873
11873
  "name": "cpuType",
11874
11874
  "optional": true,
@@ -11887,7 +11887,7 @@
11887
11887
  "immutable": true,
11888
11888
  "locationInModule": {
11889
11889
  "filename": "src/platform/AuroraPostgresDB.ts",
11890
- "line": 54
11890
+ "line": 55
11891
11891
  },
11892
11892
  "name": "createSsmVpcEndpoints",
11893
11893
  "optional": true,
@@ -11905,7 +11905,7 @@
11905
11905
  "immutable": true,
11906
11906
  "locationInModule": {
11907
11907
  "filename": "src/platform/AuroraPostgresDB.ts",
11908
- "line": 31
11908
+ "line": 32
11909
11909
  },
11910
11910
  "name": "enabled",
11911
11911
  "optional": true,
@@ -11923,7 +11923,7 @@
11923
11923
  "immutable": true,
11924
11924
  "locationInModule": {
11925
11925
  "filename": "src/platform/AuroraPostgresDB.ts",
11926
- "line": 38
11926
+ "line": 39
11927
11927
  },
11928
11928
  "name": "instanceType",
11929
11929
  "optional": true,
@@ -11941,7 +11941,7 @@
11941
11941
  "immutable": true,
11942
11942
  "locationInModule": {
11943
11943
  "filename": "src/platform/AuroraPostgresDB.ts",
11944
- "line": 45
11944
+ "line": 46
11945
11945
  },
11946
11946
  "name": "subnetType",
11947
11947
  "optional": true,
@@ -17215,7 +17215,7 @@
17215
17215
  "kind": "interface",
17216
17216
  "locationInModule": {
17217
17217
  "filename": "src/platform/AuroraPostgresDB.ts",
17218
- "line": 140
17218
+ "line": 141
17219
17219
  },
17220
17220
  "name": "IAuroraPostgresDB",
17221
17221
  "properties": [
@@ -17228,7 +17228,7 @@
17228
17228
  "immutable": true,
17229
17229
  "locationInModule": {
17230
17230
  "filename": "src/platform/AuroraPostgresDB.ts",
17231
- "line": 148
17231
+ "line": 149
17232
17232
  },
17233
17233
  "name": "connectionSecret",
17234
17234
  "type": {
@@ -17244,7 +17244,7 @@
17244
17244
  "immutable": true,
17245
17245
  "locationInModule": {
17246
17246
  "filename": "src/platform/AuroraPostgresDB.ts",
17247
- "line": 142
17247
+ "line": 143
17248
17248
  },
17249
17249
  "name": "credentialsSecret",
17250
17250
  "type": {
@@ -17260,7 +17260,7 @@
17260
17260
  "immutable": true,
17261
17261
  "locationInModule": {
17262
17262
  "filename": "src/platform/AuroraPostgresDB.ts",
17263
- "line": 151
17263
+ "line": 152
17264
17264
  },
17265
17265
  "name": "endpoint",
17266
17266
  "type": {
@@ -17276,7 +17276,7 @@
17276
17276
  "immutable": true,
17277
17277
  "locationInModule": {
17278
17278
  "filename": "src/platform/AuroraPostgresDB.ts",
17279
- "line": 154
17279
+ "line": 155
17280
17280
  },
17281
17281
  "name": "securityGroup",
17282
17282
  "type": {
@@ -20958,6 +20958,6 @@
20958
20958
  "usedFeatures": [
20959
20959
  "class-covariant-overrides"
20960
20960
  ],
20961
- "version": "0.23.3",
20962
- "fingerprint": "CoJP4yTlqKLrAInXtzKtnZIKXYlFPJrRM/AI8DOiIKs="
20961
+ "version": "0.23.5",
20962
+ "fingerprint": "kH3JQ4B//sknI1UOlOD6grOJiwxjBa05d9JL37Nwv80="
20963
20963
  }
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
 
2
+ ## [0.23.4](https://github.com/btc-embedded/cdk-extensions/compare/v0.23.3...v0.23.4) (2026-05-06)
3
+
4
+
5
+ ### Features
6
+
7
+ * add stage name to tunnel host name to allow mutliple deployments ([10355de](https://github.com/btc-embedded/cdk-extensions/commit/10355de5fcc9ef95fcd73a5fff0b74df258935e0))
8
+
9
+ ## [0.23.3](https://github.com/btc-embedded/cdk-extensions/compare/v0.23.2...v0.23.3) (2026-04-29)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * remove error throw for dummy hosted zone lookup and update test case ([da55372](https://github.com/btc-embedded/cdk-extensions/commit/da5537248f1ae9fd71f0fc4f6abe21dff6fb345b))
15
+
2
16
  ## [0.23.2](https://github.com/btc-embedded/cdk-extensions/compare/v0.23.1...v0.23.2) (2026-04-21)
3
17
 
4
18