Skip to content
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

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Commits on Nov 29, 2022

  1. 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 "./" .»
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    1f6cd78 View commit details
    Browse the repository at this point in the history
  2. 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
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    17e0f5d View commit details
    Browse the repository at this point in the history
  3. 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
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    61f6bce View commit details
    Browse the repository at this point in the history
  4. 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.
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    204fb1e View commit details
    Browse the repository at this point in the history
  5. 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
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    c29d474 View commit details
    Browse the repository at this point in the history
  6. 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
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    581cf49 View commit details
    Browse the repository at this point in the history
  7. 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.
    dilyanpalauzov committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    25ec99a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    93f5019 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1deddcb View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2023

  1. 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]>
    dependabot[bot] authored Jan 24, 2023
    Configuration menu
    Copy the full SHA
    f83d4d7 View commit details
    Browse the repository at this point in the history