-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCHANGES
More file actions
194 lines (114 loc) · 4.1 KB
/
Copy pathCHANGES
File metadata and controls
194 lines (114 loc) · 4.1 KB
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
Changelog
=========
Version 4.1.0
-------------
Support "lax" validation, i.e. validation allowing for null-valued foreign keys.
Version 4.0.0
-------------
- removed dependency on `attrs`
Backwards incompatibility
~~~~~~~~~~~~~~~~~~~~~~~~~
- Since formerly `@attr.s` decorated classes are now dataclasses, any class inheriting from these
will be broken.
- Some functions have been moved to different modules, so imports may be broken.
Version 3.7.0
-------------
- fixed expanding of URLs to account for QNames used as URI template.
- adapted `metadata.NAMESPACES` to contain the prefixes defined in the RDFa
core initial context (https://www.w3.org/2011/rdfa-context/rdfa-1.1).
Version 3.6.0
-------------
- Switch dependency from colorama to termcolor, which seems to be better maintained.
- Enhanced `dsv.UnicodeWriter.writerows` to allow simpler writing of CSV rows from `dict` objects.
Version 3.5.1
-------------
Re-instate support for py3.8, since it's still supported on Ubuntu 20.04 lts.
Version 3.5.0
-------------
- Added csvw2markdown command.
- Added support for py3.13, dropped support for py3.8.
Version 3.4.0
-------------
- Improve compatibility with frictionless framework.
- Added experimental csvw2sqlite command.
- Test on python 3.13.
Version 3.3.1
-------------
- Made sure the `_parent` attribute is excluded for equality comparisons of `Description` objects
in order to stay compatible with attrs >= 24.1.
Version 3.3.0
-------------
- Fixed handling of null values for list-valued columns when reading from sqlite db.
- Added flag to force writing CSVW data in "strict" mode, see https://github.com/cldf/csvw/issues/57
Version 3.2.2
-------------
- Support list-valued column data of non-string datatypes (as long as they can be
JSON serialized) in `db`.
Version 3.2.1
-------------
- Fixed bug whereby NULL values list-valued fields couldn't be written to sqlite.
Version 3.2.0
-------------
- Fixed bug whereby it was impossible to set `Column.null` to the empty list.
- Dropped py3.7 compatibility.
- Fixed bug whereby decimals were serialised in scientific notation which is
against the spec.
- Add Python 3.12 to tested and supported versions.
- Replace `lazyproperty` with `functools.cached_property`, since we don't support
py < 3.8 anymore.
Version 3.1.3
-------------
- Fixed support for writing tables to zipped files.
Version 3.1.2
-------------
- DB creation will now drop self-referential foreign-keys by default
Version 3.1.1
-------------
- Fixed the ranges of positiveInteger and nonNegativeInteger
Version 3.1
-----------
- Support [JSON Schema](https://json-schema.org/) documents as `format`
annotation for datatype `json`.
Version 3.0
-----------
- Better CSVW spec conformance:
- `csvw.CSVW.to_json` implements https://w3c.github.io/csvw/csv2json/
- `csvw.CSVW.is_valid`
- Completed datatype support
- CLI
- Docs
Backwards incompatibility:
- `commentPrefix=None` for default CSV dialect for Table and TableGroup (instead of `#`)
- duplicate column names in CSVW metadata now raise `ValueError` rather than just issuing a warning
- Dropped Python 3.6 compatibility
Version 2.0
-----------
- Fix CSVW spec compatibility: Stop doing blackslash escaping/doubling with
(default) Dialect(doubleQuote=True) (https://github.com/cldf/csvw/issues/7).
- Fix doubling of backslashes with csv.QUOTE_NONE
(https://github.com/cldf/csvw/issues/4).
- Python 3.10 support.
Version 1.11.0
--------------
- Dropped py35 compat.
- Enhanced foreign key validation.
Version 1.10.1
--------------
- fixed bug where the line number was not correctly reported by
UnicodeReaderWithLineNumber when multi-line cell content was read.
- extended tests to python 3.9
Version 1.10
------------
- Allow reading of data and metadata from URLs.
Version 1.4
-----------
- Read all data with encoding specified as UTF-8 using utf-8-sig encoding.
Version 1.0
-----------
- Integrate cllutils.dsv functionality, drop clldutils and six dependencies.
Version 0.1.1
-------------
- Update clldutils to 1.14.0
Version 0.1
-----------
- First release as package taken out from clldutils.