Skip to content

Commit

Permalink
tag version Cal.com version v5.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 11, 2025
1 parent 23cd491 commit 0acfc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 96 files
+3 −0 .yarn/versions/907efed3.yml
+1 −1 apps/api/v2/package.json
+1 −1 apps/api/v2/src/ee/bookings/2024-04-15/inputs/create-recurring-booking.input.ts
+1 −1 apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/api-key-bookings.e2e-spec.ts
+1 −1 apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/emails/confirm-emails.e2e-spec.ts
+1 −1 apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/emails/team-emails.e2e-spec.ts
+1 −1 apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/emails/user-emails.e2e-spec.ts
+1 −1 apps/api/v2/src/ee/bookings/2024-08-13/controllers/e2e/recurring-bookings.e2e-spec.ts
+1 −1 apps/api/v2/src/ee/calendars/controllers/calendars.controller.e2e-spec.ts
+2 −1 apps/api/v2/src/ee/calendars/services/apple-calendar.service.ts
+2 −1 apps/api/v2/src/ee/calendars/services/ics-feed.service.ts
+1 −1 apps/api/v2/src/modules/atoms/controllers/atoms.controller.ts
+1 −1 apps/api/v2/src/modules/atoms/services/conferencing-atom.service.ts
+8 −12 apps/api/v2/src/modules/atoms/services/event-types-atom.service.ts
+2 −6 apps/api/v2/src/modules/conferencing/services/conferencing.service.ts
+2 −1 apps/api/v2/src/modules/email/email.service.ts
+2 −2 ...v2/src/modules/organizations/delegation-credentials/services/organizations-delegation-credential.service.ts
+18 −4 apps/api/v2/src/modules/organizations/organizations/organizations-organizations.controller.e2e-spec.ts
+10 −1 apps/api/v2/swagger/documentation.json
+2 −1 apps/api/v2/tsconfig.json
+1 −0 apps/web/app/(use-page-wrapper)/settings/(settings-layout)/SettingsLayoutAppDirClient.tsx
+3 −1 apps/web/app/api/auth/forgot-password/route.ts
+6 −1 apps/web/app/api/auth/oauth/refreshToken/route.ts
+2 −1 apps/web/app/api/auth/oauth/token/route.ts
+4 −3 apps/web/app/api/auth/reset-password/route.ts
+1 −1 apps/web/app/api/auth/saml/authorize/route.ts
+5 −1 apps/web/app/api/auth/saml/callback/route.ts
+3 −1 apps/web/app/api/auth/saml/token/route.ts
+3 −1 apps/web/app/api/auth/setup/route.ts
+2 −1 apps/web/app/api/auth/two-factor/totp/disable/route.ts
+2 −1 apps/web/app/api/auth/two-factor/totp/enable/route.ts
+2 −1 apps/web/app/api/auth/two-factor/totp/setup/route.ts
+19 −0 apps/web/app/api/parseRequestData.ts
+2 −1 apps/web/app/api/verify-booking-token/route.ts
+3 −0 apps/web/app/layout.tsx
+5 −1 apps/web/app/providers.tsx
+27 −0 apps/web/app/settings/(settings-layout)/my-account/push-notifications/page.tsx
+142 −0 apps/web/components/notification-sound-handler.tsx
+1 −1 apps/web/lib/clock.ts
+1 −0 apps/web/modules/bookings/views/bookings-listing-view.tsx
+2 −1 apps/web/modules/bookings/views/bookings-single-view.tsx
+20 −0 apps/web/modules/settings/my-account/push-notifications-view.tsx
+1 −1 apps/web/modules/signup-view.tsx
+1 −1 apps/web/package.json
+8 −11 apps/web/pages/_app.tsx
+ apps/web/public/ring.mp3
+82 −33 apps/web/public/service-worker.js
+4 −0 apps/web/public/static/locales/en/common.json
+40 −4 apps/web/test/lib/generateCsv.test.ts
+6 −1 docs/api-reference/v2/openapi.json
+1 −0 packages/embeds/embed-core/src/sdk-action-manager.ts
+1 −1 packages/features/bookings/Booker/components/EventMeta.tsx
+3 −1 packages/features/bookings/Booker/components/hooks/useBookings.ts
+4 −0 packages/features/bookings/lib/handleNewBooking.ts
+1 −1 packages/features/bookings/lib/timePreferences.ts
+91 −64 packages/features/data-table/components/DataTable.tsx
+36 −10 packages/features/data-table/components/DataTablePagination.tsx
+42 −15 packages/features/data-table/components/DataTableWrapper.tsx
+6 −2 packages/features/data-table/hooks/useFetchMoreOnBottomReached.ts
+33 −2 packages/features/data-table/lib/context.tsx
+2 −1 packages/features/ee/payments/components/PaymentPage.tsx
+5 −0 packages/features/ee/sso/lib/jackson.ts
+2 −2 packages/features/ee/teams/components/MemberList.tsx
+2 −1 packages/features/ee/teams/components/TeamAvailabilityModal.tsx
+3 −3 packages/features/ee/users/components/UsersTable.tsx
+1 −0 packages/features/insights/components/RoutingFormResponsesTable.tsx
+2 −8 packages/features/instant-meeting/handleInstantMeeting.ts
+120 −0 packages/features/notifications/WebPushContext.tsx
+5 −1 packages/features/notifications/sendNotification.ts
+1 −1 packages/features/settings/TimezoneChangeDialog.tsx
+4 −4 packages/features/settings/outOfOffice/OutOfOfficeEntriesList.tsx
+0 −20 packages/features/shell/Shell.tsx
+4 −4 packages/features/timezone-buddy/components/AvailabilitySliderTable.tsx
+2 −15 packages/features/users/components/UserTable/BulkActions/DeleteBulkUsers.tsx
+0 −73 packages/features/users/components/UserTable/BulkActions/MassAssignAttributes.tsx
+3 −14 packages/features/users/components/UserTable/DeleteMemberModal.tsx
+43 −61 packages/features/users/components/UserTable/PlatformManagedUsersTable.tsx
+70 −71 packages/features/users/components/UserTable/UserListTable.tsx
+2 −26 packages/features/users/components/UserTable/types.ts
+0 −6 packages/lib/constants.ts
+1 −1 packages/lib/csvUtils.ts
+0 −165 packages/lib/hooks/useNotifications.tsx
+4 −0 packages/lib/timezoneConstants.ts
+2 −1 packages/platform/atoms/event-types/payments/PaymentForm.tsx
+34 −0 packages/platform/libraries/app-store.ts
+36 −0 packages/platform/libraries/emails.ts
+2 −102 packages/platform/libraries/index.ts
+16 −0 packages/platform/libraries/package.json
+2 −0 packages/platform/libraries/vite.config.js
+ packages/prisma/.yarn/ci-cache/install-state.gz
+1 −0 packages/trpc/server/routers/loggedInViewer/addNotificationsSubscription.handler.ts
+2 −2 packages/trpc/server/routers/viewer/organizations/_router.tsx
+5 −11 packages/trpc/server/routers/viewer/organizations/listMembers.handler.ts
+3 −3 packages/trpc/server/routers/viewer/organizations/listMembers.schema.ts
+8 −2 packages/ui/components/pagination/Pagination.tsx
+5 −5 yarn.lock

0 comments on commit 0acfc4c

Please sign in to comment.