-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathversions.xml
556 lines (555 loc) · 23.1 KB
/
versions.xml
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<?xml version="1.0" encoding="UTF-8" ?>
<articles>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.10</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-07">2015-04-07</time>
</header>
<aside>
A small fix for some clients who aren't smart enough to resend HTTP OPTIONS after receiving a code 403 for the same.
Fitted the XML (CalDAV, DAV, etc.) parser with proper namespace support via the <a
href="http://expat.sourceforge.net/">libexpat</a> namespace handlers.
Parsed documents are now properly checked for namespace and name of matching elements (e.g., <code>DAV::href</code>), not just
the name itself.
Run the XML parsing routines through <a href="http://lcamtuf.coredump.cx/afl/">AFL</a> for quite some time to shake out
stray bugs.
Add the ability to detect <a href="https://tools.ietf.org/html/rfc5545">iCalendar</a> components (<code>VCALENDAR</code>,
<code>VEVENT</code>, <code>VTODO</code>, etc.) and properties (<code>UID</code>, <code>DTSTART</code>, etc.) during parse and
stash references to them in linked component lists.
This paves the way for filtering capabilities in later versions.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.11</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-10">2015-04-10</time>
</header>
<aside>
Migrate the <a href="https://tools.ietf.org/html/rfc2617">RFC 2617</a> handling directly into <a
href="http://kristaps.bsd.lv/kcgi">kcgi</a>, making the parse sequence just a little safer.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.12</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-12">2015-04-12</time>
</header>
<aside>
Implement a nonce database to prevent replay attacks for digest authentication.
This follows <a href="https://tools.ietf.org/html/rfc2617">RFC 2617</a> in maintaining a (bounded) database of nonce values and
their counts.
On first authentication, a new nonce field is created for the principal (possibly evicting the oldest nonce).
Subsequent authentication must use this nonce as well as an increasing nonce-count.
The methods are described in <a href="kcaldav.8.html">kcaldav(8)</a>.
Also, have the gecos field in <a href="kcaldav.passwd.5">kcaldav.passwd(5)</a> contain the user's email address, then remove the
email address field from <a href="kcaldav.conf.5">kcaldav.conf(5)</a>.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.13</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-13">2015-04-13</time>
</header>
<aside>
When accessing the server from a web browser (i.e., for HTML content), respond by printing the logged-in user's information and
allow for changing of passwords or e-mail if the principal database has the correct permissions.
This allows new users to perform simple administrative tasks without needing to log into the underlying UNIX server.
See <a href="kcaldav.8.html">kcaldav(8)</a> for details.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.14</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-14">2015-04-14</time>
</header>
<aside>
Add a flag to <a href="kcaldav.passwd.1.html">kcaldav.passwd(1)</a> to create new principal's home directories and populate them
with a simple <a href="kcaldav.conf.5.html">kcaldav.conf(5)</a> file.
Completely re-write the internal iCalendar parser to get ready for handling iCalendar dates.
Add a handler for the default time-zone, encouraging GMT use, and minimum accepted date (epoch).
Lastly, document each property we support (in the source) with a pointer to the RFC section.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.15</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-25">2015-04-25</time>
</header>
<aside>
Allow web-based viewing of collection data.
This works because GET isn't defined in calendar collections (according to <a href="https://tools.ietf.org/html/rfc4918">RFC
4918</a>, section 9.4), so we can send all GET requests for collections to an HTML dynamic handler.
Add initial <code>PROPPATCH</code> bits so that clients can (conditionally) set certain properties, e.g., iCal setting the
calendar display name and colour.
Add a framework for field-specific validation in the CalDAV parser to do so.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.16</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-27">2015-04-27</time>
</header>
<aside>
Support the <code>calendar-description</code> element.
Consolidate all properties into a single structure, allowing for flexible addition and removal of properties and property
behaviour.
This also removes a lot of conditional logic when responding to <code>PROPFIND</code> and <code>REPORT</code> methods.
The <code>DELETE</code> method has been cleaned up.
All HTTP methods are now described in <a href="kcaldav.8.html">kcaldav(8)</a>, including available properties.
Lots of internal support has been added for iCalendar <a href="https://tools.ietf.org/html/rfc2445#section-4.3.10">recurrence
rule</a> computation, which is the major stepping stone for processing iCalendar dates, but this is not hooked into
active use (yet).
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.4</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-03-23">2015-03-23</time>
</header>
<aside>
Initial public release.
This features only direct iCalendar access, tested on <a href="https://www.mozilla.org/en-US/projects/calendar/">Mozilla
Lightning</a>.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.5</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-02">2015-04-02</time>
</header>
<aside>
Simple CalDAV access using Lightning and Mac OS X 10.7 (<q>Lion</q>) iCal.
The usual PUT, GET, and DELETE methods are supported, and a minimal (but functional) subset of PROPFIND and REPORT properties.
See the <a href="kcaldav.8.html">kcaldav(8)</a> manual for details.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.6</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-03">2015-04-03</time>
</header>
<aside>
Use the <a href="http://lcamtuf.coredump.cx/afl/">American fuzzy lop</a> to ferret out crashes and hangs in the <a
href="https://tools.ietf.org/html/rfc5545">iCalendar</a> parser.
Also move this parser to internally use a non-nil terminated buffer; thus, there's no additional copy necessary to a
nil-terminated buffer.
Support the <code><calendar-query></code> object for when the iPhone4 retrieves resources.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.7</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-04">2015-04-04</time>
</header>
<aside>
Linux support thanks to a lot of compatibility glue.
I'm especially displeased with Linux while doing this project: it doesn't even have <code>O_EXLOCK</code> and <code>O_SHLOCK</code>!
I'm just using <a href="http://libbsd.freedesktop.org/wiki/">libbsd</a> to prevent code duplication.
While refactoring, consolidate logging functions and add <a href="kcaldav.passwd.1.html">kcaldav.passwd(1)</a>.
Run the principal parsing routines through the <a href="http://lcamtuf.coredump.cx/afl/">American fuzzy lop</a> (nothing found).
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.8</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-05">2015-04-05</time>
</header>
<aside>
Verify that all <code>open()</code> invocations use advisory locks.
Simplify re-opening locked files with <code>fdopen()</code> into its own utility function.
Disallow symbolic links everywhere.
(This may be relaxed in the future...)
Drop privileges in <a href="kcaldav.passwd.1.html">kcaldav.passwd(1)</a>, making it sensitive to the <var>setuid</var> or
<var>setgid</var> bits.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.0.9</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-04-06">2015-04-06</time>
</header>
<aside>
Fully implement <a href="https://tools.ietf.org/html/rfc2617">RFC 2617</a> for authorisation.
This includes the <q>MD5-sess</q>, <q>auth</q>, and <q>auth-int</q> directives.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.0</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-05-02">2015-05-02</time>
</header>
<aside>
<div>
Migrate to using <a href="https://www.sqlite.org">SQLite</a> to store everything: nonces, collections, resources, configuration,
and so on.
This completely replaces the existing file-system based infrastructure, which was too brittle, with a single database file.
All existing functionality is preserved, but there are some changes to be aware of if you're already using <span class="nm">kcaldav</span>.
Foremost, you can now have multiple calendars.
To effect this change, all user calendars are now within subdirectories of the calendar root, e.g.,
<code>/cgi-bin/kcaldav/kristaps/calendar/</code> instead of directly in <code>.../kristaps/</code>.
iOS and iCal clients deal with this properly, but Thunderbird will need to point directly to the calendar collection.
Use the on-line interface or <a href="kcaldav.passwd.1.html">kcaldav.passwd(1)</a> to add calendars and calendar files.
</div>
<div>
To migrate an existing installation, you'll need to create a new database file with <a href="kcaldav.passwd.1.html">kcaldav.passwd(1)</a>.
Make sure that it's read-writable by the web server process.
You'll then need to add your iCalendar files using the same tool.
To migrate this server, I simply re-created my principal, then added the calendar files.
In brief,
</div>
<pre>% cd /var/www/caldav
% kcaldav.passwd -f . -C
% kcaldav.passwd -f . -n `find kristaps -name \*.ics`</pre>
<div>
The unabridged form consists of using <code>sudo</code> and <code>-u kristaps</code>.
For testing, note that the <span class="file">kcaldav.db</span> file can live alongside an existing installation.
So if you want to make sure it works, both can run alongside each other.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.1</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-05-12">2015-05-12</time>
</header>
<aside>
Split out the CalDAV and iCalendar parsing routines into their own library, which is installed but not yet properly documented.
The documentation will be fleshed out as <a href="libkcaldav.3.html">libkcaldav(3)</a>.
Also re-renamed the Makefile rule <q>updatecgi</q> back into <q>installcgi</q>.
This doesn't feature any updates to system functionality.
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.2</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-12-28">2015-12-28</time>
</header>
<aside>
Properly URL-encode and decode calendar entities.
This arises when some calendar systems (e.g., Google) use non-alphanumerics in their Calendar names.
Also relax an overly-strict rule when parsing the recursive rules as found by Reyk Floeter.
(Right now, the system doesn't use the recursive rule, so it's safe to have insane dates.)
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.3</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2015-12-28">2015-12-28</time>
</header>
<aside>
<div>
<strong>Warning</strong>: you'll need to dump your
database and regenerate it with the included schema
file <span class="file">kcaldav.sql</span>.
New columns and constraints have been added to support delegation as described below.
</div>
<div>
Added proxy functionality (see <a
href="http://svn.calendarserver.org/repository/calendarserver/CalendarServer/trunk/doc/Extensions/caldav-proxy.txt">caldav-proxy.txt</a>).
This has been tested with Apple's iCal, but not with other systems.
Delegation can be set from the client or from the web interface.
</div>
<div>
Make web-interface access to the <q>null</q> directory (e.g., /cgi-bin/kcaldav) automatically redirect to the root directory
instead of crashing the system.
Moreover, allow <q>probe</q> requests (<code>PROPFIND</code> on the script root) properly redirect to the authenticated principal.
While there, move the entire web interface to use JSON and JavaScript instead of dynamic HTML.
This makes it easier to extend or replace.
</div>
<div>
Updated the underlying database routines to better handle failure conditions and added more documentation to the code
and explanations of error conditions.
Sandbox the entire running process with <a
href="https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man3/sandbox_init.3.html">sandbox_init(3)</a>
(only applicable on Mac OS X).
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.4</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2016-03-02">2016-03-02</time>
</header>
<aside>
<div>
This small version allows integration with new <a href="http://kristaps.bsd.lv/kcgi">kcgi(3)</a> 0.7.5 facilities for
debugging.
This makes it easier to debug new CalDAV clients: see the <span class="file">Makefile</span> pre-processor options to
enable debugging.
If you have issues with a client, please enable full debugging and send me the exchange between the client and server.
I've removed the options parsed by <a href="kcaldav.8.html">kcaldav(8)</a>, instead relying on compile-time options as
defined (and documented) in the <span class="file">Makefile</span>.
Fix some small nits found with <a href="http://clang-analyzer.llvm.org/scan-build.html">scan-build</a>.
Add to <a href="https://github.com/kristapsdz/kcaldav">GitHub</a> and check with
<a href="https://scan.coverity.com/projects/kcaldav">Coverity</a>.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.5</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2016-07-05">2016-07-05</time>
</header>
<aside>
<div>
Don't break multi-byte (UTF-8) streams.
For the time being, this assumes that we're going to be encoded with UTF-8
Also migrate to a <span class="file">GNUmakefile</span> instead of a <span class="file">Makefile</span>, which
allows easier portability between systems. Use a LOGFILE directive instead of logging to stderr.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.6</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2018-03-23">2018-03-23</time>
</header>
<aside>
<div>
First release in a long time!
This brings us up to date with <a href="https://kristaps.bsd.lv/kcgi">kcgi(3)</a> along with some simplifications.
</div>
<div>
First, kick out the <span class="file">GNUmakefile</span> in favour of a simple <span class="file">Makefile</span>.
Then, bring in <a href="https://github.com/kristapsdz/oconfigure">oconfigure</a> for compatibility.
Lastly, relegate per-system changes to a <span class="file">Makefile.local</span>, making it easier for maintainers.
</div>
<div>
Lastly, start using <a href="https://man.openbsd.org/pledge.2">pledge(2)</a>
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.7</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2018-06-18">2018-06-18</time>
</header>
<aside>
<div>
Merge fixes from <a href="https://github.com/mk-f">mk-f@</a> to
handle <code>application/xml</code>, which requires the newest
version of <a href="https://kristaps.bsd.lv/kcgi">kcgi</a>.
He was also awesome in fixing another subtle bug (in <a
href="https://kristaps.bsd.lv/kcgi">kcgi</a>) in parsing the
<code>nc</code> value when performing certain types of validation.
An awesome set of fixes, thank you!
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.9</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2019-03-24">2019-03-24</time>
</header>
<aside>
<div>
Handle out-of-order iCal files, which is technically allowed by the
RFC.
This was raised by stsp@ and others on GitHub, with a patch as well!
While there, fix handling of dates prior to 1900, which happens with
some time zones.
Also handle some negatively-valued recurrence values.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.11</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2019-11-16">2019-11-16</time>
</header>
<aside>
<div>
First, handle non-numeric ETag values.
This has several steps.
First, not parsing the values as numbers and aborting otherwise.
Second, using randomly-generated ETag values internally instead of
monotonically increasing numbers.
Third, outputting as opaque strings instead of numbers.
This was originally reported by stsp@, thanks!
</div>
<div>
Next, HTTP conditionals.
For <code>If-Match</code>, make sure to properly handle quoted
values as well as the <q>passthrough</q> value.
Do the same for <code>If-None-Match</code>.
</div>
<div>
Lastly, clean up the manpages and the www material.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.12</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2020-05-28">2020-05-28</time>
</header>
<aside>
<div>
Update to newest and safest
<a href="https://kristaps.bsd.lv/kcgi">kcgi(3)</a> functions.
Bump to newest
<a href="https://github.com/kristapsdz/oconfigure">oconfigure</a>.
No code change otherwise.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.13</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2020-07-11">2020-07-11</time>
</header>
<aside>
<div>
Fix for RFC 5545 section 3.8.2.4, which stipulates a more
complicated date setup than initially parsed.
Found by and patched with Olivier Taïbi, thanks!
Bump to newest
<a href="https://github.com/kristapsdz/oconfigure">oconfigure</a>.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.14</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2020-07-28">2020-07-28</time>
</header>
<aside>
<div>
Even better parsing of iCalendar (RFC 5545) dates and times.
This is from more work contributed by Olivier Taïbi, thanks!
</div>
<div>
Significantly increase the iCalendar regression suite with a set of
valid calendar files from
<a href="https://github.com/ical4j/ical4j">ical4j</a>.
</div>
<div>
Essentially re-write the
<a href="kcaldav.passwd.1">kcaldav.passwd(1)</a> manpage for
clarity.
Significantly improve its code-base as well, most notably using
<a href="https://man.openbsd.org/pledge">pledge(2)</a>.
Make <b>-C</b> always unset <b>-n</b>.
</div>
<div>
Be much clearer about verbosity.
This now allows
<a href="kcaldav.passwd.1">kcaldav.passwd(1)</a> to not spam the
operator with underlying errors, warnings, and information.
Document the <b>-b</b> flag.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.1.15</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2020-10-06">2020-10-06</time>
</header>
<aside>
<div>
One-liner fix to respect the logfile name.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.2.0</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2020-10-12">2020-10-12</time>
</header>
<aside>
<div>
Significant upgrades to the source code, although none of it
front-facing.
Most effort went toward restructuring the code to be more readable
and friendly to contribution, especially as regards layering.
The layout is briefly described in the README file.
</div>
<div>
Messaging has been overhauled.
All web application access now uses
<a href="https://kristaps.bsd.lv/kcgi">kcgi</a>'s logging routines,
while the local
<a href="kcaldav.passwd.1">kcaldav.passwd.1</a> uses standard
console logging.
The only front-facing change here is that command-line output is as
one would expect—output was all tailored to web application
logging.
The only maintainer update is that the <code>DEBUG</code> macro at
compile time, which used to be settable to <code>1</code> for
verbose output and <code>2</code> for <strong>all</strong> output,
is now <code>1</code> (informational messages), <code>2</code>
(database operations as well), or <code>3</code> (network as well).
A value of <code>0</code> (or less than zero), or not specifying the
variable, results in only errors being reported.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.2.4</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2023-11-12">2023-11-12</time>
</header>
<aside>
<div>
Instead of compile-time debug levels and output, start using a
run-time configuration file. (Existing methods of setting debug
level and file are retained, although they are overridden by the
configuration file contents).
This is documented in
<a href="kcaldav.conf.5.html">kcaldav.conf(5)</a>.
The location of the file is a compile-time constant set in
<code>CFGFILE</code>, defaulting to <code>/conf/kcaldav.conf</code>.
This makes it much easier to submit bug reports.
</div>
<div>
Fully comply to the RFC for <code>RRULE</code> <code>UNTIL</code>
parsing. Newer versions of Thunderbird (or possibly just the
newer time-zone specifications used by Thunderbird) caused
<span class="nm">kcaldav</span> to fail in parsing uploaded
calendar entries for this reason.
</div>
</aside>
</article>
<article data-sblg-article="1" data-sblg-tags="version">
<header>
<h1>0.2.5</h1>
<address>Kristaps Dzonsons</address>
<time datetime="2023-11-25">2023-11-25</time>
</header>
<aside>
<div>
Configuration bug-fixes and making it easier to deploy on
OpenBSD.
</div>
</aside>
</article>
</articles>