Merge pull request #3871 from nextcloud/dependabot/npm_and_yarn/ical.js-1.5.0

Bump ical.js from 1.4.0 to 1.5.0
This commit is contained in:
Richard Steinmetz 2022-01-14 11:41:13 +01:00 committed by GitHub
commit a93466d5c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 29 deletions

14
package-lock.json generated
View File

@ -60,7 +60,7 @@
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.4",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"ical.js": "^1.4.0",
"ical.js": "^1.5.0",
"iconfont-plugin-webpack": "^1.1.4",
"jest": "^27.4.7",
"jest-serializer-vue": "^2.0.2",
@ -9721,9 +9721,9 @@
}
},
"node_modules/ical.js": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.4.0.tgz",
"integrity": "sha512-ltHZuOFNNjcyEYbzDgjemS7LWIFh2vydJeznxQHUh3dnarbxqOYsWONYteBVAq1MEOHnwXFGN2eskZReHclnrA=="
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.5.0.tgz",
"integrity": "sha512-7ZxMkogUkkaCx810yp0ZGKvq1ZpRgJeornPttpoxe6nYZ3NLesZe1wWMXDdwTkj/b5NtXT+Y16Aakph/ao98ZQ=="
},
"node_modules/icalzone": {
"version": "0.0.1",
@ -26364,9 +26364,9 @@
"dev": true
},
"ical.js": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.4.0.tgz",
"integrity": "sha512-ltHZuOFNNjcyEYbzDgjemS7LWIFh2vydJeznxQHUh3dnarbxqOYsWONYteBVAq1MEOHnwXFGN2eskZReHclnrA=="
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/ical.js/-/ical.js-1.5.0.tgz",
"integrity": "sha512-7ZxMkogUkkaCx810yp0ZGKvq1ZpRgJeornPttpoxe6nYZ3NLesZe1wWMXDdwTkj/b5NtXT+Y16Aakph/ao98ZQ=="
},
"icalzone": {
"version": "0.0.1",

View File

@ -93,7 +93,7 @@
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.4.4",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"ical.js": "^1.4.0",
"ical.js": "^1.5.0",
"iconfont-plugin-webpack": "^1.1.4",
"jest": "^27.4.7",
"jest-serializer-vue": "^2.0.2",

View File

@ -1 +0,0 @@
FREQ=YEARLY;BYMONTH=1,2,3,0

View File

@ -527,27 +527,9 @@ describe('Test suite: Recurrence Rule model (models/recurrenceRule.js)', () => {
})
it('should properly load a recurrence-rule (20/24)', () => {
const recurrenceRuleValue = getRecurValueFromAsset('rrules/rrules20')
const baseDate = DateTimeValue.fromData({
year: 2020,
month: 3,
day: 15,
isDate: true,
})
// YEARLY with invalid BYMONTH
expect(mapRecurrenceRuleValueToRecurrenceRuleObject(recurrenceRuleValue, baseDate)).toEqual({
recurrenceRuleValue,
frequency: 'YEARLY',
interval: 1,
count: null,
until: null,
byDay: [],
byMonth: ['1', '2', '3'],
byMonthDay: [],
bySetPosition: null,
isUnsupported: true,
})
// Skipped as it is fixed upstream
// https://github.com/mozilla-comm/ical.js/pull/486
})
it('should properly load a recurrence-rule (21/24)', () => {