-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump @rollup/plugin-terser from 0.1.0 to 0.4.0 #10
base: main
Are you sure you want to change the base?
Bump @rollup/plugin-terser from 0.1.0 to 0.4.0 #10
Commits on Nov 29, 2022
-
package.json:exports: include leading ./
kewisch#560 https://nodejs.org/api/packages.html#exports contains «All paths defined in the "exports" must be relative file URLs starting with "./" .»
Configuration menu - View commit details
-
Copy full SHA for 1f6cd78 - Browse repository at this point
Copy the full SHA 1f6cd78View commit details -
parser._handleContentLine() parsing including ^ in the parameter value
Prior this change the property ATTENDEE=CN="Ж 4 <>'^':":mailto:[email protected] is read as: jCal: [ 'attendee', { cn: `Ж 4 <>'":` }, 'cal-address', '":mailto:[email protected]' ] The value starts with quote, which is wrong. kewisch#507 ES6-ready
Configuration menu - View commit details
-
Copy full SHA for 17e0f5d - Browse repository at this point
Copy the full SHA 17e0f5dView commit details -
event.isRecurring() does not repeat with RECURRENCE-ID without RANGE
Evolution creates instances of events, which contain RRULE and RECURRENCE-ID without RANGE parameter. Since the RANGE is not THISANDFUTURE, but absent, such events do not recur. https://gitlab.gnome.org/GNOME/evolution/-/issues/1180 kewisch#457 ES6-ready
Configuration menu - View commit details
-
Copy full SHA for 61f6bce - Browse repository at this point
Copy the full SHA 61f6bceView commit details -
recur_expansion: EXDATE can be DATE and DTSTART can be DATE-TIME
When EXDATE is in DATE format and DTSTART is DATE-TIME, then to determine whether a ocurrence shall be excluded, the occurence shall be converted to DATE and then compared to EXDATE. This applies also for the very first EXDATE, when it coincides with DTSTART.
Configuration menu - View commit details
-
Copy full SHA for 204fb1e - Browse repository at this point
Copy the full SHA 204fb1eView commit details -
parse._parsedParameters: do not use helpers.unescapedIndexOf()
iCalendar and vCard parameters do not use \ as escape character in the property parameter values, hence cn="\"X" is not a quote X, but invalid. The proper escape character is ^ per RFC 6868. This change replaces helpers.unescapedIndexOf(x,…) with x.indexOf(…) in order not to kewisch#536 ES6-ready
Configuration menu - View commit details
-
Copy full SHA for c29d474 - Browse repository at this point
Copy the full SHA c29d474View commit details -
stringify: do not use unescapedIndexOf in property parameters
… as \ is no escape character there. When the propery parameter contains :, then it must be quoted, the colon cannot be escaped. As the function stringify.propertyValue in fact stringifies property parameter values, it is renamed accordingly. kewisch#535 ES6-ready
Configuration menu - View commit details
-
Copy full SHA for 581cf49 - Browse repository at this point
Copy the full SHA 581cf49View commit details -
recur_expansion.js: fix iterator with RDATE-only recurrence
kewisch#534 When iterating with e is an event-component if (e.isRecurring() { let i = e.iterator(); while (n = i.next()) { o = g.getOccurrenceDetails(obj) … } } on the first iteration the DTSTART instance shall be returned. It is returned, when there is RRULE. In the lack of this change, on the first iteration, when RDATE is present without RRULE, the first RDATE instance is returned.
Configuration menu - View commit details
-
Copy full SHA for 25ec99a - Browse repository at this point
Copy the full SHA 25ec99aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93f5019 - Browse repository at this point
Copy the full SHA 93f5019View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1deddcb - Browse repository at this point
Copy the full SHA 1deddcbView commit details
Commits on Jan 24, 2023
-
Bump @rollup/plugin-terser from 0.1.0 to 0.4.0
Bumps [@rollup/plugin-terser](https://github.com/rollup/plugins/tree/HEAD/packages/terser) from 0.1.0 to 0.4.0. - [Release notes](https://github.com/rollup/plugins/releases) - [Changelog](https://github.com/rollup/plugins/blob/master/packages/terser/CHANGELOG.md) - [Commits](https://github.com/rollup/plugins/commits/terser-v0.4.0/packages/terser) --- updated-dependencies: - dependency-name: "@rollup/plugin-terser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f83d4d7 - Browse repository at this point
Copy the full SHA f83d4d7View commit details