Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 20, 2022
1 parent 268b882 commit 6906ddd
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 39 deletions.
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

0 comments on commit 6906ddd

Please sign in to comment.