forked from makinacorpus/django-geojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
116 lines (74 loc) · 2.67 KB
/
CHANGES
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
=========
CHANGELOG
=========
Y (unreleased)
==============
- Nothing changed yet.
2.6.0 (2014-07-21)
==================
** New features **
- Django GeoJSON fields without libgeos installed (thanks Florent Lebreton)
- Properties can be a tuple (fixes #34)
2.5.0 (2014-06-03)
==================
** New features **
- Add vector tiles view
- Improved `geojsonfeature` template tag (fixes #15, #16)
- Add various GeoJSON fields, for each geometry type
** Bug fixes **
- Fix (de)serializers not being usable from command-line (fixes #28)
- Fix import attempt for *django-leaflet* (fixes #27), by Seyi Ogunyemi
- Fix missed SRID after copying a geometry in ``_handle_geom``, by Biel Frontera
** Internal changes **
- Specify django-leaflet minimal version for GeoJSON model field
- Got rid of shapely for deserialization
2.4.0 (2014-03-22)
==================
- Add GeoJSON fields
2.3.0 (2014-02-08)
==================
- Python 3 support (thanks @amarandon)
- Add bbox at feature level (thanks @7wonders)
2.2.0 (2013-12-18)
==================
- Deserialization: add ability to specify model name as option (thanks @Vross)
- Deserialization: look-up ``ìd`` value in properties whe missing at feature level: (thanks @Vross)
2.1.1 (2013-08-21)
==================
- Set default SRID to 4326 in generic GeoJSON views.
2.1.0 (2013-08-19)
==================
- Serialize reversed relations using natural keys (fixes #8)
- Support empty geometries (None or NULL in Db)
- Fix serializing property in upper class
2.0.1 (2013-07-10)
==================
- Fix usage of simplify.
- Expose ``force2d`` option in view
- Allow to have ``pk`` or ``id`` in properties if explicitly listed
2.0.0 (2013-07-09)
==================
- Complete rewrite using @jeffkistler and @glenrobertson code
- CRS is added to GeoJSON ouput by default
- Ability to build ``pk`` dynamically by passing a lambda
- Ability to provide a ``bbox``
- Ability to use Django natural keys
- Support of *ValuesQuerySet*
- Support of *ForeignKey* and *ManyToMany*
- Added ``force2d`` option
** Backwards incompatible changes **
- Geom field is not guessed automatically : Use ``geometry_field`` option, default is ``'geom'``.
- no more ``pk`` in properties : use feature ``id``, or list ``pk`` in properties explicitly.
- ``fields`` list in ``GeoJSONLayer`` was renamed ``properties``.
1.2.0 (2013-05-22)
==================
- Shapely is now optional (used for deserialization only)
- Add Django to requirements
- Skip a step in GeoJSON conversion of geometries (fixes #6)
1.1.0 (2013-03-06)
==================
- Django 1.5 support
- Fix template tag geojsonfeature on empty geometries
1.0.0 (2012-08-03)
==================
- Initial working version.