Commit Graph
410 Commits
Author SHA1 Message Date
dependabot[bot]andGitHub 5c275d2d82 Bump @typescript-eslint/parser from 4.15.2 to 4.16.1
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.15.2 to 4.16.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.16.1/packages/parser)

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-02 05:52:51 +00:00
Mike PenzandGitHub 5e3db68f11 Merge pull request #200 from mikepenz/feature/exclude_merge_commits
Exclude specific commits from changelog in commit mode
2021-02-26 12:16:31 +01:00
Mike Penz f58c4ac315 - recompile dist after changes 2021-02-26 12:06:19 +01:00
Mike Penz e9e10d147f - use filtered commits for changelog 2021-02-26 12:03:27 +01:00
Mike Penz becbe17766 - add support to exclude merge commits in release notes generation
- move filterCommits into commits.ts
- recompile dist files with updated code
2021-02-26 10:47:08 +01:00
Mike PenzandGitHub 3be50052a5 Merge pull request #198 from mikepenz/dependabot/npm_and_yarn/typescript-4.2.2
Bump typescript from 4.1.5 to 4.2.2
2021-02-24 08:35:30 +01:00
dependabot[bot]andGitHub 6a91423926 Bump typescript from 4.1.5 to 4.2.2
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.1.5 to 4.2.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-24 07:33:24 +00:00
Mike PenzandGitHub e5156d06fb Merge pull request #197 from mikepenz/dependabot/npm_and_yarn/ts-jest-26.5.2
Bump ts-jest from 26.5.1 to 26.5.2
2021-02-24 08:19:34 +01:00
Mike PenzandGitHub 89cfa74669 Merge pull request #196 from mikepenz/dependabot/npm_and_yarn/octokit/rest-18.2.1
Bump @octokit/rest from 18.2.0 to 18.2.1
2021-02-24 08:19:25 +01:00
dependabot[bot]andGitHub 2ae0dd2e3b Bump ts-jest from 26.5.1 to 26.5.2
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.5.1 to 26.5.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v26.5.1...v26.5.2)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-24 06:08:38 +00:00
dependabot[bot]andGitHub 66a1520779 Bump @octokit/rest from 18.2.0 to 18.2.1
Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 18.2.0 to 18.2.1.
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](https://github.com/octokit/rest.js/compare/v18.2.0...v18.2.1)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-24 06:08:23 +00:00
Mike PenzandGitHub c0b07f6c9f Merge pull request #195 from mikepenz/dependabot/npm_and_yarn/typescript-eslint/parser-4.15.2
Bump @typescript-eslint/parser from 4.15.1 to 4.15.2
2021-02-23 08:54:05 +01:00
dependabot[bot]andGitHub 6dd6e374ed Bump @typescript-eslint/parser from 4.15.1 to 4.15.2
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.15.1 to 4.15.2.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.15.2/packages/parser)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-23 06:09:56 +00:00
Mike PenzandGitHub 5a332383be Merge pull request #194 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.31
Bump @types/node from 14.14.30 to 14.14.31
2021-02-22 08:43:26 +01:00
dependabot[bot]andGitHub 4151f5047a Bump @types/node from 14.14.30 to 14.14.31
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.30 to 14.14.31.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-22 07:11:11 +00:00
Mike PenzandGitHub cd0f24a910 Merge pull request #192 from mikepenz/feature/enhanced_commit_mode
Introduce API to extract labels from PR body | commit message
2021-02-19 15:06:30 +01:00
Mike Penz 86f849d8db - add additional information about commit based mode 2021-02-19 15:02:37 +01:00
Mike Penz f8918d6247 - introduce new API adding support to extract additional PR labels from the PR message. This can also be used to organise the changelog in commitMode
- adjust RegExp to be executed in unicode mode, allows referencing a emoji via `.`
- introduce new testcase for emoji mode with label extractor
2021-02-19 14:59:54 +01:00
Mike PenzandGitHub eb483b0c5c Merge pull request #191 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.30
Bump @types/node from 14.14.28 to 14.14.30
2021-02-19 08:59:50 +01:00
Mike PenzandGitHub de1b59d1f1 Merge pull request #190 from mikepenz/dependabot/npm_and_yarn/octokit/rest-18.2.0
Bump @octokit/rest from 18.1.1 to 18.2.0
2021-02-19 08:59:35 +01:00
dependabot[bot]andGitHub d83438df18 Bump @types/node from 14.14.28 to 14.14.30
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.28 to 14.14.30.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-19 06:09:56 +00:00
dependabot[bot]andGitHub d467550f23 Bump @octokit/rest from 18.1.1 to 18.2.0
Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 18.1.1 to 18.2.0.
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](https://github.com/octokit/rest.js/compare/v18.1.1...v18.2.0)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-19 06:09:46 +00:00
Mike PenzandGitHub a0b0bb1316 Merge pull request #189 from mikepenz/dependabot/npm_and_yarn/eslint-plugin-jest-24.1.5
Bump eslint-plugin-jest from 24.1.3 to 24.1.5
2021-02-17 09:00:31 +01:00
dependabot[bot]andGitHub 7010879c95 Bump eslint-plugin-jest from 24.1.3 to 24.1.5
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 24.1.3 to 24.1.5.
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jest-community/eslint-plugin-jest/compare/v24.1.3...v24.1.5)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-17 06:07:40 +00:00
Mike PenzandGitHub 957fa52ecb Merge pull request #188 from mikepenz/dependabot/npm_and_yarn/typescript-eslint/parser-4.15.1
Bump @typescript-eslint/parser from 4.15.0 to 4.15.1
2021-02-16 08:51:22 +01:00
dependabot[bot]andGitHub 6d5c5b39e9 Bump @typescript-eslint/parser from 4.15.0 to 4.15.1
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.15.0 to 4.15.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.15.1/packages/parser)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-16 06:05:57 +00:00
Mike PenzandGitHub a867abaeb3 Merge pull request #186 from mikepenz/feature/update_dist_with_updates
Recompile dist with dependency updates
2021-02-15 17:20:49 +01:00
Mike Penz 1405c27e80 - recompile project to have updated dist with all library updates from dependabot 2021-02-15 17:18:31 +01:00
Mike PenzandGitHub 917dd9078d Merge pull request #184 from mikepenz/dependabot/npm_and_yarn/octokit/rest-18.1.1
Bump @octokit/rest from 18.1.0 to 18.1.1
2021-02-15 17:02:36 +01:00
Mike Penz 60e154cf4c - upgrade octokit types too 2021-02-15 16:59:09 +01:00
dependabot[bot]andGitHub f11fba3e6a Bump @octokit/rest from 18.1.0 to 18.1.1
Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 18.1.0 to 18.1.1.
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](https://github.com/octokit/rest.js/compare/v18.1.0...v18.1.1)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-15 08:39:07 +00:00
Mike PenzandGitHub 6df5f82f0f Merge pull request #185 from mikepenz/dependabot/npm_and_yarn/eslint-7.20.0
Bump eslint from 7.19.0 to 7.20.0
2021-02-15 08:57:32 +01:00
Mike PenzandGitHub 7419cf65cf Merge pull request #183 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.28
Bump @types/node from 14.14.26 to 14.14.28
2021-02-15 08:57:02 +01:00
dependabot[bot]andGitHub 3a854a6812 Bump eslint from 7.19.0 to 7.20.0
Bumps [eslint](https://github.com/eslint/eslint) from 7.19.0 to 7.20.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v7.19.0...v7.20.0)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-15 07:13:47 +00:00
dependabot[bot]andGitHub ef5002c0bc Bump @types/node from 14.14.26 to 14.14.28
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.26 to 14.14.28.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-15 07:12:33 +00:00
Mike PenzandGitHub 25b1b6f42e Merge pull request #182 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.26
Bump @types/node from 14.14.25 to 14.14.26
2021-02-12 09:09:47 +01:00
dependabot[bot]andGitHub ffabd67ae3 Bump @types/node from 14.14.25 to 14.14.26
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.25 to 14.14.26.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-12 06:13:42 +00:00
Mike PenzandGitHub 4f8d16301c Merge pull request #181 from mikepenz/dependabot/npm_and_yarn/typescript-4.1.5
Bump typescript from 4.1.4 to 4.1.5
2021-02-11 08:30:18 +01:00
dependabot[bot]andGitHub dc5824a3c9 Bump typescript from 4.1.4 to 4.1.5
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.1.4 to 4.1.5.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.1.4...v4.1.5)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-11 06:09:09 +00:00
Mike PenzandGitHub e0867381e7 Merge pull request #180 from mikepenz/dependabot/npm_and_yarn/typescript-4.1.4
Bump typescript from 4.1.3 to 4.1.4
2021-02-10 09:33:12 +01:00
dependabot[bot]andGitHub 85e44420b6 Bump typescript from 4.1.3 to 4.1.4
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.1.3 to 4.1.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.1.3...v4.1.4)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-10 08:29:00 +00:00
Mike PenzandGitHub df497df33c Merge pull request #179 from mikepenz/dependabot/npm_and_yarn/ts-jest-26.5.1
Bump ts-jest from 26.5.0 to 26.5.1
2021-02-10 09:27:47 +01:00
dependabot[bot]andGitHub 099118ded2 Bump ts-jest from 26.5.0 to 26.5.1
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.5.0 to 26.5.1.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v26.5.0...v26.5.1)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-10 06:08:30 +00:00
Mike PenzandGitHub dd91e9339d Merge pull request #178 from mikepenz/dependabot/npm_and_yarn/typescript-eslint/parser-4.15.0
Bump @typescript-eslint/parser from 4.14.2 to 4.15.0
2021-02-09 09:22:21 +01:00
dependabot[bot]andGitHub dd3278948d Bump @typescript-eslint/parser from 4.14.2 to 4.15.0
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.14.2 to 4.15.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.15.0/packages/parser)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-09 06:11:01 +00:00
Mike PenzandGitHub 2d19079ba2 Merge pull request #177 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.25
Bump @types/node from 14.14.24 to 14.14.25
2021-02-05 09:05:29 +01:00
dependabot[bot]andGitHub e98024cf32 Bump @types/node from 14.14.24 to 14.14.25
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.24 to 14.14.25.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-05 06:17:16 +00:00
Mike PenzandGitHub d543a41ae9 Merge pull request #176 from mikepenz/dependabot/npm_and_yarn/types/node-14.14.24
Bump @types/node from 14.14.22 to 14.14.24
2021-02-04 09:29:49 +01:00
dependabot[bot]andGitHub d05ab2490f Bump @types/node from 14.14.22 to 14.14.24
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.22 to 14.14.24.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-04 06:15:16 +00:00
Mike PenzandGitHub 011c8b3cbf Merge pull request #175 from mikepenz/dependabot/npm_and_yarn/octokit/rest-18.1.0
Bump @octokit/rest from 18.0.15 to 18.1.0
2021-02-03 09:18:54 +01:00