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

chore(deps): bump calendar-js to 8.0.2 #6050

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 10 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@nextcloud/auth": "^2.3.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/calendar-availability-vue": "^2.2.4",
"@nextcloud/calendar-js": "^7.0.0",
"@nextcloud/calendar-js": "^8.0.2",
"@nextcloud/cdav-library": "^1.5.1",
"@nextcloud/dialogs": "^5.3.6",
"@nextcloud/event-bus": "^3.3.1",
Expand All @@ -57,6 +57,7 @@
"@nextcloud/logger": "^3.0.2",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/timezones": "^0.1.1",
"@nextcloud/vue": "^8.16.0",
"autosize": "^6.0.1",
"color-convert": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Shared/TimezoneSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</template>

<script>
import { getReadableTimezoneName, getSortedTimezoneList } from '@nextcloud/calendar-js'
import { getReadableTimezoneName, getSortedTimezoneList } from '@nextcloud/timezones'

Check warning on line 21 in src/components/Shared/TimezoneSelect.vue

View check run for this annotation

Codecov / codecov/patch

src/components/Shared/TimezoneSelect.vue#L21

Added line #L21 was not covered by tests
import { NcSelect } from '@nextcloud/vue'
import { translate as t } from '@nextcloud/l10n'

Expand Down
2 changes: 1 addition & 1 deletion src/services/timezoneDataProviderService.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getTimezoneManager } from '@nextcloud/calendar-js'
import { getTimezoneManager } from '@nextcloud/timezones'

const timezoneManager = getTimezoneManager()
let initialized = false
Expand Down
2 changes: 1 addition & 1 deletion src/store/calendarObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import logger from '../utils/logger.js'
import {
createEvent,
getParserManager,
getTimezoneManager,
DateTimeValue,
} from '@nextcloud/calendar-js'
import useFetchedTimeRangesStore from './fetchedTimeRanges.js'
import useCalendarsStore from './calendars.js'
import { defineStore } from 'pinia'
import useCalendarObjectInstanceStore from './calendarObjectInstance.js'
import Vue from 'vue'
import { getTimezoneManager } from '@nextcloud/timezones'

export default defineStore('calendarObjects', {
state: () => {
Expand Down
3 changes: 2 additions & 1 deletion src/store/calendars.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import pLimit from 'p-limit'
import { uidToHexColor } from '../utils/color.js'
import { translate as t } from '@nextcloud/l10n'
import getTimezoneManager from '../services/timezoneDataProviderService.js'
import { CalendarComponent, Timezone, TimezoneComponent } from '@nextcloud/calendar-js'
import { CalendarComponent, TimezoneComponent } from '@nextcloud/calendar-js'
import { Timezone } from '@nextcloud/timezones'
import {
CALDAV_BIRTHDAY_CALENDAR,
IMPORT_STAGE_IMPORTING,
Expand Down
Loading