Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #740

Merged
merged 1 commit into from
Jan 20, 2022
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
11 changes: 0 additions & 11 deletions .changeset/clean-dingos-compare.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/metal-starfishes-tan.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/wise-ravens-do.md

This file was deleted.

33 changes: 33 additions & 0 deletions CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"engines": {
"node": ">=12"
},
"version": "3.17.1",
"version": "3.17.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down