-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Google Calendar - new-or-updated-event-instant update #18024
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ |
WalkthroughVersion bumps for the Google Calendar component and its “New or Updated Event (Instant)” source. The source’s deploy hook now seeds events from only the past month by adding a timeMin parameter to the initial listEvents call. Runtime behavior for ongoing event detection remains unchanged. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Source (Deploy)
participant Google Calendar API
User->>Source (Deploy): Initialize source
Source (Deploy)->>Google Calendar API: listEvents(timeMin = now - 1 month)
Google Calendar API-->>Source (Deploy): Events (seed set)
Source (Deploy)->>User: Emit up to 25 most recently updated
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (2)
components/google_calendar/package.json(1 hunks)components/google_calendar/sources/new-or-updated-event-instant/new-or-updated-event-instant.mjs(2 hunks)
🔇 Additional comments (2)
components/google_calendar/package.json (1)
3-3: Version bump aligns with source changes. LGTM.The patch version increment to 0.5.10 is appropriate and consistent with the source update.
components/google_calendar/sources/new-or-updated-event-instant/new-or-updated-event-instant.mjs (1)
11-11: Source version bump is correct.Incrementing to 0.1.16 reflects the deploy-time behavior change. No concerns.
Limits historical events emitted in the
deployhook to events from withing the previous month.Summary by CodeRabbit