resolve-email 3.0.1 → 3.0.3

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/CHANGELOG.md CHANGED
@@ -7,7 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
9
9
 
10
- ## [v3.0.1](https://github.com/bcomnes/resolve-email/compare/v3.0.0...v3.0.1)
10
+ ## [v3.0.3](https://github.com/bcomnes/resolve-email/compare/v3.0.2...v3.0.3)
11
+
12
+ ### Commits
13
+
14
+ - Update allow list [`cbda8f2`](https://github.com/bcomnes/resolve-email/commit/cbda8f2c90f663a8fbdc90066faf24132cd15cce)
15
+
16
+ ## [v3.0.2](https://github.com/bcomnes/resolve-email/compare/v3.0.1...v3.0.2) - 2024-10-25
17
+
18
+ ### Merged
19
+
20
+ - Bump npm-run-all2 from 6.2.6 to 7.0.1 [`#38`](https://github.com/bcomnes/resolve-email/pull/38)
21
+
22
+ ### Commits
23
+
24
+ - Merge pull request #39 from bcomnes/dependabot/submodules/disposable-email-domains-08fff0c [`8f75fd3`](https://github.com/bcomnes/resolve-email/commit/8f75fd3e60fc5f585d4c4ef6f2a6e846058155f9)
25
+ - Bump disposable-email-domains from `bd843a9` to `08fff0c` [`9c50f3e`](https://github.com/bcomnes/resolve-email/commit/9c50f3e9c85c950867d0185ce8ada20e8998349d)
26
+
27
+ ## [v3.0.1](https://github.com/bcomnes/resolve-email/compare/v3.0.0...v3.0.1) - 2024-10-20
11
28
 
12
29
  ### Commits
13
30
 
@@ -0,0 +1,3 @@
1
+ [
2
+ "rocketmail.com"
3
+ ]
@@ -29,6 +29,11 @@ const work = async () => {
29
29
  disposableEmailDomains.delete(domain)
30
30
  }
31
31
 
32
+ const allowListOverride = require('./allow-list.json')
33
+ allowListOverride.forEach(domain => {
34
+ disposableEmailDomains.delete(domain)
35
+ })
36
+
32
37
  console.log('Add in any other random domains I dont want to register')
33
38
  const unwatedDomains = [
34
39
  'tmail.link'
package/disposable.json CHANGED
@@ -3912,6 +3912,7 @@
3912
3912
  "emailfake.com",
3913
3913
  "emailfake.ml",
3914
3914
  "emailforyou.net",
3915
+ "emailfoxi.pro",
3915
3916
  "emailfreedom.ml",
3916
3917
  "emailgenerator.de",
3917
3918
  "emailgo.de",
@@ -5615,6 +5616,7 @@
5615
5616
  "hs.vc",
5616
5617
  "hsuchi.net",
5617
5618
  "ht.cx",
5619
+ "hthlm.com",
5618
5620
  "huangniu8.com",
5619
5621
  "hubby.co.uk",
5620
5622
  "hubei.com",
@@ -10506,7 +10508,6 @@
10506
10508
  "rockaroundtheclock.co.uk",
10507
10509
  "rockchick.co.uk",
10508
10510
  "rocked.co.uk",
10509
- "rocketmail.com",
10510
10511
  "rockets1.com",
10511
10512
  "rockfan.com",
10512
10513
  "rockies1.com",
package/index.test.js CHANGED
@@ -22,6 +22,10 @@ const inputs = [
22
22
  {
23
23
  in: 'fofegoj914@naymedia.com',
24
24
  expect: false
25
+ },
26
+ {
27
+ in: 'test@rocketmail.com',
28
+ expect: true
25
29
  }
26
30
  ]
27
31
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "resolve-email",
3
3
  "description": "Resolve the domain of an email address to see if it even has a chance of delivering",
4
- "version": "3.0.1",
4
+ "version": "3.0.3",
5
5
  "author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
6
6
  "bugs": {
7
7
  "url": "https://github.com/bcomnes/resolve-email/issues"
@@ -11,7 +11,7 @@
11
11
  "c8": "^10.0.0",
12
12
  "emailvalid": "^1.0.4",
13
13
  "gh-release": "^7.0.0",
14
- "npm-run-all2": "^6.0.0",
14
+ "npm-run-all2": "^7.0.1",
15
15
  "neostandard": "^0.11.2",
16
16
  "installed-check": "^9.3.0",
17
17
  "@voxpelli/tsconfig": "^15.0.0",