Skip to content

Commit fea5afa

Browse files
Merge pull request #1581 from projectdiscovery/dev
release v2.7.1
2 parents 0d34c55 + ab4e885 commit fea5afa

File tree

7 files changed

+368
-149
lines changed

7 files changed

+368
-149
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ updates:
1515
commit-message:
1616
prefix: "chore"
1717
include: "scope"
18-
labels:
19-
- "Type: Maintenance"
2018
allow:
2119
- dependency-name: "github.com/projectdiscovery/*"
20+
groups:
21+
modules:
22+
patterns: ["github.com/projectdiscovery/*"]
23+
labels:
24+
- "Type: Maintenance"
2225

2326
# # Maintain dependencies for GitHub Actions
2427
# - package-ecosystem: "github-actions"

.github/workflows/build-test.yml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,32 @@ on:
1313
type: boolean
1414
default: false
1515

16-
jobs:
16+
jobs:
17+
lint:
18+
name: Lint Test
19+
if: "${{ !endsWith(github.actor, '[bot]') }}"
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: projectdiscovery/actions/setup/go@v1
24+
- name: Run golangci-lint
25+
uses: projectdiscovery/actions/golangci-lint/v2@v1
26+
with:
27+
version: latest
28+
args: --timeout 5m
29+
working-directory: v2/
30+
1731
build:
1832
name: Test Builds
33+
needs: [lint]
1934
runs-on: ${{ matrix.os }}
2035
strategy:
2136
matrix:
2237
os: [ubuntu-latest, windows-latest, macOS-13]
2338
steps:
24-
- name: Set up Go
25-
uses: actions/setup-go@v4
26-
with:
27-
go-version: 1.21.x
28-
29-
- name: Check out code
30-
uses: actions/checkout@v3
31-
32-
- name: Build
33-
run: go build ./...
39+
- uses: actions/checkout@v4
40+
- uses: projectdiscovery/actions/setup/go@v1
41+
- run: go build ./...
3442
working-directory: v2/
3543

3644
- name: Run tests
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ♾️ Compatibility Checks
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
branches:
7+
- dev
8+
9+
jobs:
10+
check:
11+
if: github.actor == 'dependabot[bot]'
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: projectdiscovery/actions/setup/go/compat-checks@master
18+
with:
19+
go-version-file: 'v2/go.mod'
20+

.github/workflows/lint-test.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

v2/go.mod

Lines changed: 46 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/projectdiscovery/subfinder/v2
22

3-
go 1.21
3+
go 1.24.0
4+
5+
toolchain go1.24.1
46

57
require (
68
github.com/corpix/uarand v0.2.0
@@ -10,14 +12,14 @@ require (
1012
github.com/projectdiscovery/chaos-client v0.5.2
1113
github.com/projectdiscovery/dnsx v1.2.2
1214
github.com/projectdiscovery/fdmax v0.0.4
13-
github.com/projectdiscovery/gologger v1.1.44
14-
github.com/projectdiscovery/ratelimit v0.0.70
15-
github.com/projectdiscovery/retryablehttp-go v1.0.99
16-
github.com/projectdiscovery/utils v0.4.11
15+
github.com/projectdiscovery/gologger v1.1.54
16+
github.com/projectdiscovery/ratelimit v0.0.79
17+
github.com/projectdiscovery/retryablehttp-go v1.0.109
18+
github.com/projectdiscovery/utils v0.4.18
1719
github.com/rs/xid v1.5.0
18-
github.com/stretchr/testify v1.9.0
20+
github.com/stretchr/testify v1.10.0
1921
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80
20-
golang.org/x/exp v0.0.0-20230420155640-133eef4313cb
22+
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8
2123
gopkg.in/yaml.v3 v3.0.1
2224
)
2325

@@ -26,25 +28,28 @@ require (
2628
github.com/Masterminds/semver/v3 v3.2.1 // indirect
2729
github.com/Mzack9999/gcache v0.0.0-20230410081825-519e28eab057 // indirect
2830
github.com/Mzack9999/go-http-digest-auth-client v0.6.1-0.20220414142836-eb8883508809 // indirect
31+
github.com/STARRY-S/zip v0.2.1 // indirect
2932
github.com/VividCortex/ewma v1.2.0 // indirect
3033
github.com/akrylysov/pogreb v0.10.1 // indirect
3134
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
32-
github.com/andybalholm/brotli v1.0.6 // indirect
35+
github.com/andybalholm/brotli v1.1.1 // indirect
3336
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3437
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
3538
github.com/aymerick/douceur v0.2.0 // indirect
36-
github.com/bits-and-blooms/bitset v1.13.0 // indirect
39+
github.com/bodgit/plumbing v1.3.0 // indirect
40+
github.com/bodgit/sevenzip v1.6.0 // indirect
41+
github.com/bodgit/windows v1.0.1 // indirect
3742
github.com/charmbracelet/glamour v0.8.0 // indirect
3843
github.com/charmbracelet/lipgloss v0.13.0 // indirect
3944
github.com/charmbracelet/x/ansi v0.3.2 // indirect
4045
github.com/cheggaaa/pb/v3 v3.1.4 // indirect
41-
github.com/cloudflare/circl v1.3.7 // indirect
46+
github.com/cloudflare/circl v1.5.0 // indirect
4247
github.com/dimchansky/utfbom v1.1.1 // indirect
4348
github.com/dlclark/regexp2 v1.11.4 // indirect
4449
github.com/docker/go-units v0.5.0 // indirect
45-
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
50+
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
4651
github.com/fatih/color v1.15.0 // indirect
47-
github.com/gaissmai/bart v0.9.5 // indirect
52+
github.com/gaissmai/bart v0.17.10 // indirect
4853
github.com/go-ole/go-ole v1.2.6 // indirect
4954
github.com/golang/protobuf v1.5.3 // indirect
5055
github.com/golang/snappy v0.0.4 // indirect
@@ -53,47 +58,51 @@ require (
5358
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
5459
github.com/google/uuid v1.3.1 // indirect
5560
github.com/gorilla/css v1.0.1 // indirect
56-
github.com/klauspost/compress v1.17.4 // indirect
57-
github.com/klauspost/pgzip v1.2.5 // indirect
61+
github.com/hashicorp/errwrap v1.1.0 // indirect
62+
github.com/hashicorp/go-multierror v1.1.1 // indirect
63+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
64+
github.com/klauspost/compress v1.17.11 // indirect
65+
github.com/klauspost/pgzip v1.2.6 // indirect
5866
github.com/kr/pretty v0.3.1 // indirect
5967
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
6068
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
6169
github.com/mattn/go-colorable v0.1.13 // indirect
6270
github.com/mattn/go-isatty v0.0.20 // indirect
6371
github.com/mattn/go-runewidth v0.0.16 // indirect
64-
github.com/mholt/archiver/v3 v3.5.1 // indirect
72+
github.com/mholt/archives v0.1.0 // indirect
6573
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
6674
github.com/minio/selfupdate v0.6.1-0.20230907112617-f11e74f84ca7 // indirect
6775
github.com/muesli/reflow v0.3.0 // indirect
6876
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a // indirect
69-
github.com/nwaples/rardecode v1.1.3 // indirect
70-
github.com/pierrec/lz4/v4 v4.1.2 // indirect
77+
github.com/nwaples/rardecode/v2 v2.0.0-beta.4.0.20241112120701-034e449c6e78 // indirect
78+
github.com/pierrec/lz4/v4 v4.1.21 // indirect
7179
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
7280
github.com/projectdiscovery/blackrock v0.0.1 // indirect
73-
github.com/projectdiscovery/cdncheck v1.1.0 // indirect
74-
github.com/projectdiscovery/fastdialer v0.3.0 // indirect
75-
github.com/projectdiscovery/hmap v0.0.80 // indirect
81+
github.com/projectdiscovery/cdncheck v1.1.15 // indirect
82+
github.com/projectdiscovery/fastdialer v0.4.0 // indirect
83+
github.com/projectdiscovery/hmap v0.0.87 // indirect
7684
github.com/projectdiscovery/machineid v0.0.0-20240226150047-2e2c51e35983 // indirect
77-
github.com/projectdiscovery/networkpolicy v0.1.1 // indirect
78-
github.com/refraction-networking/utls v1.6.7 // indirect
85+
github.com/projectdiscovery/networkpolicy v0.1.12 // indirect
86+
github.com/refraction-networking/utls v1.7.0 // indirect
7987
github.com/rivo/uniseg v0.4.7 // indirect
8088
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
8189
github.com/shirou/gopsutil/v3 v3.23.7 // indirect
8290
github.com/shoenig/go-m1cpu v0.1.6 // indirect
91+
github.com/sorairolake/lzip-go v0.3.5 // indirect
8392
github.com/syndtr/goleveldb v1.0.0 // indirect
93+
github.com/therootcompany/xz v1.0.1 // indirect
8494
github.com/tidwall/btree v1.6.0 // indirect
8595
github.com/tidwall/buntdb v1.3.0 // indirect
86-
github.com/tidwall/gjson v1.14.4 // indirect
96+
github.com/tidwall/gjson v1.18.0 // indirect
8797
github.com/tidwall/grect v0.1.4 // indirect
8898
github.com/tidwall/match v1.1.1 // indirect
8999
github.com/tidwall/pretty v1.2.1 // indirect
90100
github.com/tidwall/rtred v0.1.2 // indirect
91101
github.com/tidwall/tinyqueue v0.1.1 // indirect
92102
github.com/tklauser/go-sysconf v0.3.12 // indirect
93103
github.com/tklauser/numcpus v0.6.1 // indirect
94-
github.com/ulikunitz/xz v0.5.11 // indirect
104+
github.com/ulikunitz/xz v0.5.12 // indirect
95105
github.com/weppos/publicsuffix-go v0.30.1 // indirect
96-
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
97106
github.com/yuin/goldmark v1.7.4 // indirect
98107
github.com/yuin/goldmark-emoji v1.0.3 // indirect
99108
github.com/yusufpapurcu/wmi v1.2.4 // indirect
@@ -102,14 +111,15 @@ require (
102111
github.com/zmap/zcrypto v0.0.0-20230422215203-9a665e1e9968 // indirect
103112
go.etcd.io/bbolt v1.3.7 // indirect
104113
go.uber.org/multierr v1.11.0 // indirect
105-
golang.org/x/crypto v0.31.0 // indirect
106-
golang.org/x/mod v0.17.0 // indirect
114+
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
115+
golang.org/x/crypto v0.36.0 // indirect
116+
golang.org/x/mod v0.22.0 // indirect
107117
golang.org/x/oauth2 v0.11.0 // indirect
108-
golang.org/x/sync v0.10.0 // indirect
109-
golang.org/x/term v0.27.0 // indirect
110-
golang.org/x/text v0.21.0 // indirect
118+
golang.org/x/sync v0.12.0 // indirect
119+
golang.org/x/term v0.30.0 // indirect
120+
golang.org/x/text v0.23.0 // indirect
111121
golang.org/x/time v0.5.0 // indirect
112-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
122+
golang.org/x/tools v0.29.0 // indirect
113123
google.golang.org/appengine v1.6.7 // indirect
114124
google.golang.org/protobuf v1.33.0 // indirect
115125
gopkg.in/djherbis/times.v1 v1.3.0 // indirect
@@ -119,13 +129,13 @@ require (
119129
github.com/cnf/structhash v0.0.0-20201127153200-e1b16c1ebc08 // indirect
120130
github.com/davecgh/go-spew v1.1.1 // indirect
121131
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect
122-
github.com/miekg/dns v1.1.56 // indirect
132+
github.com/miekg/dns v1.1.62 // indirect
123133
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
124134
github.com/modern-go/reflect2 v1.0.2 // indirect
125135
github.com/pkg/errors v0.9.1 // indirect
126136
github.com/pmezard/go-difflib v1.0.0 // indirect
127-
github.com/projectdiscovery/goflags v0.1.72
128-
github.com/projectdiscovery/retryabledns v1.0.94 // indirect
129-
golang.org/x/net v0.33.0 // indirect
130-
golang.org/x/sys v0.28.0 // indirect
137+
github.com/projectdiscovery/goflags v0.1.74
138+
github.com/projectdiscovery/retryabledns v1.0.98 // indirect
139+
golang.org/x/net v0.38.0 // indirect
140+
golang.org/x/sys v0.31.0 // indirect
131141
)

0 commit comments

Comments
 (0)