Skip to content

Commit

Permalink
Version Packages (#1555)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Jun 25, 2024
1 parent 821ac0e commit 3aa30f6
Show file tree
Hide file tree
Showing 24 changed files with 74 additions and 125 deletions.
7 changes: 0 additions & 7 deletions .changeset/brave-cars-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-roses-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-carrots-grow.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/early-moles-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-ties-crash.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/empty-wolves-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-houses-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-mice-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-buttons-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-trainers-reply.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-moose-smoke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-seahorses-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-suits-argue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-oranges-switch.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/tasty-schools-sort.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/ten-pets-hug.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tricky-bananas-fly.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-books-grow.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/violet-crabs-bake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-houses-cheer.md

This file was deleted.

59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,64 @@
# skuba

## 8.1.0

### Minor Changes

- **lint:** Skip generation of config files when present in `.gitignore` ([#1554](https://github.com/seek-oss/skuba/pull/1554))

`skuba lint` and `skuba format` now skip the generation of config files, like `.dockerignore` and `.npmrc`, if they are ignored by `.gitignore` files.

- **deps:** esbuild 0.21 ([#1569](https://github.com/seek-oss/skuba/pull/1569))

- **deps:** TypeScript 5.5 ([#1596](https://github.com/seek-oss/skuba/pull/1596))

This major release includes breaking changes. See the [TypeScript 5.5](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/) announcement for more information.

- **api:** Add Git.isFileGitIgnored ([#1554](https://github.com/seek-oss/skuba/pull/1554))

- **lint:** Add coverage to .prettierignore ([#1552](https://github.com/seek-oss/skuba/pull/1552))

- **configure:** Accept template data from stdin to allow for integration testing ([#1558](https://github.com/seek-oss/skuba/pull/1558))

- **lint:** Swap out `detect-package-manager` for manual lockfile detection ([#1552](https://github.com/seek-oss/skuba/pull/1552))

`detect-package-manager` has been removed, in lieu of using `find-up` to detect the closest
`pnpm-lock.yaml` or `yarn.lock` to infer the package manager.

- **lint:** Patch installing specific pnpm version via Corepack ([#1534](https://github.com/seek-oss/skuba/pull/1534))

- **deps:** prettier 3.3 ([#1580](https://github.com/seek-oss/skuba/pull/1580))

### Patch Changes

- **template:** Add extension recommendations to `.vscode/extensions.json` ([#1556](https://github.com/seek-oss/skuba/pull/1556))

- **Git:** Explicitly declare return types to enable compatibility with the `Node16` module ([#1589](https://github.com/seek-oss/skuba/pull/1589))

- **template/oss-npm-package:** Skip excessive action runs ([#1586](https://github.com/seek-oss/skuba/pull/1586))

- **template/lambda-sqs-worker-cdk:** Add worker config file ([#1548](https://github.com/seek-oss/skuba/pull/1548))

- **lint:** Exclude `.vscode/extensions.json` from being ignored by `.gitignore` ([#1556](https://github.com/seek-oss/skuba/pull/1556))

- **template:** Make all configuration values explicit ([#1560](https://github.com/seek-oss/skuba/pull/1560))

Previously, `src/config.ts` included optional configuration values and inheritance between environments in the spirit of [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself). While the templated file was wired up in a "safe" way—the production environment never inherited from other environments and explicitly specified all its configuration values—its pattern was misappropriated elsewhere and led to local configuration values affecting production environments.

Instead, we now list all configuration values explicitly against each environment.

- **template:** Remove deprecated `docker-compose.yml` version ([#1570](https://github.com/seek-oss/skuba/pull/1570))

Docker has ignored this for a while, and now generates a warning on every build:
https://github.com/compose-spec/compose-spec/blob/master/04-version-and-name.md

- **template/\*-rest-api:** Clean up templated environment variables ([#1562](https://github.com/seek-oss/skuba/pull/1562))

- `AWS_NODEJS_CONNECTION_REUSE_ENABLED` is no longer required with AWS SDK V3.
- The `env` boilerplate in Gantry values files was largely unnecessary and confusing.

Our templates prefer to declare configuration values directly in `src/config.ts`.

## 8.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skuba",
"version": "8.0.1",
"version": "8.1.0",
"private": false,
"description": "SEEK development toolkit for backend applications and packages",
"homepage": "https://github.com/seek-oss/skuba#readme",
Expand Down Expand Up @@ -170,6 +170,6 @@
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "7.4.0"
"version": "8.1.0"
}
}
12 changes: 12 additions & 0 deletions packages/eslint-config-skuba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# eslint-config-skuba

## 4.1.0

### Minor Changes

- **deps:** eslint-plugin-tsdoc 0.3.0 ([#1579](https://github.com/seek-oss/skuba/pull/1579))

- **deps:** @typescript/eslint ^7.14.1 ([#1596](https://github.com/seek-oss/skuba/pull/1596))

This addresses compatibility with TypeScript 5.5

- **deps:** eslint-plugin-jest 28 ([#1538](https://github.com/seek-oss/skuba/pull/1538))

## 4.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-skuba/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-skuba",
"version": "4.0.0",
"version": "4.1.0",
"private": false,
"description": "ESLint config for skuba",
"homepage": "https://github.com/seek-oss/skuba/tree/main/packages/eslint-config-skuba#readme",
Expand Down

0 comments on commit 3aa30f6

Please sign in to comment.