@cdklabs/cdk-ecs-codedeploy 0.0.438 → 0.0.439
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/.jsii +3 -3
- package/lib/api-canary/index.js +1 -1
- package/lib/ecs-appspec/index.js +1 -1
- package/lib/ecs-deployment/index.js +1 -1
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +1 -1
- package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-codedeploy/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-codedeploy/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-codedeploy/package.json +18 -18
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +20 -11
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +18 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +6 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +6 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +0 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +4 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
- package/node_modules/@aws-sdk/core/package.json +7 -5
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +581 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/bucket-endpoint-middleware.js +36 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-endpoint-middleware.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +42 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCache.js +39 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityCacheEntry.js +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/S3ExpressIdentityProviderImpl.js +49 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +38 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/signS3Express.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentity.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/interfaces/S3ExpressIdentityProvider.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +51 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +16 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +10 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +16 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +16 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +37 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +79 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/bucket-endpoint-middleware.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +15 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-endpoint-middleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/region-redirect-middleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-expires-middleware.d.ts +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCache.d.ts +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +31 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +40 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressMiddleware.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/signS3Express.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +79 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +100 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +87 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +150 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +97 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +87 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +88 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +147 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +7 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +15 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +10 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +35 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +8 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +18 -17
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/LICENSE +201 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/README.md +32 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +121 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +112 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/signature-v4-crt-container.js +3 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +35 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/signature-v4-crt-container.d.ts +28 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4MultiRegion.d.ts +41 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/signature-v4-crt-container.d.ts +20 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +61 -0
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-arn-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-arn-parser/README.md +4 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-es/index.js +21 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/index.d.ts +32 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/ts3.4/index.d.ts +14 -0
- package/node_modules/@aws-sdk/util-arn-parser/package.json +55 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@nodable/entities/README.md +41 -0
- package/node_modules/@nodable/entities/package.json +54 -0
- package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
- package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
- package/node_modules/@nodable/entities/src/entities.js +1177 -0
- package/node_modules/@nodable/entities/src/entityTries.js +49 -0
- package/node_modules/@nodable/entities/src/index.d.ts +264 -0
- package/node_modules/@nodable/entities/src/index.js +29 -0
- package/node_modules/@smithy/core/package.json +2 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
- package/node_modules/@smithy/middleware-retry/package.json +5 -5
- package/node_modules/@smithy/middleware-serde/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +27 -16
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +5 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +22 -16
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +2 -4
- package/node_modules/@smithy/node-http-handler/package.json +1 -1
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/package.json +1 -1
- package/node_modules/@smithy/smithy-client/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +20 -10
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +20 -10
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +12 -4
- package/node_modules/@smithy/util-retry/package.json +2 -2
- package/node_modules/@smithy/util-stream/package.json +2 -2
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +59 -34
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +61 -34
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -1
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +13 -13
- package/node_modules/@smithy/util-waiter/package.json +1 -1
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +53 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/README.md +8 -28
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxp.d.cts +172 -6
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/package.json +5 -4
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.d.ts +162 -3
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/DocTypeReader.js +2 -5
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OptionsBuilder.js +15 -11
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OrderedObjParser.js +168 -244
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +1 -1
- package/package.json +3 -3
- package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-codedeploy/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-codedeploy/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-codedeploy/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/cli.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/man.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/read.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/util.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Report.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPath.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XMLParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/validator.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/node2json.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-defaults-mode-browser",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.49",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
|
|
6
6
|
"build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-defaults-mode-browser",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@smithy/property-provider": "^4.2.14",
|
|
27
|
-
"@smithy/smithy-client": "^4.12.
|
|
27
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
28
28
|
"@smithy/types": "^4.14.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-defaults-mode-node",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.54",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
|
|
6
6
|
"build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-defaults-mode-node",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@smithy/credential-provider-imds": "^4.2.14",
|
|
28
28
|
"@smithy/node-config-provider": "^4.3.14",
|
|
29
29
|
"@smithy/property-provider": "^4.2.14",
|
|
30
|
-
"@smithy/smithy-client": "^4.12.
|
|
30
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
31
31
|
"@smithy/types": "^4.14.1",
|
|
32
32
|
"tslib": "^2.6.2"
|
|
33
33
|
},
|
|
@@ -187,6 +187,11 @@ class DefaultRetryToken {
|
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
const refusal = {
|
|
191
|
+
incompatible: 1,
|
|
192
|
+
attempts: 2,
|
|
193
|
+
capacity: 3,
|
|
194
|
+
};
|
|
190
195
|
class StandardRetryStrategy {
|
|
191
196
|
mode = exports.RETRY_MODES.STANDARD;
|
|
192
197
|
capacity = INITIAL_RETRY_TOKENS;
|
|
@@ -214,8 +219,10 @@ class StandardRetryStrategy {
|
|
|
214
219
|
}
|
|
215
220
|
async refreshRetryTokenForRetry(token, errorInfo) {
|
|
216
221
|
const maxAttempts = await this.getMaxAttempts();
|
|
217
|
-
const
|
|
218
|
-
|
|
222
|
+
const retryCode = this.retryCode(token, errorInfo, maxAttempts);
|
|
223
|
+
const shouldRetry = retryCode === 0;
|
|
224
|
+
const isLongPoll = token.isLongPoll?.();
|
|
225
|
+
if (shouldRetry || isLongPoll) {
|
|
219
226
|
const errorType = errorInfo.errorType;
|
|
220
227
|
this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ? Retry.throttlingDelay() : this.baseDelay);
|
|
221
228
|
const delayFromErrorType = this.retryBackoffStrategy.computeNextBackoffDelay(token.getRetryCount());
|
|
@@ -224,7 +231,9 @@ class StandardRetryStrategy {
|
|
|
224
231
|
retryDelay = Math.max(delayFromErrorType, Math.min(errorInfo.retryAfterHint.getTime() - Date.now(), delayFromErrorType + 5_000));
|
|
225
232
|
}
|
|
226
233
|
if (!shouldRetry) {
|
|
227
|
-
throw Object.assign(new Error("No retry token available"), {
|
|
234
|
+
throw Object.assign(new Error("No retry token available"), {
|
|
235
|
+
$backoff: Retry.v2026 && retryCode === refusal.capacity && isLongPoll ? retryDelay : 0,
|
|
236
|
+
});
|
|
228
237
|
}
|
|
229
238
|
else {
|
|
230
239
|
const capacityCost = this.getCapacityCost(errorType);
|
|
@@ -240,6 +249,9 @@ class StandardRetryStrategy {
|
|
|
240
249
|
getCapacity() {
|
|
241
250
|
return this.capacity;
|
|
242
251
|
}
|
|
252
|
+
async maxAttempts() {
|
|
253
|
+
return this.maxAttemptsProvider();
|
|
254
|
+
}
|
|
243
255
|
async getMaxAttempts() {
|
|
244
256
|
try {
|
|
245
257
|
return await this.maxAttemptsProvider();
|
|
@@ -249,11 +261,12 @@ class StandardRetryStrategy {
|
|
|
249
261
|
return DEFAULT_MAX_ATTEMPTS;
|
|
250
262
|
}
|
|
251
263
|
}
|
|
252
|
-
|
|
264
|
+
retryCode(tokenToRenew, errorInfo, maxAttempts) {
|
|
253
265
|
const attempts = tokenToRenew.getRetryCount() + 1;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
266
|
+
const retryableStatus = this.isRetryableError(errorInfo.errorType) ? 0 : refusal.incompatible;
|
|
267
|
+
const attemptStatus = attempts < maxAttempts ? 0 : refusal.attempts;
|
|
268
|
+
const capacityStatus = this.capacity >= this.getCapacityCost(errorInfo.errorType) ? 0 : refusal.capacity;
|
|
269
|
+
return retryableStatus || attemptStatus || capacityStatus;
|
|
257
270
|
}
|
|
258
271
|
getCapacityCost(errorType) {
|
|
259
272
|
return errorType === Retry.modifiedCostType() ? Retry.throttlingCost() : Retry.cost();
|
|
@@ -261,9 +274,6 @@ class StandardRetryStrategy {
|
|
|
261
274
|
isRetryableError(errorType) {
|
|
262
275
|
return errorType === "THROTTLING" || errorType === "TRANSIENT";
|
|
263
276
|
}
|
|
264
|
-
async maxAttempts() {
|
|
265
|
-
return this.maxAttemptsProvider();
|
|
266
|
-
}
|
|
267
277
|
}
|
|
268
278
|
|
|
269
279
|
class AdaptiveRetryStrategy {
|
|
@@ -3,6 +3,11 @@ import { INITIAL_RETRY_TOKENS, NO_RETRY_INCREMENT } from "./constants";
|
|
|
3
3
|
import { DefaultRetryBackoffStrategy } from "./DefaultRetryBackoffStrategy";
|
|
4
4
|
import { DefaultRetryToken } from "./DefaultRetryToken";
|
|
5
5
|
import { Retry } from "./retries-2026-config";
|
|
6
|
+
const refusal = {
|
|
7
|
+
incompatible: 1,
|
|
8
|
+
attempts: 2,
|
|
9
|
+
capacity: 3,
|
|
10
|
+
};
|
|
6
11
|
export class StandardRetryStrategy {
|
|
7
12
|
mode = RETRY_MODES.STANDARD;
|
|
8
13
|
capacity = INITIAL_RETRY_TOKENS;
|
|
@@ -30,8 +35,10 @@ export class StandardRetryStrategy {
|
|
|
30
35
|
}
|
|
31
36
|
async refreshRetryTokenForRetry(token, errorInfo) {
|
|
32
37
|
const maxAttempts = await this.getMaxAttempts();
|
|
33
|
-
const
|
|
34
|
-
|
|
38
|
+
const retryCode = this.retryCode(token, errorInfo, maxAttempts);
|
|
39
|
+
const shouldRetry = retryCode === 0;
|
|
40
|
+
const isLongPoll = token.isLongPoll?.();
|
|
41
|
+
if (shouldRetry || isLongPoll) {
|
|
35
42
|
const errorType = errorInfo.errorType;
|
|
36
43
|
this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ? Retry.throttlingDelay() : this.baseDelay);
|
|
37
44
|
const delayFromErrorType = this.retryBackoffStrategy.computeNextBackoffDelay(token.getRetryCount());
|
|
@@ -40,7 +47,9 @@ export class StandardRetryStrategy {
|
|
|
40
47
|
retryDelay = Math.max(delayFromErrorType, Math.min(errorInfo.retryAfterHint.getTime() - Date.now(), delayFromErrorType + 5_000));
|
|
41
48
|
}
|
|
42
49
|
if (!shouldRetry) {
|
|
43
|
-
throw Object.assign(new Error("No retry token available"), {
|
|
50
|
+
throw Object.assign(new Error("No retry token available"), {
|
|
51
|
+
$backoff: Retry.v2026 && retryCode === refusal.capacity && isLongPoll ? retryDelay : 0,
|
|
52
|
+
});
|
|
44
53
|
}
|
|
45
54
|
else {
|
|
46
55
|
const capacityCost = this.getCapacityCost(errorType);
|
|
@@ -56,6 +65,9 @@ export class StandardRetryStrategy {
|
|
|
56
65
|
getCapacity() {
|
|
57
66
|
return this.capacity;
|
|
58
67
|
}
|
|
68
|
+
async maxAttempts() {
|
|
69
|
+
return this.maxAttemptsProvider();
|
|
70
|
+
}
|
|
59
71
|
async getMaxAttempts() {
|
|
60
72
|
try {
|
|
61
73
|
return await this.maxAttemptsProvider();
|
|
@@ -65,11 +77,12 @@ export class StandardRetryStrategy {
|
|
|
65
77
|
return DEFAULT_MAX_ATTEMPTS;
|
|
66
78
|
}
|
|
67
79
|
}
|
|
68
|
-
|
|
80
|
+
retryCode(tokenToRenew, errorInfo, maxAttempts) {
|
|
69
81
|
const attempts = tokenToRenew.getRetryCount() + 1;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
82
|
+
const retryableStatus = this.isRetryableError(errorInfo.errorType) ? 0 : refusal.incompatible;
|
|
83
|
+
const attemptStatus = attempts < maxAttempts ? 0 : refusal.attempts;
|
|
84
|
+
const capacityStatus = this.capacity >= this.getCapacityCost(errorInfo.errorType) ? 0 : refusal.capacity;
|
|
85
|
+
return retryableStatus || attemptStatus || capacityStatus;
|
|
73
86
|
}
|
|
74
87
|
getCapacityCost(errorType) {
|
|
75
88
|
return errorType === Retry.modifiedCostType() ? Retry.throttlingCost() : Retry.cost();
|
|
@@ -77,7 +90,4 @@ export class StandardRetryStrategy {
|
|
|
77
90
|
isRetryableError(errorType) {
|
|
78
91
|
return errorType === "THROTTLING" || errorType === "TRANSIENT";
|
|
79
92
|
}
|
|
80
|
-
async maxAttempts() {
|
|
81
|
-
return this.maxAttemptsProvider();
|
|
82
|
-
}
|
|
83
93
|
}
|
|
@@ -36,13 +36,21 @@ export declare class StandardRetryStrategy implements RetryStrategyV2 {
|
|
|
36
36
|
* @returns the current available retry capacity.
|
|
37
37
|
*/
|
|
38
38
|
getCapacity(): number;
|
|
39
|
-
private getMaxAttempts;
|
|
40
|
-
private shouldRetry;
|
|
41
|
-
private getCapacityCost;
|
|
42
|
-
private isRetryableError;
|
|
43
39
|
/**
|
|
44
40
|
* There is an existing integration which accesses this field.
|
|
45
41
|
* @deprecated
|
|
46
42
|
*/
|
|
47
43
|
maxAttempts(): Promise<number>;
|
|
44
|
+
private getMaxAttempts;
|
|
45
|
+
/**
|
|
46
|
+
* 0 - OK to retry.
|
|
47
|
+
* 1 - error is not classified as retryable.
|
|
48
|
+
* 2 - attempt count exhausted.
|
|
49
|
+
* 3 - no capacity left (retry tokens exhausted).
|
|
50
|
+
*
|
|
51
|
+
* @returns 0 or the number of the highest priority (lowest integer) reason why retry is not possible.
|
|
52
|
+
*/
|
|
53
|
+
private retryCode;
|
|
54
|
+
private getCapacityCost;
|
|
55
|
+
private isRetryableError;
|
|
48
56
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-retry",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.5",
|
|
4
4
|
"description": "Shared retry utilities to be used in middleware packages.",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"sideEffects": false,
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@smithy/service-error-classification": "^4.3.
|
|
33
|
+
"@smithy/service-error-classification": "^4.3.1",
|
|
34
34
|
"@smithy/types": "^4.14.1",
|
|
35
35
|
"tslib": "^2.6.2"
|
|
36
36
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-stream",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.25",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
|
|
6
6
|
"build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline util-stream",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
32
|
-
"@smithy/node-http-handler": "^4.6.
|
|
32
|
+
"@smithy/node-http-handler": "^4.6.1",
|
|
33
33
|
"@smithy/types": "^4.14.1",
|
|
34
34
|
"@smithy/util-base64": "^4.3.2",
|
|
35
35
|
"@smithy/util-buffer-from": "^4.2.2",
|
|
@@ -52,39 +52,27 @@ const checkExceptions = (result) => {
|
|
|
52
52
|
return result;
|
|
53
53
|
};
|
|
54
54
|
|
|
55
|
-
const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attempt) => {
|
|
56
|
-
if (attempt > attemptCeiling)
|
|
57
|
-
return maxDelay;
|
|
58
|
-
const delay = minDelay * 2 ** (attempt - 1);
|
|
59
|
-
return randomInRange(minDelay, delay);
|
|
60
|
-
};
|
|
61
|
-
const randomInRange = (min, max) => min + Math.random() * (max - min);
|
|
62
55
|
const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => {
|
|
63
56
|
const observedResponses = {};
|
|
64
|
-
const
|
|
65
|
-
|
|
66
|
-
const message = createMessageFromResponse(reason);
|
|
67
|
-
observedResponses[message] |= 0;
|
|
68
|
-
observedResponses[message] += 1;
|
|
69
|
-
}
|
|
70
|
-
if (state !== exports.WaiterState.RETRY) {
|
|
71
|
-
return { state, reason, observedResponses };
|
|
72
|
-
}
|
|
73
|
-
let currentAttempt = 1;
|
|
57
|
+
const [minDelayMs, maxDelayMs] = [minDelay * 1000, maxDelay * 1000];
|
|
58
|
+
let currentAttempt = 0;
|
|
74
59
|
const waitUntil = Date.now() + maxWaitTime * 1000;
|
|
75
|
-
const
|
|
60
|
+
const warn403Time = Date.now() + 60_000;
|
|
61
|
+
let didWarn403 = false;
|
|
76
62
|
while (true) {
|
|
77
|
-
if (
|
|
78
|
-
const
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
63
|
+
if (currentAttempt > 0) {
|
|
64
|
+
const delayMs = exponentialBackoffWithJitter(minDelayMs, maxDelayMs, currentAttempt, waitUntil);
|
|
65
|
+
if (abortController?.signal?.aborted || abortSignal?.aborted) {
|
|
66
|
+
const message = "AbortController signal aborted.";
|
|
67
|
+
observedResponses[message] |= 0;
|
|
68
|
+
observedResponses[message] += 1;
|
|
69
|
+
return { state: exports.WaiterState.ABORTED, observedResponses };
|
|
70
|
+
}
|
|
71
|
+
if (Date.now() + delayMs > waitUntil) {
|
|
72
|
+
return { state: exports.WaiterState.TIMEOUT, observedResponses };
|
|
73
|
+
}
|
|
74
|
+
await sleep(delayMs / 1_000);
|
|
86
75
|
}
|
|
87
|
-
await sleep(delay);
|
|
88
76
|
const { state, reason } = await acceptorChecks(client, input);
|
|
89
77
|
if (reason) {
|
|
90
78
|
const message = createMessageFromResponse(reason);
|
|
@@ -92,23 +80,60 @@ const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, cl
|
|
|
92
80
|
observedResponses[message] += 1;
|
|
93
81
|
}
|
|
94
82
|
if (state !== exports.WaiterState.RETRY) {
|
|
95
|
-
return { state, reason, observedResponses };
|
|
83
|
+
return { state, reason, final: reason, observedResponses };
|
|
96
84
|
}
|
|
97
85
|
currentAttempt += 1;
|
|
86
|
+
if (!didWarn403 && Date.now() >= warn403Time) {
|
|
87
|
+
checkWarn403(observedResponses, client);
|
|
88
|
+
didWarn403 = true;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
const checkWarn403 = (observedResponses = {}, client) => {
|
|
93
|
+
const orderedErrors = Object.keys(observedResponses);
|
|
94
|
+
let count403 = 0;
|
|
95
|
+
for (const response of orderedErrors) {
|
|
96
|
+
const n = observedResponses[response] | 0;
|
|
97
|
+
if (response.startsWith("403:")) {
|
|
98
|
+
count403 += n;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
const clientLogger = client?.config?.logger;
|
|
102
|
+
const warningLogger = typeof clientLogger?.warn === "function" && !clientLogger.constructor?.name?.includes?.("NoOpLogger")
|
|
103
|
+
? clientLogger
|
|
104
|
+
: console;
|
|
105
|
+
if (count403 >= 3 || orderedErrors[orderedErrors.length - 1].startsWith("403:")) {
|
|
106
|
+
warningLogger.warn(`@smithy/util-waiter WARN - 403 status code encountered during waiter polling.`);
|
|
98
107
|
}
|
|
99
108
|
};
|
|
100
109
|
const createMessageFromResponse = (reason) => {
|
|
110
|
+
const status = reason?.$response?.statusCode ?? reason?.$metadata?.httpStatusCode;
|
|
101
111
|
if (reason?.$responseBodyText) {
|
|
102
|
-
return
|
|
112
|
+
return `${status ? status + ": " : ""}Deserialization error for body: ${reason.$responseBodyText}`;
|
|
103
113
|
}
|
|
104
|
-
if (
|
|
105
|
-
if (reason
|
|
106
|
-
return `${
|
|
114
|
+
if (status) {
|
|
115
|
+
if (reason?.$response || reason?.message) {
|
|
116
|
+
return `${status ?? "Unknown"}: ${reason?.message}`;
|
|
107
117
|
}
|
|
108
|
-
return `${
|
|
118
|
+
return `${status}: OK`;
|
|
109
119
|
}
|
|
110
120
|
return String(reason?.message ?? JSON.stringify(reason, getCircularReplacer()) ?? "Unknown");
|
|
111
121
|
};
|
|
122
|
+
const exponentialBackoffWithJitter = (minDelayMs, maxDelayMs, attempt, waitUntil) => {
|
|
123
|
+
const attemptCountCeiling = Math.log(maxDelayMs / minDelayMs) / Math.log(2) + 1;
|
|
124
|
+
if (attempt > attemptCountCeiling) {
|
|
125
|
+
return maxDelayMs;
|
|
126
|
+
}
|
|
127
|
+
const delay = minDelayMs * 2 ** (attempt - 1);
|
|
128
|
+
const capped = Math.min(delay, maxDelayMs);
|
|
129
|
+
const waitFor = randomInRange(minDelayMs, capped);
|
|
130
|
+
if (Date.now() + waitFor > waitUntil) {
|
|
131
|
+
const timeRemaining = waitUntil - Date.now();
|
|
132
|
+
return Math.max(0, timeRemaining - 500);
|
|
133
|
+
}
|
|
134
|
+
return waitFor;
|
|
135
|
+
};
|
|
136
|
+
const randomInRange = (min, max) => min + Math.random() * (max - min);
|
|
112
137
|
|
|
113
138
|
const validateWaiterOptions = (options) => {
|
|
114
139
|
if (options.maxWaitTime <= 0) {
|
|
@@ -1,39 +1,27 @@
|
|
|
1
1
|
import { getCircularReplacer } from "./circularReplacer";
|
|
2
2
|
import { sleep } from "./utils/sleep";
|
|
3
3
|
import { WaiterState } from "./waiter";
|
|
4
|
-
const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attempt) => {
|
|
5
|
-
if (attempt > attemptCeiling)
|
|
6
|
-
return maxDelay;
|
|
7
|
-
const delay = minDelay * 2 ** (attempt - 1);
|
|
8
|
-
return randomInRange(minDelay, delay);
|
|
9
|
-
};
|
|
10
|
-
const randomInRange = (min, max) => min + Math.random() * (max - min);
|
|
11
4
|
export const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => {
|
|
12
5
|
const observedResponses = {};
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
const message = createMessageFromResponse(reason);
|
|
16
|
-
observedResponses[message] |= 0;
|
|
17
|
-
observedResponses[message] += 1;
|
|
18
|
-
}
|
|
19
|
-
if (state !== WaiterState.RETRY) {
|
|
20
|
-
return { state, reason, observedResponses };
|
|
21
|
-
}
|
|
22
|
-
let currentAttempt = 1;
|
|
6
|
+
const [minDelayMs, maxDelayMs] = [minDelay * 1000, maxDelay * 1000];
|
|
7
|
+
let currentAttempt = 0;
|
|
23
8
|
const waitUntil = Date.now() + maxWaitTime * 1000;
|
|
24
|
-
const
|
|
9
|
+
const warn403Time = Date.now() + 60_000;
|
|
10
|
+
let didWarn403 = false;
|
|
25
11
|
while (true) {
|
|
26
|
-
if (
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
12
|
+
if (currentAttempt > 0) {
|
|
13
|
+
const delayMs = exponentialBackoffWithJitter(minDelayMs, maxDelayMs, currentAttempt, waitUntil);
|
|
14
|
+
if (abortController?.signal?.aborted || abortSignal?.aborted) {
|
|
15
|
+
const message = "AbortController signal aborted.";
|
|
16
|
+
observedResponses[message] |= 0;
|
|
17
|
+
observedResponses[message] += 1;
|
|
18
|
+
return { state: WaiterState.ABORTED, observedResponses };
|
|
19
|
+
}
|
|
20
|
+
if (Date.now() + delayMs > waitUntil) {
|
|
21
|
+
return { state: WaiterState.TIMEOUT, observedResponses };
|
|
22
|
+
}
|
|
23
|
+
await sleep(delayMs / 1_000);
|
|
31
24
|
}
|
|
32
|
-
const delay = exponentialBackoffWithJitter(minDelay, maxDelay, attemptCeiling, currentAttempt);
|
|
33
|
-
if (Date.now() + delay * 1000 > waitUntil) {
|
|
34
|
-
return { state: WaiterState.TIMEOUT, observedResponses };
|
|
35
|
-
}
|
|
36
|
-
await sleep(delay);
|
|
37
25
|
const { state, reason } = await acceptorChecks(client, input);
|
|
38
26
|
if (reason) {
|
|
39
27
|
const message = createMessageFromResponse(reason);
|
|
@@ -41,20 +29,59 @@ export const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortControl
|
|
|
41
29
|
observedResponses[message] += 1;
|
|
42
30
|
}
|
|
43
31
|
if (state !== WaiterState.RETRY) {
|
|
44
|
-
return { state, reason, observedResponses };
|
|
32
|
+
return { state, reason, final: reason, observedResponses };
|
|
45
33
|
}
|
|
46
34
|
currentAttempt += 1;
|
|
35
|
+
if (!didWarn403 && Date.now() >= warn403Time) {
|
|
36
|
+
checkWarn403(observedResponses, client);
|
|
37
|
+
didWarn403 = true;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
const checkWarn403 = (observedResponses = {}, client) => {
|
|
42
|
+
const orderedErrors = Object.keys(observedResponses);
|
|
43
|
+
let maxCount = 0;
|
|
44
|
+
let count403 = 0;
|
|
45
|
+
for (const response of orderedErrors) {
|
|
46
|
+
const n = observedResponses[response] | 0;
|
|
47
|
+
maxCount = Math.max(n, maxCount);
|
|
48
|
+
if (response.startsWith("403:")) {
|
|
49
|
+
count403 += n;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
const clientLogger = client?.config?.logger;
|
|
53
|
+
const warningLogger = typeof clientLogger?.warn === "function" && !clientLogger.constructor?.name?.includes?.("NoOpLogger")
|
|
54
|
+
? clientLogger
|
|
55
|
+
: console;
|
|
56
|
+
if (count403 >= 3 || orderedErrors[orderedErrors.length - 1].startsWith("403:")) {
|
|
57
|
+
warningLogger.warn(`@smithy/util-waiter WARN - 403 status code encountered during waiter polling.`);
|
|
47
58
|
}
|
|
48
59
|
};
|
|
49
60
|
const createMessageFromResponse = (reason) => {
|
|
61
|
+
const status = reason?.$response?.statusCode ?? reason?.$metadata?.httpStatusCode;
|
|
50
62
|
if (reason?.$responseBodyText) {
|
|
51
|
-
return
|
|
63
|
+
return `${status ? status + ": " : ""}Deserialization error for body: ${reason.$responseBodyText}`;
|
|
52
64
|
}
|
|
53
|
-
if (
|
|
54
|
-
if (reason
|
|
55
|
-
return `${
|
|
65
|
+
if (status) {
|
|
66
|
+
if (reason?.$response || reason?.message) {
|
|
67
|
+
return `${status ?? "Unknown"}: ${reason?.message}`;
|
|
56
68
|
}
|
|
57
|
-
return `${
|
|
69
|
+
return `${status}: OK`;
|
|
58
70
|
}
|
|
59
71
|
return String(reason?.message ?? JSON.stringify(reason, getCircularReplacer()) ?? "Unknown");
|
|
60
72
|
};
|
|
73
|
+
const exponentialBackoffWithJitter = (minDelayMs, maxDelayMs, attempt, waitUntil) => {
|
|
74
|
+
const attemptCountCeiling = Math.log(maxDelayMs / minDelayMs) / Math.log(2) + 1;
|
|
75
|
+
if (attempt > attemptCountCeiling) {
|
|
76
|
+
return maxDelayMs;
|
|
77
|
+
}
|
|
78
|
+
const delay = minDelayMs * 2 ** (attempt - 1);
|
|
79
|
+
const capped = Math.min(delay, maxDelayMs);
|
|
80
|
+
const waitFor = randomInRange(minDelayMs, capped);
|
|
81
|
+
if (Date.now() + waitFor > waitUntil) {
|
|
82
|
+
const timeRemaining = waitUntil - Date.now();
|
|
83
|
+
return Math.max(0, timeRemaining - 500);
|
|
84
|
+
}
|
|
85
|
+
return waitFor;
|
|
86
|
+
};
|
|
87
|
+
const randomInRange = (min, max) => min + Math.random() * (max - min);
|
|
@@ -8,4 +8,4 @@ import type { WaiterOptions, WaiterResult } from "./waiter";
|
|
|
8
8
|
*
|
|
9
9
|
* @internal
|
|
10
10
|
*/
|
|
11
|
-
export declare const createWaiter: <Client, Input>(options: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult
|
|
11
|
+
export declare const createWaiter: <Client, Input, Reason = any>(options: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult<Reason>>) => Promise<WaiterResult<Reason>>;
|
|
@@ -2,9 +2,10 @@ import type { WaiterOptions, WaiterResult } from "./waiter";
|
|
|
2
2
|
/**
|
|
3
3
|
* Function that runs polling as part of waiters. This will make one inital attempt and then
|
|
4
4
|
* subsequent attempts with an increasing delay.
|
|
5
|
+
*
|
|
5
6
|
* @param params - options passed to the waiter.
|
|
6
7
|
* @param client - AWS SDK Client
|
|
7
8
|
* @param input - client input
|
|
8
9
|
* @param acceptorChecks - function that checks the acceptor states on each poll.
|
|
9
10
|
*/
|
|
10
|
-
export declare const runPolling: <Client, Input>({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult
|
|
11
|
+
export declare const runPolling: <Client, Input, Reason = any>({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }: WaiterOptions<Client>, input: Input, acceptorChecks: (client: Client, input: Input) => Promise<WaiterResult<Reason>>) => Promise<WaiterResult<Reason>>;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import type { WaiterConfiguration
|
|
2
|
-
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export interface WaiterConfiguration<T> extends WaiterConfiguration__<T> {
|
|
6
|
-
}
|
|
1
|
+
import type { WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
export { WaiterConfiguration };
|
|
7
3
|
/**
|
|
8
4
|
* @internal
|
|
9
5
|
*/
|
|
@@ -16,7 +12,7 @@ export declare const waiterServiceDefaults: {
|
|
|
16
12
|
*/
|
|
17
13
|
export type WaiterOptions<Client> = WaiterConfiguration<Client> & Required<Pick<WaiterConfiguration<Client>, "minDelay" | "maxDelay">>;
|
|
18
14
|
/**
|
|
19
|
-
* @
|
|
15
|
+
* @public
|
|
20
16
|
*/
|
|
21
17
|
export declare enum WaiterState {
|
|
22
18
|
ABORTED = "ABORTED",
|
|
@@ -26,14 +22,19 @@ export declare enum WaiterState {
|
|
|
26
22
|
TIMEOUT = "TIMEOUT"
|
|
27
23
|
}
|
|
28
24
|
/**
|
|
29
|
-
* @
|
|
25
|
+
* @public
|
|
30
26
|
*/
|
|
31
|
-
export type WaiterResult = {
|
|
27
|
+
export type WaiterResult<R = any> = {
|
|
32
28
|
state: WaiterState;
|
|
33
29
|
/**
|
|
34
|
-
*
|
|
30
|
+
* @deprecated because this was untyped as `any`, new code should use the field 'final',
|
|
31
|
+
* which is the same value, but typed.
|
|
35
32
|
*/
|
|
36
33
|
reason?: any;
|
|
34
|
+
/**
|
|
35
|
+
* (optional) Indicates a reason for why a waiter has reached its state.
|
|
36
|
+
*/
|
|
37
|
+
final?: R;
|
|
37
38
|
/**
|
|
38
39
|
* Responses observed by the waiter during its polling, where the value
|
|
39
40
|
* is the count.
|
|
@@ -41,9 +42,8 @@ export type WaiterResult = {
|
|
|
41
42
|
observedResponses?: Record<string, number>;
|
|
42
43
|
};
|
|
43
44
|
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*
|
|
46
45
|
* Handles and throws exceptions resulting from the waiterResult
|
|
46
|
+
* @internal
|
|
47
47
|
* @param result - WaiterResult
|
|
48
48
|
*/
|
|
49
|
-
export declare const checkExceptions: (result: WaiterResult) => WaiterResult
|
|
49
|
+
export declare const checkExceptions: <R>(result: WaiterResult<R>) => WaiterResult<R>;
|
|
@@ -2,6 +2,59 @@
|
|
|
2
2
|
|
|
3
3
|
Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion
|
|
4
4
|
|
|
5
|
+
**5.7.0 / 2026-04-17**
|
|
6
|
+
- Use `@nodable/entities` v2.1.0
|
|
7
|
+
- breaking changes
|
|
8
|
+
- single entity scan. You're not allowed to user entity value to form another entity name.
|
|
9
|
+
- you cant add numeric external entity
|
|
10
|
+
- entity error message when expantion limit is crossed might change
|
|
11
|
+
- typings are updated for new options related to process entity
|
|
12
|
+
- please follow documentation of `@nodable/entities` for more detail.
|
|
13
|
+
- performance
|
|
14
|
+
- if processEntities is false, then there should not be impact on performance.
|
|
15
|
+
- if processEntities is true, but you dont pass entity decoder separately then performance may degrade by approx 8-10%
|
|
16
|
+
- if processEntities is true, and you pass entity decoder separately
|
|
17
|
+
- if no entity then performance should be same as before
|
|
18
|
+
- if there are entities then performance should be increased from past versions
|
|
19
|
+
- ignoreAttributes is not required to be set to set xml version for NCR entity value
|
|
20
|
+
- update 'fast-xml-builder' to sanitize malicious CDATA and comment's content
|
|
21
|
+
|
|
22
|
+
**5.6.0 / 2026-04-15**
|
|
23
|
+
- fix: entity replacement for numeric entities
|
|
24
|
+
- use @nodable/entities to replace entities
|
|
25
|
+
- this may change some error messages related to entities expansion limit or inavlid use
|
|
26
|
+
- post check would be exposed in future version
|
|
27
|
+
|
|
28
|
+
**5.5.12 / 2026-04-13**
|
|
29
|
+
- Performance Improvement: update path-expression-matcher
|
|
30
|
+
- use proxy pattern than Proxy class
|
|
31
|
+
|
|
32
|
+
**5.5.11 / 2026-04-08**
|
|
33
|
+
- Performance Improvement
|
|
34
|
+
- integrate ExpressionSet for stopNodes
|
|
35
|
+
|
|
36
|
+
**5.5.10 / 2026-04-03**
|
|
37
|
+
- increase default entity explansion limit as many projects demand for that
|
|
38
|
+
- performance improvement
|
|
39
|
+
- reduce calls to toString
|
|
40
|
+
- early return when entities are not present
|
|
41
|
+
- prepare rawAttrsForMatcher only if user sets `jPath: false`
|
|
42
|
+
|
|
43
|
+
**5.5.9 / 2026-03-23**
|
|
44
|
+
- combine typing files
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
**4.5.5 / 2026-03-22**
|
|
48
|
+
|
|
49
|
+
apply fixes from v5 (legacy maintenance branch v4-maintenance)
|
|
50
|
+
|
|
51
|
+
- support maxEntityCount
|
|
52
|
+
- support onDangerousProperty
|
|
53
|
+
- support maxNestedTags
|
|
54
|
+
- handle prototype pollution
|
|
55
|
+
- fix incorrect entity name replacement
|
|
56
|
+
- fix incorrect condition for entity expansion
|
|
57
|
+
|
|
5
58
|
**5.5.8 / 2026-03-20**
|
|
6
59
|
- pass read only matcher in callback
|
|
7
60
|
|