-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
268b882
commit 6906ddd
Showing
5 changed files
with
34 additions
and
39 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,38 @@ | ||
# skuba | ||
|
||
## 3.17.2 | ||
|
||
### Patch Changes | ||
|
||
- **init:** Fix GitHub template cloning ([#739](https://github.com/seek-oss/skuba/pull/739)) | ||
|
||
This resolves the following error when cloning a project template from GitHub: | ||
|
||
```typescript | ||
UnknownTransportError: Git remote "[email protected]:owner/repo.git" uses an unrecognized transport protocol: "ssh" | ||
``` | ||
|
||
- **template/lambda-sqs-worker:** Remove qualifier from smoke test invocation ([#743](https://github.com/seek-oss/skuba/pull/743)) | ||
|
||
Previously, this template's smoke test hook specified a `$LATEST` qualifier in its `Lambda.Invoke` API call. AWS authorised the call based on the unqualified Lambda ARN in our `serverless.yml` IAM policy, but will stop doing so after April 2022. | ||
|
||
To avoid deployment failures, remove the qualifier in `src/hooks.ts`. An unqualified call is equivalent to targeting `$LATEST`. | ||
|
||
```diff | ||
- Qualifier: '$LATEST', | ||
+ Qualifier: undefined, | ||
``` | ||
|
||
- **node:** Register `tsconfig-paths` in REPL ([#745](https://github.com/seek-oss/skuba/pull/745)) | ||
|
||
This resolves the following error: | ||
|
||
```typescript | ||
Error: Cannot find module '/node_modules/skuba/lib/register' | ||
Require stack: | ||
- internal/preload | ||
``` | ||
|
||
## 3.17.1 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters