@mikkelscheike/email-provider-links 4.0.0 โ 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -11
- package/dist/hash-verifier.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,17 +10,18 @@ A robust TypeScript library providing direct links to **93 email providers** (18
|
|
|
10
10
|
|
|
11
11
|
**[Live Demo](https://demo.mikkelscheike.com)** - Test the library with any email address and see it in action!
|
|
12
12
|
|
|
13
|
-
## โจ New in Version
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
13
|
+
## โจ New in Version 4.0.0
|
|
14
|
+
|
|
15
|
+
**Major Performance & Security Release** - Full backward compatibility maintained
|
|
16
|
+
|
|
17
|
+
- ๐ **Performance Revolution**: Achieved 100,000+ operations/second throughput with sub-millisecond response times
|
|
18
|
+
- โก **Lightning Performance**: Domain lookups in ~0.07ms, cached access in ~0.003ms
|
|
19
|
+
- ๐ก๏ธ **Zero-Trust Architecture**: Runtime data validation with cryptographic integrity verification
|
|
20
|
+
- ๐ **Enhanced Security**: SHA-256 hash verification and supply chain protection
|
|
21
|
+
- ๐ฏ **Rigorous Testing**: 445 comprehensive tests with enhanced performance validation
|
|
22
|
+
- ๐ **Extreme Optimization**: 99.9% cache hit rate and ultra-low memory footprint
|
|
23
|
+
- ๐งช **Quality Assurance**: 94.65% code coverage with stress testing under enterprise loads
|
|
24
|
+
- ๐ **Seamless Upgrade**: All existing APIs remain fully compatible
|
|
24
25
|
|
|
25
26
|
## โจ Core Features
|
|
26
27
|
|
package/dist/hash-verifier.js
CHANGED
|
@@ -29,7 +29,7 @@ const KNOWN_GOOD_HASHES = {
|
|
|
29
29
|
// SHA-256 hash of the legitimate emailproviders.json
|
|
30
30
|
'emailproviders.json': '65c136a13cbcd31507241b7ddc8850f81b98196d2e57fcd9ce6060825a010cef',
|
|
31
31
|
// You can add hashes for other critical files
|
|
32
|
-
'package.json': '
|
|
32
|
+
'package.json': '197030b51d3c43d91224d17b04930e3724faff10184fc0707e491728cbc2d53b',
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
35
35
|
* Calculates SHA-256 hash of a file or string content
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikkelscheike/email-provider-links",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "TypeScript library for email provider detection with 93 providers (207 domains), concurrent DNS resolution, optimized performance, 94.65% test coverage, and enterprise security for login and password reset flows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|