n8n-nodes-caldav-pro 3.1.2 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/README.md +323 -314
- package/dist/nodes/CalDav/CalDav.node.js +57 -9
- package/dist/nodes/CalDav/CalDav.node.js.map +1 -1
- package/dist/nodes/CalDav/EventDescription.js +14 -0
- package/dist/nodes/CalDav/EventDescription.js.map +1 -1
- package/dist/nodes/CalDav/GenericFunctions.d.ts +7 -3
- package/dist/nodes/CalDav/GenericFunctions.js +134 -15
- package/dist/nodes/CalDav/GenericFunctions.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,51 @@ All notable changes to this project are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project
|
|
5
5
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [3.3.0]
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **Single occurrences of a recurring series can be changed and cancelled.**
|
|
12
|
+
Set **Occurrence** on Delete or Update to a `recurrenceId` from a read, and
|
|
13
|
+
only that date is affected.
|
|
14
|
+
|
|
15
|
+
A series has no per-occurrence resource to address: every occurrence shares
|
|
16
|
+
one UID and one URL. Cancelling therefore adds the slot to `EXDATE` and
|
|
17
|
+
writes the series back — a `PUT`, not a `DELETE`, since deleting the resource
|
|
18
|
+
would take the whole series. Changing writes a `RECURRENCE-ID` override
|
|
19
|
+
beside the master, seeded from it so the occurrence keeps the series' details,
|
|
20
|
+
minus the recurrence properties an override must not carry.
|
|
21
|
+
|
|
22
|
+
Both anchor on the slot the rule generated rather than on where an occurrence
|
|
23
|
+
was moved to, so a moved occurrence can still be cancelled afterwards — and
|
|
24
|
+
cancelling removes any override for that slot instead of orphaning it.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- The guard added in 3.1.0 now points at both ways out: name an occurrence, or
|
|
29
|
+
confirm the whole series.
|
|
30
|
+
|
|
31
|
+
## [3.2.0]
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- **`startLocal` and `endLocal`** on returned events: the same moment as the
|
|
36
|
+
event's own local time with its offset applied, `2026-07-28T21:00:00+02:00`.
|
|
37
|
+
|
|
38
|
+
`start` is a UTC instant because that is what sorts and computes correctly,
|
|
39
|
+
but reading a local time off it requires knowing the offset in force on that
|
|
40
|
+
date — and language models get that wrong. Asked to show a 19:00Z summer
|
|
41
|
+
event in Berlin, one reported 23:00, then 20:00 on a later run: no offset,
|
|
42
|
+
then the winter offset. For a node that advertises `usableAsTool`, handing
|
|
43
|
+
the model arithmetic it cannot reliably do is a design fault, not the model's
|
|
44
|
+
problem.
|
|
45
|
+
|
|
46
|
+
Events stored in plain UTC carry no zone of their own and are rendered in the
|
|
47
|
+
workflow's timezone. All-day events keep their bare date. `start` and `end`
|
|
48
|
+
are unchanged, so nothing that reads them needs to.
|
|
49
|
+
|
|
50
|
+
- The node description now tells an agent which field to use for what.
|
|
51
|
+
|
|
7
52
|
## [3.1.2]
|
|
8
53
|
|
|
9
54
|
### Fixed
|