Skip to content

Commit

Permalink
chore: update dependency conventional-changelog-angular to v7 (conven…
Browse files Browse the repository at this point in the history
…tional-changelog#3690)

* chore: update dependency conventional-changelog-angular to v7

* Renovate/conventional changelog angular 7.x (conventional-changelog#3725)

* chore: update dependency conventional-changelog-angular to v7

* test: update conventional-changelog-angular unit tests

* test: improve scope-enum unit tests

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alessandro Rabitti <silversonicaxel@users.noreply.github.com>
  • Loading branch information
renovate[bot] and silversonicaxel authored Nov 21, 2023
1 parent 44526aa commit e234ccb
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 15 deletions.
2 changes: 1 addition & 1 deletion @commitlint/parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"@commitlint/types": "^18.4.0",
"conventional-changelog-angular": "^6.0.0",
"conventional-changelog-angular": "^7.0.0",
"conventional-commits-parser": "^5.0.0"
},
"gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc"
Expand Down
3 changes: 2 additions & 1 deletion @commitlint/parse/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export async function parse(
parser: Parser = sync,
parserOpts?: ParserOptions
): Promise<Commit> {
const defaultOpts = (await defaultChangelogOpts).parserOpts;
const preset = await defaultChangelogOpts();
const defaultOpts = preset.parserOpts;
const opts = {
...defaultOpts,
fieldPattern: null,
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/rules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@commitlint/parse": "^18.4.0",
"@commitlint/test": "^18.0.0",
"@commitlint/utils": "^18.4.0",
"conventional-changelog-angular": "6.0.0",
"conventional-changelog-angular": "7.0.0",
"glob": "^8.0.3"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/rules/src/references-empty.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const messages = {
};

const opts = (async () => {
const o = await preset;
const o = await preset();
o.parserOpts.commentChar = '#';
return o;
})();
Expand Down
28 changes: 22 additions & 6 deletions @commitlint/rules/src/scope-enum.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ test('scope-enum with plain message and always should succeed empty enum', async
});

test('scope-enum with plain message and never should error empty enum', async () => {
const [actual] = scopeEnum(await parsed.plain, 'never', []);
const [actual, message] = scopeEnum(await parsed.plain, 'never', []);
const expected = false;
expect(actual).toEqual(expected);
expect(message).toEqual('scope must not be one of []');
});

test('with plain message should succeed correct enum', async () => {
Expand All @@ -36,15 +37,17 @@ test('with plain message should succeed correct enum', async () => {
});

test('scope-enum with plain message should error false enum', async () => {
const [actual] = scopeEnum(await parsed.plain, 'always', ['foo']);
const [actual, message] = scopeEnum(await parsed.plain, 'always', ['foo']);
const expected = false;
expect(actual).toEqual(expected);
expect(message).toEqual('scope must be one of [foo]');
});

test('scope-enum with plain message should error forbidden enum', async () => {
const [actual] = scopeEnum(await parsed.plain, 'never', ['bar']);
const [actual, message] = scopeEnum(await parsed.plain, 'never', ['bar']);
const expected = false;
expect(actual).toEqual(expected);
expect(message).toEqual('scope must not be one of [bar]');
});

test('scope-enum with plain message should succeed forbidden enum', async () => {
Expand Down Expand Up @@ -95,14 +98,21 @@ test('scope-enum with empty scope and never should succeed empty enum', async ()
expect(actual).toEqual(expected);
});

test('scope-enum with multiple scopes should succeed on message with multiple scopes', async () => {
const [actual] = scopeEnum(await parsed.multiple, 'never', ['bar', 'baz']);
test('scope-enum with multiple scopes should error on message with multiple scopes', async () => {
const [actual, message] = scopeEnum(await parsed.multiple, 'never', [
'bar',
'baz',
]);
const expected = false;
expect(actual).toEqual(expected);
expect(message).toEqual('scope must not be one of [bar, baz]');
});

test('scope-enum with multiple scopes should error on message with forbidden enum', async () => {
const [actual] = scopeEnum(await parsed.multiple, 'never', ['bar', 'qux']);
const [actual, message] = scopeEnum(await parsed.multiple, 'never', [
'bar',
'qux',
]);
const expected = true;
expect(actual).toEqual(expected);
});
Expand All @@ -113,6 +123,12 @@ test('scope-enum with multiple scopes should error on message with superfluous s
expect(actual).toEqual(expected);
});

test('scope-enum with multiple scope should succeed on message with multiple scopes', async () => {
const [actual] = scopeEnum(await parsed.multiple, 'always', ['bar', 'baz']);
const expected = true;
expect(actual).toEqual(expected);
});

test('scope-enum with multiple scope with comma+space should succeed on message with multiple scopes', async () => {
const [actual] = scopeEnum(await parsed.multipleCommaSpace, 'always', [
'bar',
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/rules/src/subject-exclamation-mark.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {subjectExclamationMark} from './subject-exclamation-mark';
const preset = require('conventional-changelog-angular');

const parseMessage = async (str: string) => {
const {parserOpts} = await preset;
const {parserOpts} = await preset();
return parse(str, undefined, parserOpts);
};

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3210,10 +3210,10 @@ console-control-strings@^1.1.0:
resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==

conventional-changelog-angular@6.0.0, conventional-changelog-angular@^6.0.0:
version "6.0.0"
resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541"
integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==
conventional-changelog-angular@7.0.0, conventional-changelog-angular@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a"
integrity sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==
dependencies:
compare-func "^2.0.0"

Expand Down

0 comments on commit e234ccb

Please sign in to comment.