Skip to content

Commit

Permalink
Merge branch 'unjs:main' into pk/skipAuthors
Browse files Browse the repository at this point in the history
  • Loading branch information
kleinpetr authored Nov 13, 2024
2 parents 40531d9 + 9ad6aeb commit accc1df
Show file tree
Hide file tree
Showing 19 changed files with 4,749 additions and 3,805 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

9 changes: 0 additions & 9 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Fix lint issues
run: pnpm run lint:fix
- uses: autofix-ci/action@ea32e3a12414e6d3183163c3424a7d7a8631ad84
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
with:
commit-message: "chore: apply automated lint fixes"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
Expand Down
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,57 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v0.5.7

[compare changes](https://github.com/unjs/changelogen/compare/v0.5.6...v0.5.7)

### 🩹 Fixes

- **bump:** Avoid using `+` for canary suffix ([#224](https://github.com/unjs/changelogen/pull/224))

### ❤️ Contributors

- Pooya Parsa ([@pi0](http://github.com/pi0))

## v0.5.6

[compare changes](https://github.com/unjs/changelogen/compare/v0.5.5...v0.5.6)

### 🚀 Enhancements

- Add option to sign git tags ([#117](https://github.com/unjs/changelogen/pull/117))
- **git:** Support parse git messages that have prefix emoji ([#146](https://github.com/unjs/changelogen/pull/146))

### 🩹 Fixes

- **github:** Use bearer token ([#180](https://github.com/unjs/changelogen/pull/180))
- Handle repo name with multiple segments ([#219](https://github.com/unjs/changelogen/pull/219))
- Lowercase scope when filtering ([#199](https://github.com/unjs/changelogen/pull/199))

### 💅 Refactors

- Replace `execa` with `execSync` ([#222](https://github.com/unjs/changelogen/pull/222))
- Use human readable date for canary versions ([#223](https://github.com/unjs/changelogen/pull/223))
- Update execCommand ([68127be](https://github.com/unjs/changelogen/commit/68127be))

### 🏡 Chore

- Apply automated lint fixes ([72c407f](https://github.com/unjs/changelogen/commit/72c407f))
- Update ci ([bcb16cb](https://github.com/unjs/changelogen/commit/bcb16cb))
- Update non major deps ([7f714c9](https://github.com/unjs/changelogen/commit/7f714c9))
- Update to eslint v9 ([fd40be9](https://github.com/unjs/changelogen/commit/fd40be9))
- Apply automated lint fixes ([673255b](https://github.com/unjs/changelogen/commit/673255b))
- Update deps ([3cfbe27](https://github.com/unjs/changelogen/commit/3cfbe27))

### ❤️ Contributors

- Pooya Parsa ([@pi0](http://github.com/pi0))
- Klein Petr ([@kleinpetr](http://github.com/kleinpetr))
- Wan Chiu ([@wan54](http://github.com/wan54))
- Jianqi Pan ([@Jannchie](http://github.com/Jannchie))
- Vasily Kuzin <[email protected]>
- Daniel Roe ([@danielroe](http://github.com/danielroe))

## v0.5.5

[compare changes](https://github.com/unjs/changelogen/compare/v0.5.4...v0.5.5)
Expand Down
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unjs from "eslint-config-unjs";

// https://github.com/unjs/eslint-config
export default unjs({
ignores: [],
rules: {
"unicorn/no-null": 0,
"unicorn/prefer-top-level-await": 0,
"unicorn/template-indent": 0,
"unicorn/no-process-exit": 0
},
});
39 changes: 19 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "changelogen",
"version": "0.5.5",
"version": "0.5.7",
"description": "Generate Beautiful Changelogs using Conventional Commits",
"repository": "unjs/changelogen",
"license": "MIT",
Expand All @@ -26,41 +26,40 @@
"build": "unbuild",
"changelogen": "jiti ./src/cli.ts",
"dev": "vitest dev",
"lint": "eslint --ext .ts,.js,.mjs,.cjs . && prettier -c src test",
"lint:fix": "eslint --fix --ext .ts,.js,.mjs,.cjs . && prettier -w src test",
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint --fix . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && pnpm changelogen --release --push && pnpm publish",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"c12": "^1.10.0",
"c12": "^2.0.1",
"colorette": "^2.0.20",
"consola": "^3.2.3",
"convert-gitmoji": "^0.1.5",
"execa": "^8.0.1",
"mri": "^1.2.0",
"node-fetch-native": "^1.6.2",
"ofetch": "^1.3.3",
"node-fetch-native": "^1.6.4",
"ofetch": "^1.4.1",
"open": "^10.1.0",
"pathe": "^1.1.2",
"pkg-types": "^1.0.3",
"pkg-types": "^1.2.1",
"scule": "^1.3.0",
"semver": "^7.6.0",
"semver": "^7.6.3",
"std-env": "^3.7.0",
"yaml": "^2.4.1"
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/node": "^22.8.6",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.14.0",
"eslint-config-unjs": "^0.4.1",
"jiti": "^2.4.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^5.4.2",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vitest": "^1.3.1"
"vitest": "^2.1.4"
},
"packageManager": "pnpm@8.15.4"
}
"packageManager": "pnpm@9.12.3"
}
Loading

0 comments on commit accc1df

Please sign in to comment.