Skip to content

Commit 5ffc037

Browse files
committed
Merge branch 'main' into beta
2 parents f942a1d + a336cf6 commit 5ffc037

32 files changed

Lines changed: 3359 additions & 2589 deletions
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect-aws/client-kms": patch
3+
---
4+
5+
update kms service with new method
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@effect-aws/cloudfront": major
3+
---
4+
5+
Migrate to effect v4

β€Ž.projenrc.tsβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,15 @@ new TypeScriptLibProject({
213213
peerDeps: ["effect@>=4.0.0 <5.0.0"],
214214
});
215215

216+
new TypeScriptLibProject({
217+
parent: project,
218+
name: "cloudfront",
219+
description: "Effectful AWS CloudFront modules",
220+
deps: ["@aws-sdk/cloudfront-signer@^3"],
221+
devDeps: [...effectDeps],
222+
peerDeps: ["effect@>=4.0.0 <5.0.0"],
223+
});
224+
216225
project.addGitIgnore("/.direnv"); // flake environment creates .direnv folder
217226
project.addGitIgnore("/docs"); // docs are generated
218227
project.addGitIgnore(".idea");

β€Žpackages/client-kms/CHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
- Updated dependencies [[`57b06d0`](https://github.com/floydspace/effect-aws/commit/57b06d0474b35ae754e8e1b0a317e15669191779)]:
5252
- @effect-aws/commons@1.0.0-beta.0
5353

54+
## 1.11.2
55+
56+
### Patch Changes
57+
58+
- [`51d1f59`](https://github.com/floydspace/effect-aws/commit/51d1f59e02e59bae937b418dc6b0cb2eadc8b278) Thanks [@floydspace](https://github.com/floydspace)! - update kms service with new method
59+
5460
## 1.11.0
5561

5662
### Minor Changes

β€Žpackages/client-kms/src/KMSService.tsβ€Ž

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ import {
7777
GenerateRandomCommand,
7878
type GenerateRandomCommandInput,
7979
type GenerateRandomCommandOutput,
80+
GetKeyLastUsageCommand,
81+
type GetKeyLastUsageCommandInput,
82+
type GetKeyLastUsageCommandOutput,
8083
GetKeyPolicyCommand,
8184
type GetKeyPolicyCommandInput,
8285
type GetKeyPolicyCommandOutput,
@@ -261,6 +264,7 @@ const commands = {
261264
GenerateDataKeyWithoutPlaintextCommand,
262265
GenerateMacCommand,
263266
GenerateRandomCommand,
267+
GetKeyLastUsageCommand,
264268
GetKeyPolicyCommand,
265269
GetKeyRotationStatusCommand,
266270
GetParametersForImportCommand,
@@ -778,6 +782,17 @@ export interface KMSService$ {
778782
| UnsupportedOperationError
779783
>;
780784

785+
/**
786+
* @see {@link GetKeyLastUsageCommand}
787+
*/
788+
getKeyLastUsage(
789+
args: GetKeyLastUsageCommandInput,
790+
options?: HttpHandlerOptions,
791+
): Effect.Effect<
792+
GetKeyLastUsageCommandOutput,
793+
Cause.TimeoutError | SdkError | DependencyTimeoutError | InvalidArnError | KMSInternalError | NotFoundError
794+
>;
795+
781796
/**
782797
* @see {@link GetKeyPolicyCommand}
783798
*/

β€Žpackages/cloudfront/.gitattributesβ€Ž

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/cloudfront/.gitignoreβ€Ž

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/cloudfront/.npmignoreβ€Ž

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/cloudfront/.projen/deps.jsonβ€Ž

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/cloudfront/.projen/files.jsonβ€Ž

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)