Skip to content
This repository was archived by the owner on Mar 9, 2021. It is now read-only.

Update dependency date-fns to v2 - #525

Open
renovate[bot] wants to merge 17 commits into
developfrom
renovate/date-fns-2.x
Open

Update dependency date-fns to v2#525
renovate[bot] wants to merge 17 commits into
developfrom
renovate/date-fns-2.x

Conversation

@renovate

@renovaterenovateBot commented Aug 20, 2019

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageTypeUpdateChange
date-fnsdependenciesmajor1.30.1 -> 2.9.0

Release Notes

date-fns/date-fns

v2.9.0

Compare Source

Thanks to @​mborgbrant, @​saintplay, @​mrenty, @​kibertoad, @​levibuzolic, @​Anshuman71, @​talgautb, @​filipjuza, @​tobyzerner, @​emil9453, @​fintara, @​pascaliske, @​rramiachraf, @​marnusw and @​Imballinst for working on the release.

Fixed
Added
Changed

v2.8.1

Compare Source

Thanks to @​Imballinst for the bug fix!

Fixed

v2.8.0

Compare Source

Kudos to @​NaridaL, @​Zyten, @​Imballinst, @​leshakoss and @​Neorth for working on the release.

Fixed
Added

v2.7.0

Compare Source

Thanks to @​mzgajner, @​NaridaL, @​Zyten, @​leshakoss, @​fintara, @​kpr-hellofresh for contributing to the release.

Fixed
Changed
Added

v2.6.0

Compare Source

Kudos to @​marnusw, @​cdrikd and @​rogyvoje for working on the release!

Added

v2.5.1

Compare Source

Thanks to @​mitchellbutler for the bug fix!

Fixed

v2.5.0

Compare Source

Kudos to @​dkozickis, @​drugoi, @​kranthilakum, @​102, @​gpetrioli and @​JulienMalige for making the release happen.

Fixed
Added

v2.4.1

Compare Source

Thanks to @​mrclayman for reporting the issue and @​leshakoss for fixing it.

Fixed

v2.4.0

Compare Source

This release brought to you by these amazing people: @​lovelovedokidoki, @​alexigityan, @​kalekseev and @​andybangs. You rock!

Fixed
Added

v2.3.0

Compare Source

Huge thanks to @​lovelovedokidoki who improved 8 (!) locales in an unstoppable open-source rampage and @​VesterDe for fixing Slovenian locale 👏

Fixed
Added

v2.2.1

Compare Source

Kudos to date-fns contributors: @​mzgajner, @​sibiraj-s, @​mukeshmandiwal, @​SneakyFish5 and @​CarterLi.

Added

v2.1.0

Compare Source

Thanks to date-fns contributors: @​ManadayM, @​illuminist, @​visualfanatic, @​vsaarinen and at least but not least @​leshakoss!

Fixed
Added

v2.0.1

Compare Source

Fixed

v2.0.0

Compare Source

If you're upgrading from v2 alpha or beta, see the pre-release changelog.

Fixed
  • Fix the toDate bug occurring when parsing ISO-8601 style dates (but not valid ISO format)
    with a trailing Z (e.g 2012-01Z), it returned Invalid Date for FireFox/IE11 #​510

  • Fix differenceIn... functions returning negative zero in some cases:
    #​692

  • isDate now works properly with dates passed across iframes #​754.

  • Fix a few bugs that appear in timezones with offsets that include seconds (e.g. GMT+00:57:44).
    See PR #​789.

  • Fixed DST issue. See #​972 and #​992 for more details.

  • Fixed DST issue in eachDayOfInterval that caused time in the days
    after DST change to have the shift as well.

  • Fix bug in Galician locale caused by incorrect usage of getHours
    instead of getUTCHours.

Changed
  • BREAKING: now functions don't accept string arguments, but only
    numbers or dates. When a string is passed, it will result in
    an unexpected result (Invalid Date, NaN, etc).

    From now on a string should be parsed using parseISO (ISO 8601)
    or parse.

    In v1 we've used new Date() to parse strings, but it resulted in many
    hard-to-track bugs caused by inconsistencies in different browsers.
    To address that we've implemented our ISO 8601 parser but that made
    library to significantly grow in size. To prevent inevitable bugs
    and keep the library tiny, we made this trade-off.

    See this post for more details.

    // Before v2.0.0addDays('2016-01-01',1)// v2.0.0 onwardaddDays(parseISO('2016-01-01'),1)
  • BREAKING: new format string API for format function
    which is based on Unicode Technical Standard #​35.
    See this post for more details.

    Unitv2 Patternv1 PatternResult examples
    EraG..GGGAD, BC
    GGGGAnno Domini, Before Christ
    GGGGGA, B
    Calendar yeary44, 1, 1900, 2017
    yo44th, 1st, 0th, 17th
    yyYY44, 01, 00, 17
    yyy044, 001, 1900, 2017
    yyyyYYYY0044, 0001, 1900, 2017
    yyyyy...
    Local week-numbering yearY44, 1, 1900, 2017
    Yo44th, 1st, 1900th, 2017th
    YY44, 01, 00, 17
    YYY044, 001, 1900, 2017
    YYYY0044, 0001, 1900, 2017
    YYYYY...
    ISO week-numbering yearR-43, 0, 1, 1900, 2017
    RRGG-43, 00, 01, 1900, 2017
    RRR-043, 000, 001, 1900, 2017
    RRRRGGGG-0043, 0000, 0001, 1900, 2017
    RRRRR...
    Extended yearu-43, 0, 1, 1900, 2017
    uu-43, 01, 1900, 2017
    uuu-043, 001, 1900, 2017
    uuuu-0043, 0001, 1900, 2017
    uuuuu...
    Quarter (formatting)Q1, 2, 3, 4
    Qo1st, 2nd, 3rd, 4th
    QQ01, 02, 03, 04
    QQQQ1, Q2, Q3, Q4
    QQQQ1st quarter, 2nd quarter, ...
    QQQQQ1, 2, 3, 4
    Quarter (stand-alone)qQ1, 2, 3, 4
    qoQo1st, 2nd, 3rd, 4th
    qq01, 02, 03, 04
    qqqQ1, Q2, Q3, Q4
    qqqq1st quarter, 2nd quarter, ...
    qqqqq1, 2, 3, 4
    Month (formatting)M1, 2, ..., 12
    Mo1st, 2nd, ..., 12th
    MM01, 02, ..., 12
    MMMJan, Feb, ..., Dec
    MMMMJanuary, February, ..., December
    MMMMMJ, F, ..., D
    Month (stand-alone)LM1, 2, ..., 12
    Lo1st, 2nd, ..., 12th
    LLMM01, 02, ..., 12
    LLLMMMJan, Feb, ..., Dec
    LLLLMMMMJanuary, February, ..., December
    LLLLLJ, F, ..., D
    Local week of yearw1, 2, ..., 53
    wo1st, 2nd, ..., 53th
    ww01, 02, ..., 53
    ISO week of yearIW1, 2, ..., 53
    IoWo1st, 2nd, ..., 53th
    IIWW01, 02, ..., 53
    Day of monthdD1, 2, ..., 31
    doDo1st, 2nd, ..., 31st
    ddDD01, 02, ..., 31
    Day of yearDDDD1, 2, ..., 365, 366
    DoDDDo1st, 2nd, ..., 365th, 366th
    DD01, 02, ..., 365, 366
    DDDDDDD001, 002, ..., 365, 366
    DDDD...
    Day of week (formatting)E..EEEMon, Tue, Wed, ..., Su
    EEEEMonday, Tuesday, ..., Sunday
    EEEEEM, T, W, T, F, S, S
    EEEEEEMo, Tu, We, Th, Fr, Su, Sa
    ISO day of week (formatting)iE1, 2, 3, ..., 7
    iodo1st, 2nd, ..., 7th
    ii01, 02, ..., 07
    iiidddMon, Tue, Wed, ..., Su
    iiiiddddMonday, Tuesday, ..., Sunday
    iiiiiM, T, W, T, F, S, S
    iiiiiiddMo, Tu, We, Th, Fr, Su, Sa
    Local day of week (formatting)e2, 3, 4, ..., 1
    eo2nd, 3rd, ..., 1st
    ee02, 03, ..., 01
    eeeMon, Tue, Wed, ..., Su
    eeeeMonday, Tuesday, ..., Sunday
    eeeeeM, T, W, T, F, S, S
    eeeeeeMo, Tu, We, Th, Fr, Su, Sa
    Local day of week (stand-alone)c2, 3, 4, ..., 1
    co2nd, 3rd, ..., 1st
    cc02, 03, ..., 01
    cccMon, Tue, Wed, ..., Su
    ccccMonday, Tuesday, ..., Sunday
    cccccM, T, W, T, F, S, S
    ccccccMo, Tu, We, Th, Fr, Su, Sa
    AM, PMa..aaaAAM, PM
    aaaaaaa.m., p.m.
    aaaaaa, p
    AM, PM, noon, midnightb..bbbAM, PM, noon, midnight
    bbbba.m., p.m., noon, midnight
    bbbbba, p, n, mi
    Flexible day periodB..BBBat night, in the morning, ...
    BBBBat night, in the morning, ...
    BBBBBat night, in the morning, ...
    Hour [1-12]h1, 2, ..., 11, 12
    ho1st, 2nd, ..., 11th, 12th
    hh01, 02, ..., 11, 12
    Hour [0-23]H0, 1, 2, ..., 23
    Ho0th, 1st, 2nd, ..., 23rd
    HH00, 01, 02, ..., 23
    Hour [0-11]K1, 2, ..., 11, 0
    Ko1st, 2nd, ..., 11th, 0th
    KK1, 2, ..., 11, 0
    Hour [1-24]k24, 1, 2, ..., 23
    ko24th, 1st, 2nd, ..., 23rd
    kk24, 01, 02, ..., 23
    Minutem0, 1, ..., 59
    mo0th, 1st, ..., 59th
    mm00, 01, ..., 59
    Seconds0, 1, ..., 59
    so0th, 1st, ..., 59th
    ss00, 01, ..., 59
    Fraction of secondS0, 1, ..., 9
    SS00, 01, ..., 99
    SSS000, 0001, ..., 999
    SSSS...
    Timezone (ISO-8601 w/ Z)X-08, +0530, Z
    XX-0800, +0530, Z
    XXX-08:00, +05:30, Z
    XXXX-0800, +0530, Z, +123456
    XXXXX-08:00, +05:30, Z, +12:34:56
    Timezone (ISO-8601 w/o Z)x-08, +0530, +00
    xxZZ-0800, +0530, +0000
    xxxZ-08:00, +05:30, +00:00
    xxxx-0800, +0530, +0000, +123456
    xxxxx-08:00, +05:30, +00:00, +12:34:56
    Timezone (GMT)O...OOOGMT-8, GMT+5:30, GMT+0
    OOOOGMT-08:00, GMT+05:30, GMT+00:00
    Timezone (specific non-locat.)z...zzzGMT-8, GMT+5:30, GMT+0
    zzzzGMT-08:00, GMT+05:30, GMT+00:00
    Seconds timestamptX5129695
    tt...
    Milliseconds timestampTx5129695
    TT...
    Long localized dateP5/29/53
    PPMay 29, 1453
    PPPMay 29th, 1453
    PPPPSunday, May 29th, 1453
    Long localized timep12:00 AM
    pp12:00:00 AM
    ppp12:00:00 AM GMT+2
    pppp12:00:00 AM GMT+02:00
    Combination of date and timePp5/29/53, 12:00 AM
    PPppMay 29, 1453, 12:00 AM
    PPPpppMay 29th, 1453 at ...
    PPPPppppSunday, May 29th, 1453 at ...

    Characters are now escaped using single quote symbols (') instead of square brackets.
    format now throws RangeError if it encounters an unescaped latin character
    that isn't a valid formatting token.

    To use YY and YYYY tokens that represent week-numbering years,
    you should set useAdditionalWeekYearTokens option:

    format(Date.now(),'YY',{useAdditionalWeekYearTokens: true})//=> '86'

    To use D and DD tokens which represent days of the year,
    set useAdditionalDayOfYearTokens option:

    format(Date.now(),'D',{useAdditionalDayOfYearTokens: true})//=> '364'
  • BREAKING: function submodules now use camelCase naming schema:

    // Before v2.0.0importdifferenceInCalendarISOYearsfrom'date-fns/difference_in_calendar_iso_years'// v2.0.0 onwardimportdifferenceInCalendarISOYearsfrom'date-fns/differenceInCalendarISOYears'
  • BREAKING: min and max functions now accept an array of dates
    rather than spread arguments.

    // Before v2.0.0vardate1=newDate(1989,6/* Jul */,10)vardate2=newDate(1987,1/* Feb */,11)varminDate=min(date1,date2)varmaxDate=max(date1,date2)// v2.0.0 onward:vardates=[newDate(1989,6/* Jul */,10),newDate(1987,1/* Feb */,11)]varminDate=min(dates)varmaxDate=max(dates)
  • BREAKING: make the second argument of format required for the sake of explicitness.

    // Before v2.0.0format(newDate(2016,0,1))// v2.0.0 onwardformat(newDate(2016,0,1),"yyyy-MM-dd'T'HH:mm:ss.SSSxxx")
  • BREAKING renamed ISO week-numbering year helpers:

    • addISOYearsaddISOWeekYears
    • differenceInCalendarISOYearsdifferenceInCalendarISOWeekYears
    • differenceInISOYearsdifferenceInISOWeekYears
    • endOfISOYearendOfISOWeekYear
    • getISOYeargetISOWeekYear
    • isSameISOYearisSameISOWeekYear
    • lastDayOfISOYearlastDayOfISOWeekYear
    • setISOYearsetISOWeekYear
    • subISOYearssubISOWeekYears

    i.e. "ISO year" renamed to "ISO week year", which is short for
    ISO week-numbering year.
    It makes them consistent with locale-dependent week-numbering year helpers,
    e.g., startOfWeekYear.

  • BREAKING: functions renamed:

    • areRangesOverlappingareIntervalsOverlapping
    • eachDayeachDayOfInterval
    • getOverlappingDaysInRangesgetOverlappingDaysInIntervals
    • isWithinRangeisWithinInterval

    This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology:

    2.1.3
    time interval
    part of the time axis limited by two instants
    

    Also these functions now accept an object with start and end properties
    instead of two arguments as an interval. All these functions
    throw RangeError if the start of the interval is after its end
    or if any date in the interval is Invalid Date.

    // Before v2.0.0areRangesOverlapping(newDate(2014,0,10),newDate(2014,0,20),newDate(2014,0,17),newDate(2014,0,21))eachDay(newDate(2014,0,10),newDate(2014,0,20))getOverlappingDaysInRanges(newDate(2014,0,10),newDate(2014,0,20),newDate(2014,0,17),newDate(2014,0,21))isWithinRange(newDate(2014,0,3),newDate(2014,0,1),newDate(2014,0,7))// v2.0.0 onwardareIntervalsOverlapping({start: newDate(2014,0,10),end: newDate(2014,0,20)},{start: newDate(2014,0,17),end: newDate(2014,0,21)})eachDayOfInterval({start: newDate(2014,0,10),end: newDate(2014,0,20)})getOverlappingDaysInIntervals({start: newDate(2014,0,10),end: newDate(2014,0,20)},{start: newDate(2014,0,17),end: newDate(2014,0,21)})isWithinInterval(newDate(2014,0,3),{start: newDate(2014,0,1),end: newDate(2014,0,7)})
  • BREAKING: functions renamed:

    • distanceInWordsformatDistance
    • distanceInWordsStrictformatDistanceStrict
    • distanceInWordsToNowformatDistanceToNow

    to make them consistent with format and formatRelative.

  • BREAKING: The order of arguments of distanceInWords and distanceInWordsStrict
    is swapped to make them consistent with differenceIn... functions.

    // Before v2.0.0distanceInWords(newDate(1986,3,4,10,32,0),newDate(1986,3,4,11,32,0),{addSuffix: true})//=> 'in about 1 hour'// v2.0.0 onwardformatDistance(newDate(1986,3,4,11,32,0),newDate(1986,3,4,10,32,0),{addSuffix: true})//=> 'in about 1 hour'
  • BREAKING: partialMethod option in formatDistanceStrict is renamed to roundingMethod.

    // Before v2.0.0distanceInWordsStrict(newDate(1986,3,4,10,32,0),newDate(1986,3,4,10,33,1),{partialMethod: 'ceil'})//=> '2 minutes'// v2.0.0 onwardformatDistanceStrict(newDate(1986,3,4,10,33,1),newDate(1986,3,4,10,32,0),{roundingMethod: 'ceil'})//=> '2 minutes'
  • BREAKING: in formatDistanceStrict, if roundingMethod is not specified,
    it now defaults to round instead of floor.

  • BREAKING: unit option in formatDistanceStrict now accepts one of the strings:
    'second', 'minute', 'hour', 'day', 'month' or 'year' instead of 's', 'm', 'h', 'd', 'M' or 'Y'

    // Before v2.0.0distanceInWordsStrict(newDate(1986,3,4,10,32,0),newDate(1986,3,4,10,33,1),{unit: 'm'})// v2.0.0 onwardformatDistanceStrict(newDate(1986,3,4,10,33,1),newDate(1986,3,4,10,32,0),{unit: 'minute'})
  • BREAKING: parse that previously used to convert strings and
    numbers to dates now parse only strings in an arbitrary format
    specified as an argument. Use toDate to coerce numbers and parseISO
    to parse ISO 8601 strings.

    // Before v2.0.0parse('2016-01-01')parse(1547005581366)parse(newDate())// Clone the date// v2.0.0 onwardparse('2016-01-01','yyyy-MM-dd',newDate())parseISO('2016-01-01')toDate(1547005581366)toDate(newDate())// Clone the date
  • BREAKING: toDate (previously parse) now doesn't accept string
    arguments but only numbers and dates. toDate called with an invalid
    argument will return Invalid Date.

  • BREAKING: new locale format.
    See docs/Locale.
    Locales renamed:

    • enen-US
    • zh_cnzh-CN
    • zh_twzh-TW
    // Before v2.0.0importlocalefrom'date-fns/locale/zh_cn'// v2.0.0 onwardimportlocalefrom'date-fns/locale/zh-CN'
  • BREAKING: now closestTo and closestIndexTo don't throw an exception
    when the second argument is not an array, and return Invalid Date instead.

  • BREAKING: now isValid doesn't throw an exception
    if the first argument is not an instance of Date.
    Instead, argument is converted beforehand using toDate.

    Examples:

    isValid argumentBefore v2.0.0v2.0.0 onward
    new Date()truetrue
    new Date('2016-01-01')truetrue
    new Date('')falsefalse
    new Date(1488370835081)truetrue
    new Date(NaN)falsefalse
    '2016-01-01'TypeErrorfalse
    ''TypeErrorfalse
    1488370835081TypeErrortrue
    NaNTypeErrorfalse

    We introduce this change to make date-fns consistent with ECMAScript behavior
    that try to coerce arguments to the expected type
    (which is also the case with other date-fns functions).

  • BREAKING: functions now throw RangeError if optional values passed to options
    are not undefined or have expected values.
    This change is introduced for consistency with ECMAScript standard library which does the same.

  • BREAKING: format, formatDistance (previously distanceInWords) and
    formatDistanceStrict (previously distanceInWordsStrict) now throw
    RangeError if one the passed arguments is invalid. It reflects behavior of
    toISOString and Intl API. See #​1032.

  • BREAKING: all functions now implicitly convert arguments by following rules:

    datenumberstringboolean
    0new Date(0)0'0'false
    '0'Invalid Date0'0'false
    1new Date(1)1'1'true
    '1'Invalid Date1'1'true
    trueInvalid DateNaN'true'true
    falseInvalid DateNaN'false'false
    nullInvalid DateNaN'null'false
    undefinedInvalid DateNaN'undefined'false
    NaNInvalid DateNaN'NaN'false

    Notes:

    • as before, arguments expected to be Date are converted to Date using date-fns'toDate function;
    • arguments expected to be numbers are converted to integer numbers using our custom toInteger implementation
      (see #​765);
    • arguments expected to be strings are converted to strings using JavaScript's String function;
    • arguments expected to be booleans are converted to boolean using JavaScript's Boolean function.

    null and undefined passed to optional arguments (i.e. properties of options argument)
    are ignored as if no argument was passed.

    If any resulting argument is invalid (i.e. NaN for numbers and Invalid Date for dates),
    an invalid value will be returned:

    • false for functions that return booleans (expect isValid);
    • Invalid Date for functions that return dates;
    • and NaN for functions that return numbers.

    See tests and PRs #​460 and
    #​765 for exact behavior.

  • BREAKING: all functions now check if the passed number of arguments is less
    than the number of required arguments and throw TypeError exception if so.

  • BREAKING: all functions that accept numbers as arguments, now coerce
    values using Number() and also round decimals. Positive decimals are
    rounded using Math.floor, decimals less than zero are rounded using
    Math.ceil.

  • BREAKING: The Bower & UMD/CDN package versions are no longer supported.

  • BREAKING: null now is not a valid date. isValid(null) returns false;
    toDate(null) returns an invalid date. Since toDate is used internally
    by all the functions, operations over null will also return an invalid date.
    See #​537 for the reasoning.

  • toDate (previously parse) and isValid functions now accept any type
    as the first argument.

  • Exclude docs.json from the npm package. Kudos to @​hawkrives.

Added

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@vercel

vercelBot commented Aug 20, 2019

Copy link
Copy Markdown

This pull request is being automatically deployed with ZEIT Now (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://zeit.co/coderplex/coderplex/i5uxd5le0
✅ Preview: https://coderplex-git-renovate-date-fns-2x.coderplex.now.sh

@coderplex-bot

coderplex-bot commented Aug 20, 2019

Copy link
Copy Markdown
Collaborator

Deploy preview for coderplex ready!

Built with commit 804ec92

https://deploy-preview-525--coderplex.netlify.com

@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 978cfe2 to f222f9cCompareAugust 23, 2019 16:03
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from f222f9c to d8858f1CompareAugust 25, 2019 22:40
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from d8858f1 to 2ebd8daCompareAugust 28, 2019 19:59
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 2ebd8da to 836cd14CompareAugust 31, 2019 19:52
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 836cd14 to ccf22f9CompareSeptember 1, 2019 17:59
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from ccf22f9 to 96e579cCompareSeptember 2, 2019 17:49
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 96e579c to 16152c1CompareSeptember 3, 2019 20:55
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 16152c1 to 8c5fe13CompareSeptember 4, 2019 16:55
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 8c5fe13 to d44b0c7CompareSeptember 6, 2019 14:51
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from d44b0c7 to 804ec92CompareSeptember 6, 2019 17:33
@renovaterenovateBot changed the title fix(deps): update dependency date-fns to v2Update dependency date-fns to v2Sep 6, 2019
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from 804ec92 to fd6019bCompareSeptember 10, 2019 16:39
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from fd6019b to ee11f35CompareSeptember 10, 2019 21:26
@renovate
renovateBotforce-pushed the renovate/date-fns-2.x branch from ee11f35 to eec65b9CompareSeptember 12, 2019 15:24
@renovate

renovateBot commented Nov 22, 2019

Copy link
Copy Markdown
ContributorAuthor

PR has been edited

👷 This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over you may click the "rebase" checkbox in the PR body/description.

If you think this comment is in error and the branch is not modified, try deleting this comment. If it comes back again the next time Renovate runs, please submit an issue or seek config help.

@vinaypuppal

vinaypuppal commented Jan 30, 2020

Copy link
Copy Markdown
Contributor

Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

@coderplex-bot@vinaypuppal@KirankumarAmbati@renovate-bot