valid_email2 5.2.5 → 5.2.6
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.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yaml +2 -11
- data/.github/workflows/release.yaml +28 -0
- data/.release-please-manifest.json +1 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +17 -0
- data/config/disposable_email_domains.txt +340 -1
- data/lib/valid_email2/version.rb +1 -1
- data/pull_mailchecker_emails.rb +1 -1
- data/release-please-config.json +11 -0
- metadata +10 -9
- data/gemfiles/activemodel3.gemfile +0 -5
- data/gemfiles/activemodel4.gemfile +0 -5
- data/gemfiles/activemodel5.gemfile +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0a01a2acf82274bd6e459721211ff637ab27f24ca2ec01ae4423ed4ffac25d9
|
|
4
|
+
data.tar.gz: cd8506ab6c60327a789e2fb4f1d702a49a2059ff2c9af79c6db10ecb0c7023b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91af74f0a0c8fecac0ade9e9320186c0e86c76e48665d07ab79fe9ef0fdde75a3ff37d0d39b2cce8e2fd30a04a4815492ab5f24e7094f55b7852e3a6b41aef95
|
|
7
|
+
data.tar.gz: d19d1e8c83b8aa2833ed2d472e41b8722018d08d5d465416f4cefc8c588dd9a9334d07401787acb9cee89cc9b326892097a6d3ad5d5ff015b0bce774bdbfc4ee
|
data/.github/workflows/ci.yaml
CHANGED
|
@@ -5,17 +5,8 @@ jobs:
|
|
|
5
5
|
strategy:
|
|
6
6
|
fail-fast: false
|
|
7
7
|
matrix:
|
|
8
|
-
gemfile: [
|
|
9
|
-
ruby: [
|
|
10
|
-
exclude:
|
|
11
|
-
- gemfile: activemodel7
|
|
12
|
-
ruby: 2.5
|
|
13
|
-
- gemfile: activemodel7
|
|
14
|
-
ruby: 2.6
|
|
15
|
-
- gemfile: activemodel5
|
|
16
|
-
ruby: "3.0"
|
|
17
|
-
- gemfile: activemodel5
|
|
18
|
-
ruby: 3.1
|
|
8
|
+
gemfile: [ activemodel6, activemodel7 ]
|
|
9
|
+
ruby: [3.1, 3.2, 3.3]
|
|
19
10
|
runs-on: ubuntu-latest
|
|
20
11
|
env:
|
|
21
12
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
on:
|
|
2
|
+
push:
|
|
3
|
+
branches:
|
|
4
|
+
- master
|
|
5
|
+
|
|
6
|
+
permissions:
|
|
7
|
+
contents: write
|
|
8
|
+
pull-requests: write
|
|
9
|
+
id-token: write
|
|
10
|
+
|
|
11
|
+
name: release-please
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
release-please:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
steps:
|
|
17
|
+
- uses: googleapis/release-please-action@v4
|
|
18
|
+
id: release
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
21
|
+
with:
|
|
22
|
+
fetch-tags: true
|
|
23
|
+
- uses: ruby/setup-ruby@v1
|
|
24
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
25
|
+
with:
|
|
26
|
+
bundler-cache: true
|
|
27
|
+
- uses: rubygems/release-gem@v1
|
|
28
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{".":"5.2.6"}
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.3.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [5.2.6](https://github.com/micke/valid_email2/compare/v5.2.5...v5.2.6) (2024-08-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add .release-please-manifest.json ([8a9ef25](https://github.com/micke/valid_email2/commit/8a9ef25b77db3942956bb4790627b14eadc2404e))
|
|
9
|
+
* add id to release-please-action ([35b4697](https://github.com/micke/valid_email2/commit/35b4697b1970ebd696b7cdaf38889ec7b674000c))
|
|
10
|
+
* add release-please-config.json ([adde8b6](https://github.com/micke/valid_email2/commit/adde8b6fe23e3bdf8b892290b565f560d7e72c8d))
|
|
11
|
+
* Add step to publish gem to rubygems to the release action ([b6932f3](https://github.com/micke/valid_email2/commit/b6932f36c0a6af9897d723d222145678c9bc0f06))
|
|
12
|
+
* fetch tags when checking out the repository ([0d6ed8b](https://github.com/micke/valid_email2/commit/0d6ed8bd5e51d50eeb8f2315b6bc9803bf1d34da))
|
|
13
|
+
* reset the version to 5.2.5 ([b0cb66c](https://github.com/micke/valid_email2/commit/b0cb66c57cd08f0ecef72bb0dd84d4f5636adf41))
|
|
14
|
+
* Whitelist directbox.com ([cf70737](https://github.com/micke/valid_email2/commit/cf707371735c10b565ab3aafce39d7ea7089cdb1))
|
|
15
|
+
|
|
16
|
+
## Changelog
|
|
17
|
+
|
|
1
18
|
## Version 5.2.5
|
|
2
19
|
* Remove false positives [#240](https://github.com/micke/valid_email2/issue/240)
|
|
3
20
|
* Pull new domains
|