-
Notifications
You must be signed in to change notification settings - Fork 1
/
Changes
188 lines (88 loc) · 4.08 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
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
0.233 2023-12-29 Released-By: PERLANCAR; Urgency: low
- No functional changes.
- [doc] Show example for selecting from TableData::* module.
0.232 2023-12-29 Released-By: PERLANCAR; Urgency: medium
- Add logging (options: --log-level, --trace, --debug, --verbose,
--quiet).
- Add support for TableData module.
0.231 2021-09-10 Released-By: PERLANCAR; Urgency: low
- No functional changes.
- [doc] Mention App::tsql.
0.230 2019-01-22 Released-By: PERLANCAR
- Support CSV/TSV that does not have header row.
- Use Getopt::Long gnu_getopt configuration.
0.22 2016-03-10 Released-By: PERLANCAR
- Replace File::Slurp::Tiny with File::Slurper (in tests).
- Replace JSON with JSON::MaybeXS.
0.21 2015-07-27 Released-By: PERLANCAR
- Rename FSQL_DEBUG_KEEP_TEMPDIR to DEBUG_KEEP_TEMPDIR (which is
also observed by App::depak).
0.20 2015-06-30 Released-By: PERLANCAR
- Support -F NAME:NEWNAME to load function as a new name.
0.19 2015-06-28 Released-By: PERLANCAR
- Add option: --define-function (-D).
0.18 2015-05-13 Released-By: PERLANCAR
- Adjust with SQL::Statement::Functions::Date 0.02+.
0.17 2015-05-10 Released-By: PERLANCAR
- No functional changes.
- Tweak docs.
0.16 2015-05-09 Released-By: PERLANCAR
- Avoid error message when performing non-SELECT queries.
- [doc] Add FAQ entry, add example for INSERT/DELETE.
0.15 2015-05-09 Released-By: PERLANCAR
- Add option: --load-function (-F).
0.14 2015-01-11 Released-By: PERLANCAR
- [ux] Be less restrictive: allow arguments when -s.
0.13 2015-01-03 Released-By: PERLANCAR
- No functional changes.
- Rebuild (generate TODO.md, testing).
0.12 2014-12-03 Released-By: PERLANCAR
- Add short alias -s for --show-schema because it turns out to be
used quite often.
0.11 2014-07-02 Released-By: SHARYANTO
- No functional changes.
- [Bugfix] scripts/ or bin/ files need to have something like #!perl and
not #!/usr/bin/env perl so it can be replaced to the path of perl when
installing [RT#96884]
0.10 2014-05-17 Released-By: SHARYANTO
- No functional changes.
- Replace File::Slurp with File::Slurp::Tiny.
0.09 2014-05-05 Released-By: SHARYANTO
- No functional changes.
- [build] Bump required version of IPC::Cmd (to first version which has
run_forked()).
0.08 2014-04-29 Released-By: SHARYANTO
[INCOMPATIBLE CHANGES]
- For outputs 'json', 'yaml', 'perl', display naked instead of enveloped
result. This should make fsql more usable in general. Use
Data::Format::Pretty::* modules directly instead of
Perinci::Result::Format.
- Rename --hash to --aoh. Add --aoa for completeness.
0.07 2014-04-29 Released-By: SHARYANTO
- Add --add (-a) option.
- Add --hash option.
- Add some tests.
0.06 2014-04-29 Released-By: SHARYANTO
[INCOMPATIBLE CHANGES]
- By default outputs array of arrays (fetchrow_arrayref) instead array
of hashes (fetchrow_hashref) to get consistent column ordering. Old
behavior is possible using the new --hash option. This only affects
outputs like 'json', 'yaml', 'perl', 'text'.
0.05 2014-04-29 Released-By: SHARYANTO
- Add -f alias for --format.
- Add output formats 'csv', 'tsv', 'ltsv' (thanks baileych for csv/tsv).
- Add input & output format 'perl'.
- Default output format is now the most used input format.
0.04 2014-04-22 Released-By: SHARYANTO
- Show format information in --show-schema.
0.03 2014-04-22 Released-By: SHARYANTO
- No functional changes.
- Fix a couple of bugs and add some missing doc.
0.02 2014-04-17 Released-By: SHARYANTO
[ENHANCEMENTS]
- Add --format (previously missing).
- Add --show-schema.
[BUG FIXES]
- Fix a couple of bugs.
0.01 2014-04-17 Released-By: SHARYANTO
- First release.