conventional-commits-filter
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-filter@2.0.1...conventional-commits-filter@2.0.2) (2019-04-10) | ||
### Bug Fixes | ||
* **filter:** replace `is-subset` with `lodash.ismatch` ([#377](https://github.com/conventional-changelog/conventional-changelog/issues/377)) ([fbcc92e](https://github.com/conventional-changelog/conventional-changelog/commit/fbcc92e)) | ||
## [2.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-filter@2.0.0...conventional-commits-filter@2.0.1) (2018-11-01) | ||
@@ -8,0 +19,0 @@ |
'use strict' | ||
var isSubset = require('is-subset') | ||
var isMatch = require('lodash.ismatch') | ||
var modifyValues = require('modify-values') | ||
@@ -39,3 +39,3 @@ | ||
ignoreThis = isSubset(commit, ignore) | ||
ignoreThis = isMatch(commit, ignore) | ||
@@ -42,0 +42,0 @@ if (ignoreThis) { |
{ | ||
"name": "conventional-commits-filter", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Filter out reverted commits parsed by conventional-commits-parser", | ||
@@ -31,3 +31,3 @@ "bugs": { | ||
"dependencies": { | ||
"is-subset": "^0.1.1", | ||
"lodash.ismatch": "^4.4.0", | ||
"modify-values": "^1.0.0" | ||
@@ -39,3 +39,3 @@ }, | ||
"license": "MIT", | ||
"gitHead": "f301b0de0b954713a50b2256a3140e21817d14c0" | ||
"gitHead": "b3416cbb411f49420b13e8fe306528b372b07a8b" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11442
+ Addedlodash.ismatch@^4.4.0
+ Addedlodash.ismatch@4.4.0(transitive)
- Removedis-subset@^0.1.1
- Removedis-subset@0.1.1(transitive)