Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.3.0 #329

Merged
merged 31 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
57eb056
Add 'get_recursive' option for legacy whois to RIPE NCC
wiki-ST47 Oct 19, 2020
0f4a1db
Avoid deprecated query method of dnspython
monoidic Nov 6, 2020
2eca4f9
Merge pull request #297 from monoidic/dev
secynic Nov 15, 2020
0b62db6
294 fix dnspython deprecated query method
secynic Nov 15, 2020
11f7632
Merge pull request #298 from secynic/294-change-notes
secynic Nov 15, 2020
2f672c8
Merge branch 'dev' into norecursive-dev
secynic Nov 15, 2020
d0f39f8
Close sockets
secynic Oct 12, 2024
d4dc114
Update dnspython
secynic Oct 12, 2024
13724b3
Fix assertEquals to assertEqual
secynic Oct 12, 2024
653041d
Update dnspython
secynic Oct 12, 2024
15fe3cf
Switch to defusedxml per KOLANICH #306
secynic Oct 12, 2024
c0d38bf
Update to https per KOLANICH #307
secynic Oct 12, 2024
168b02d
Add socket close to whois query to avoid ResourceWarning
secynic Oct 12, 2024
020975e
Temporary hardcode user agent for ASN origin lookup
secynic Oct 12, 2024
bd258b1
Potential fix for #317
secynic Oct 12, 2024
4d7507b
Update arin bootstrap URL #300
secynic Oct 12, 2024
6ec13f3
Merge pull request #295 from wiki-ST47/norecursive-dev
secynic Oct 13, 2024
fa241b1
Add RTD config
secynic Oct 13, 2024
925cf6b
Merge remote-tracking branch 'origin/dev' into dev
secynic Oct 13, 2024
83179c2
Remove reserved IANA 198.97.38.0/24 #315
secynic Oct 13, 2024
5634717
Remove reserved IANA 198.97.38.0/24 #315
secynic Oct 13, 2024
b5aafb2
Cymru fix for local domain ASN search #324
secynic Oct 13, 2024
b3bbc22
Docs for local RDAP file processing #248
secynic Oct 13, 2024
9ebd1bf
Remove travis #328
secynic Oct 13, 2024
28aa92a
v1.3.0
secynic Oct 15, 2024
50d772f
v1.3.0
secynic Oct 15, 2024
09de769
v1.3.0
secynic Oct 15, 2024
945ea5d
Remove travis reference
secynic Oct 15, 2024
a463693
Update examples v1.3.0
secynic Oct 15, 2024
1bf8f81
Update timeout
secynic Oct 15, 2024
c184dde
Don't raise error when no rwhois results
secynic Oct 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Read the Docs configuration file for Sphinx projects

# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details


# Required

version: 2


# Set the OS, Python version and other tools you might need

build:

os: ubuntu-22.04

tools:

python: "3.12"

# Build documentation in the "docs/" directory with Sphinx

sphinx:

configuration: ipwhois/docs/source/conf.py

formats:

- pdf
- epub

python:

install:

- requirements: docs/requirements.txt
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

21 changes: 21 additions & 0 deletions ASN.rst
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,33 @@ Basic usage
"source": "AFRINIC",
"updated": "***@isoc.org 20160720"
},
{
"cidr": "196.49.22.0/24",
"description": "KIXP Mombasa Management Network",
"maintainer": "TESPOK-MNT",
"source": "AFRINIC",
"updated": "***@tespok.co.ke 20210510"
},
{
"cidr": "2001:43f8:c1::/48",
"description": "KIXP Mombasa Management Network",
"maintainer": "TESPOK-MNT",
"source": "AFRINIC",
"updated": "***@tespok.co.ke 20201218"
},
{
"cidr": "2001:43f8:7b0::/48",
"description": "KIXP Nairobi Management Network",
"maintainer": "TESPOK-MNT",
"source": "AFRINIC",
"updated": "***@isoc.org 20160721"
},
{
"cidr": "2001:43f8:c40::/48",
"description": "KIXP GRX Management",
"maintainer": "TESPOK-MNT",
"source": "AFRINIC",
"updated": "***@tespok.co.ke 20201218"
}
],
"query": "AS37578",
Expand Down
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changelog
=========

1.3.0 (2024-10-15)
------------------

- Fixed deprecated query method of dnspython (#294 - monoidic)
- Upgrade dnspython (#303)
- Added requirement for defusedxml for security (#306)
- Added support for Python up to 3.12
- Remove reserved IANA 198.97.38.0/24 (#315)
- Fix for ASN queries against RADB for RIPE source (#317)
- Temporary (move to config later) hardcoding of user agent for ASN origin
lookup to avoid 403
- Updated to HTTPS where applicable (#307)
- Updated ARIN bootstrap URL (#300)
- Close sockets on exception to avoid warnings
- Move tests from assertEquals to assertEqual
- Fix for local domain searches with ASN (#324)

1.2.0 (2020-09-17)
------------------

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Feature Requests
Testing
=======

You may have noticed that Travis CI tests are taking longer to complete.
You may have noticed that CI tests are taking longer to complete.
This is due to the enabling of online lookup tests (network tests in the
ipwhois/tests/online directory).

Expand Down
6 changes: 3 additions & 3 deletions EXPERIMENTAL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ Basic usage
>>>> pprint(results.split('\n'))

[
"Bulk mode; whois.cymru.com [2020-09-15 16:42:29 +0000]",
"Bulk mode; whois.cymru.com [2024-10-15 05:46:42 +0000]",
"15169 | 74.125.225.229 | 74.125.225.0/24 | US | arin | 2007-03-13 | GOOGLE, US",
"15169 | 2001:4860:4860::8888 | 2001:4860::/32 | US | arin | 2005-03-14 | GOOGLE, US",
"2856 | 62.239.237.1 | 62.239.0.0/16 | GB | ripencc | 2001-01-02 | BT-UK-AS BTnet UK Regional network, GB",
"2856 | 2a00:2381:ffff::1 | 2a00:2380::/25 | GB | ripencc | 2007-08-29 | BT-UK-AS BTnet UK Regional network, GB",
"3786 | 210.107.73.73 | 210.107.0.0/17 | KR | apnic | 1997-08-29 | LGDACOM LG DACOM Corporation, KR",
"2497 | 2001:240:10c:1::ca20:9d1d | 2001:240::/32 | JP | apnic | 2000-03-08 | IIJ Internet Initiative Japan Inc., JP",
"19373 | 200.57.141.161 | 200.57.128.0/20 | MX | lacnic | 2000-12-04 | Triara.com, S.A. de C.V., MX",
"NA | 2801:10:c000:: | NA | CO | lacnic | 2013-10-29 | NA",
"19373 | 200.57.141.161 | 200.57.128.0/20 | MX | lacnic | 2000-12-04 | Triara.com S.A. de C.V., MX",
"264653 | 2801:10:c000:: | 2801:10:c000::/48 | CO | lacnic | 2013-10-29 | Universidad Catolica de Oriente, CO",
"12091 | 196.11.240.215 | 196.11.240.0/24 | ZA | afrinic | 1994-07-21 | MTNNS-1, ZA",
"37578 | 2001:43f8:7b0:: | 2001:43f8:7b0::/48 | KE | afrinic | 2013-03-22 | Tespok, KE",
"4730 | 133.1.2.5 | 133.1.0.0/16 | JP | apnic | 1997-03-01 | ODINS Osaka University, JP",
Expand Down
Loading