Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .changeset/eighty-scissors-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
"@effect-aws/client-api-gateway-management-api": minor
"@effect-aws/client-cognito-identity-provider": minor
"@effect-aws/client-opensearch-serverless": minor
"@effect-aws/client-iot-jobs-data-plane": minor
"@effect-aws/client-timestream-influxdb": minor
"@effect-aws/client-cloudwatch-events": minor
"@effect-aws/client-timestream-query": minor
"@effect-aws/client-timestream-write": minor
"@effect-aws/client-bedrock-runtime": minor
"@effect-aws/client-cloudwatch-logs": minor
"@effect-aws/client-iot-events-data": minor
"@effect-aws/client-secrets-manager": minor
"@effect-aws/client-iot-data-plane": minor
"@effect-aws/client-organizations": minor
"@effect-aws/client-auto-scaling": minor
"@effect-aws/client-iot-wireless": minor
"@effect-aws/client-cloudsearch": minor
"@effect-aws/client-elasticache": minor
"@effect-aws/client-eventbridge": minor
"@effect-aws/client-cloudtrail": minor
"@effect-aws/client-cloudwatch": minor
"@effect-aws/client-codedeploy": minor
"@effect-aws/client-iot-events": minor
"@effect-aws/client-opensearch": minor
"@effect-aws/client-scheduler": minor
"@effect-aws/client-dynamodb": minor
"@effect-aws/client-firehose": minor
"@effect-aws/client-textract": minor
"@effect-aws/client-account": minor
"@effect-aws/client-bedrock": minor
"@effect-aws/client-kinesis": minor
"@effect-aws/client-athena": minor
"@effect-aws/client-lambda": minor
"@effect-aws/lib-dynamodb": minor
"@effect-aws/client-ec2": minor
"@effect-aws/client-ecr": minor
"@effect-aws/client-ecs": minor
"@effect-aws/client-iam": minor
"@effect-aws/client-iot": minor
"@effect-aws/client-kms": minor
"@effect-aws/client-rds": minor
"@effect-aws/client-ses": minor
"@effect-aws/client-sfn": minor
"@effect-aws/client-sns": minor
"@effect-aws/client-sqs": minor
"@effect-aws/client-ssm": minor
"@effect-aws/client-sts": minor
"@effect-aws/client-mq": minor
"@effect-aws/client-s3": minor
---

add expected Cause.TimeoutException in error channel to all the methods
6 changes: 6 additions & 0 deletions .changeset/nervous-icons-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@effect-aws/commons": minor
"@effect-aws/http-handler": minor
---

add option to set effectful request handler for better tracing and http client control
5 changes: 5 additions & 0 deletions .changeset/pink-carrots-think.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect-aws/client-bedrock-runtime": patch
---

add new invokeModelWithBidirectionalStream service method
9 changes: 9 additions & 0 deletions .changeset/smart-dolls-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@effect-aws/client-account": patch
"@effect-aws/client-cognito-identity-provider": patch
"@effect-aws/client-ecs": patch
"@effect-aws/client-mq": patch
"@effect-aws/client-ec2": patch
---

add new service methods
5 changes: 5 additions & 0 deletions .changeset/warm-geckos-applaud.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect-aws/powertools-tracer": patch
---

add missed Span class method, introduced in effect@3.14.0
12 changes: 5 additions & 7 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 18 additions & 9 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ new Readme(project, { org });

new Eslint(project);
new Vitest(project, { sharedSetupFiles: ["vitest.setup.ts"] });
project.addDevDeps("vitest-mock-extended@^2.0.2");
project.addDevDeps("aws-sdk-client-mock", "aws-sdk-client-mock-vitest@4.0.0");
project.addDevDeps("vitest-mock-extended");
project.addDevDeps("aws-sdk-client-mock", "aws-sdk-client-mock-vitest");

const effectDeps = ["effect@3.10.16"];
const effectDeps = ["effect@3.14.11"];

project.addScripts({ "codegen-client": "tsx ./scripts/codegen-cli.ts" });
project.addDeps(...effectDeps, "@effect/cli@0.48.25", "@effect/platform@0.69.25", "@effect/platform-node@0.64.27");
project.addDevDeps("@effect/language-service", "@effect/vitest@0.13.16");
project.addDeps(...effectDeps, "@effect/cli@0.59.11", "@effect/platform@0.80.11", "@effect/platform-node@0.76.21");
project.addDevDeps("@effect/language-service", "@effect/vitest@0.20.11");
project.tsconfigBase?.file.addOverride("compilerOptions.plugins", [
{ name: "@effect/language-service" },
]);
Expand All @@ -58,7 +58,7 @@ const commons = new TypeScriptLibProject({
parent: project,
name: "commons",
description: "Effectful AWS common library",
deps: ["@smithy/types", "@smithy/smithy-client"],
deps: ["@smithy/types", "@smithy/smithy-client", "@smithy/protocol-http"],
devDeps: [...effectDeps, "@aws-sdk/middleware-logger"],
peerDeps: commonPeerDeps,
});
Expand Down Expand Up @@ -161,13 +161,22 @@ new TypeScriptLibProject({
parent: project,
name: "s3",
description: "Effectful AWS S3 functions",
deps: ["@effect/platform@0.69.25"],
devDeps: [...effectDeps, "@aws-sdk/client-s3@^3"],
peerDeps: commonPeerDeps,
devDeps: [...effectDeps, "@effect/platform@0.80.11", "@aws-sdk/client-s3@^3"],
peerDeps: [...commonPeerDeps, "@effect/platform@>=0.69.25"],
workspacePeerDeps: [s3Client],
addExamples: true,
});

new TypeScriptLibProject({
parent: project,
name: "http-handler",
description: "Effectful AWS HTTP handler",
deps: ["@smithy/types", "@smithy/protocol-http", "@smithy/querystring-builder"],
devDeps: [...effectDeps, "@effect/platform@0.80.11"],
peerDeps: [...commonPeerDeps, "@effect/platform@>=0.69.25"],
workspacePeerDeps: [commons],
});

project.addGitIgnore(".direnv/"); // flake environment creates .direnv folder
project.addGitIgnore("docs/"); // docs are generated
project.addGitIgnore(".idea");
Expand Down
18 changes: 9 additions & 9 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/client-account/.projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/client-account/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading