Skip to content

Commit 0d1f85e

Browse files
Version Packages
1 parent ad7ca5c commit 0d1f85e

File tree

11 files changed

+35
-43
lines changed

11 files changed

+35
-43
lines changed

.changeset/cuddly-sides-grab.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/mighty-jokes-argue.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/new-cars-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/renovate-7698a48.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slow-teeth-tie.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/soft-times-happen.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# skuba
22

3+
## 10.2.0
4+
5+
### Minor Changes
6+
7+
- **format, lint:** Remove `cdk.context.json` from managed `.gitignore` ([#1851](https://github.com/seek-oss/skuba/pull/1851))
8+
9+
AWS CDK generates a `cdk.context.json` file when running commands like `cdk synth` or `cdk deploy`. This file is [recommended to be included in source control](https://docs.aws.amazon.com/cdk/v2/guide/context.html#context_construct).
10+
11+
If this change is incompatible with your project's setup, manually add `cdk.context.json` back to your `.gitignore` file, outside of the **skuba**-managed section.
12+
13+
- **lint:** Patch CDK snapshot tests to skip esbuild bundling ([#1844](https://github.com/seek-oss/skuba/pull/1844))
14+
15+
Executing esbuild bundling during unit tests can be slow. This patch looks for `new App()` use in `infra` test files, and if found, replaces them with `new App({ context: { 'aws:cdk:bundling-stacks': [] } })`. This context instructs the AWS CDK to skip bundling for the test stack.
16+
17+
- **format:** Add `--force-apply-all-patches` flag ([#1847](https://github.com/seek-oss/skuba/pull/1847))
18+
19+
The new `skuba format --force-apply-all-patches` flag will apply all patches, even if **skuba** does not detect that you are upgrading to a new version. This can be useful for addressing regressions that previous patches would have fixed but were added to the code later.
20+
21+
### Patch Changes
22+
23+
- **template/lambda-sqs-worker-cdk:** Update test to skip esbuild bundling by using the AWS CDK context key `aws:cdk:bundling-stacks` ([#1844](https://github.com/seek-oss/skuba/pull/1844))
24+
25+
- **lint:** Add a missing log when detecting malformed CODEOWNERS files ([#1839](https://github.com/seek-oss/skuba/pull/1839))
26+
327
## 10.1.0
428

529
### Minor Changes

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skuba",
3-
"version": "10.1.0",
3+
"version": "10.2.0",
44
"private": false,
55
"description": "SEEK development toolkit for backend applications and packages",
66
"homepage": "https://github.com/seek-oss/skuba#readme",
@@ -171,6 +171,6 @@
171171
"entryPoint": "src/index.ts",
172172
"template": null,
173173
"type": "package",
174-
"version": "10.1.0"
174+
"version": "10.2.0"
175175
}
176176
}

packages/eslint-config-skuba/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-config-skuba
22

3+
## 5.1.4
4+
5+
### Patch Changes
6+
7+
- **deps:** eslint-config-seek 14.4.0 ([#1842](https://github.com/seek-oss/skuba/pull/1842))
8+
39
## 5.1.3
410

511
### Patch Changes

packages/eslint-config-skuba/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-skuba",
3-
"version": "5.1.3",
3+
"version": "5.1.4",
44
"private": false,
55
"description": "ESLint config for skuba",
66
"homepage": "https://github.com/seek-oss/skuba/tree/main/packages/eslint-config-skuba#readme",
@@ -49,6 +49,6 @@
4949
"entryPoint": "index.js",
5050
"template": "oss-npm-package",
5151
"type": "package",
52-
"version": "10.1.0"
52+
"version": "10.2.0"
5353
}
5454
}

0 commit comments

Comments
 (0)