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 Feb 27, 2023
1 parent 8497fea commit 0773561
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 45 deletions.
23 changes: 0 additions & 23 deletions .changeset/forty-spies-tie.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/khaki-drinks-warn.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/ninety-geckos-perform.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/young-candles-speak.md

This file was deleted.

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

## 5.2.0

### Minor Changes

- **format, lint:** Bundle `eslint-plugin-yml` ([#1107](https://github.com/seek-oss/skuba/pull/1107))

[eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) is now supported on `skuba format` and `skuba lint`. While the default configuration should be unobtrusive, you can opt in to stricter rules in your `.eslintrc.js`:

```diff
module.exports = {
extends: ['skuba'],
+ overrides: [
+ {
+ files: ['my/strict/config.yaml'],
+ rules: {
+ 'yml/sort-keys': 'error',
+ },
+ },
+ ],
};
```

YAML files with non-standard syntax may fail ESLint parsing with this change. Gantry resource files should be excluded by default due to their custom templating syntax, and you can list additional exclusions in your `.eslintignore`.

- **run:** Add Fastify support ([#1101](https://github.com/seek-oss/skuba/pull/1101))

`skuba start` can now be used to create a live-reloading server for Fastify based projects. See https://seek-oss.github.io/skuba/docs/cli/run.html#skuba-start for more information.

### Patch Changes

- **lint:** Commit codegen updates ([#1078](https://github.com/seek-oss/skuba/pull/1078))

`skuba lint` can locally codegen updates to ignore files and module exports. These changes are now automatically committed if you have [GitHub autofixes](https://seek-oss.github.io/skuba/docs/deep-dives/github.html#github-autofixes) enabled on your project.

- **lint:** Delete `Dockerfile-incunabulum` ([#1078](https://github.com/seek-oss/skuba/pull/1078))

`skuba lint` may have accidentally committed this internal file to source control in prior versions. It is now automatically removed if you have [GitHub autofixes](https://seek-oss.github.io/skuba/docs/deep-dives/github.html#github-autofixes) enabled on your project.

## 5.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skuba",
"version": "5.1.1",
"version": "5.2.0",
"private": false,
"description": "SEEK development toolkit for backend applications and packages",
"homepage": "https://github.com/seek-oss/skuba#readme",
Expand Down

0 comments on commit 0773561

Please sign in to comment.