File: CHANGELOG.md

package info (click to toggle)
django-ipware 4.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: python: 731; makefile: 6; sh: 3
file content (208 lines) | stat: -rw-r--r-- 2,905 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# 4.0.2

Enhancement:

- Added support for Python 3.10 (Thx joshuadavidthomas)

## 4.0.1

Enhancement:

- Added test for django 4.0 (Thx PetrDlouhy)

## 4.0.0

Enhancement:

- Added test to cover more proxy scenarios (thx: Phillip Kuhrt)
- Up versioned major version number as some scenarios have changed

## 3.0.4 / 3.0.5 / 3.0.6 / 3.0.7

Enhancement:

- Clean ups

## 3.0.3

Enhancement:

- Add support for github action (@awais786)

## 3.0.2

Enhancement:

- Add support for ppc64le (@kishorkunal-raj)

## 3.0.1

Fix:

- Ensure no-required build artifacts won't get into the package

## 3.0.0

Enhancement:

- Remove deprecated logic
- Drop "official" support for py < 3.5
- Update to latest Django

## 2.1.1

Enhancement:

- Added deprecation warnings preparing for version 3.0
- Update to latest Django

## 2.1.0

Enhancement:

- Added more non-routable ip blocks (@wking)

## 2.0.2

Enhancement:

- Added the ability to private the request precedence order on each call

## 2.0.1

Enhancement:

- Added more private IP blocks to the default list

## 2.0.0

Fix:

- Update Django versions (@illagrenan)
- Update Readme (@sabueso)
- Added proxy count
- Moved version one readme to /docs

## 1.1.6

Fix:

- Fix trusted proxies Right2Left + Test & Bumped Django versions (@felixxm)
- Changed licensing to MIT

## 1.1.5

Feature:

- Added support for trusted proxy configuration

## 1.1.4

Enhancement:

- Added support for proxies with `underscores_in_headers off;`
- Handling hyphen as delimiter - ex: `X-FORWARDED-FOR` instead of `X_FORWARDED_FOR`
- Up version Django version in .travis.yml

## 1.1.3

Fix:

- Fix read me file updating `IPWARE_META_PRECEDENCE_ORDER` reference.

## 1.1.2

Updates:

- Added support for Django 1.8.6 and Python 3.5.
- Dropped support for Django 1.4.x and Python 2.6 and 3.2

## 1.1.1

Enhancement:

- Added support for X_FORWARDED_FOR

## 1.1.0

Enhancement:

- Added support for 1.0.0.0/8 and 2.0.0.0/8 blocks

## 1.0.0

Enhancement:

- Promoting to production grade

## 0.1.1

Enhancement:

- Support for Left2Right or Right2Left Proxy IP Lookup

## 0.1.0

Enhancement:

- pypy support
- PY3.4 support

## 0.0.9

Enhancement:

- Django 1.7 official support
- First non-loopback private IP match is best matched now.

## 0.0.8

Enhancement:

- Django 1.7 support
- PEP8 Compliance
- Bump Alpha to Beta

## 0.0.6

Enhancement:

- Converted print statements to new format. (Python 3.x)
- Replaced deprecated unit test APIs

## 0.0.5

Enhancement:

- Added Python 3.2 and 3.3 support

## 0.0.4

Enhancement:

- Added changelog file
- Added more private ip prefixes

## 0.0.3

Features:

- Added get_ip() to return the best-matched IP
- Removed get_ip_address_from_request()

Bugfixes:

- Expended the private IP range

## 0.0.2

Features:

- IPv6 support
- Added get_real_ip(), the shorter version of get_ip_address_from_request()

## 0.0.1

Features:

- Initial Release