Skip to content

Commit 0177b7c

Browse files
authored
🚀 release: v2.0.0 - Merge pull request #15 from wgtechlabs/dev
2 parents 217438a + 6868411 commit 0177b7c

File tree

11 files changed

+1465
-2131
lines changed

11 files changed

+1465
-2131
lines changed

LICENSE

Lines changed: 21 additions & 661 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ I'm committed to providing a welcoming and inclusive environment for all contrib
591591

592592
## 📃 License
593593

594-
This project is licensed under the [GNU Affero General Public License v3.0](https://opensource.org/licenses/AGPL-3.0). This license requires that all modifications to the code must be shared under the same license, especially when the software is used over a network. See the [LICENSE](LICENSE) file for the full license text.
594+
This project is licensed under the [MIT License](https://opensource.org/licenses/MIT). See the [LICENSE](LICENSE) file for the full license text.
595595

596596
## 📝 Author
597597

jest.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,9 @@ module.exports = {
2828
functions: 90,
2929
lines: 90
3030
}
31-
}
31+
},
32+
// Enable parallel test execution for better performance
33+
maxWorkers: '50%',
34+
// Timeout for individual tests
35+
testTimeout: 10000
3236
};

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wgtechlabs/log-engine",
3-
"version": "1.3.0",
3+
"version": "2.0.0",
44
"description": "A lightweight, security-first logging utility with automatic data redaction for Node.js applications - the first logging library with built-in PII protection.",
55
"keywords": [
66
"logging",
@@ -17,7 +17,7 @@
1717
"gdpr",
1818
"compliance"
1919
],
20-
"license": "AGPL-3.0",
20+
"license": "MIT",
2121
"author": "WG Tech Labs <[email protected]> (https://wgtechlabs.com)",
2222
"contributors": [
2323
"Waren Gonzaga <[email protected]> (https://warengonzaga.com)"
@@ -45,6 +45,11 @@
4545
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
4646
"test:unit": "jest --testNamePattern=\"^((?!integration).)*$\"",
4747
"test:integration": "jest integration.test.ts",
48+
"test:redaction": "jest --testPathPattern=\"redaction/\"",
49+
"test:redaction:core": "jest --testPathPattern=\"redaction/core.test.ts\"",
50+
"test:redaction:env": "jest --testPathPattern=\"redaction/env.test.ts\"",
51+
"test:redaction:advanced": "jest --testPathPattern=\"redaction/advanced.test.ts\"",
52+
"test:redaction:logengine": "jest --testPathPattern=\"redaction/logengine.test.ts\"",
4853
"clean": "rm -rf dist coverage",
4954
"coverage:open": "open coverage/lcov-report/index.html"
5055
},

0 commit comments

Comments
 (0)