Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .changeset/rotten-bees-behave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rocket.chat/meteor": patch
---
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Reconsider the version bump level for removing a deprecated method.

Removing the livechat:removeMonitor method is a breaking change—any code still consuming this deprecated method will fail at runtime. Since this is a breaking change being released on release-8.0.0 (a major version branch), the changeset should document this as a major version bump, not patch.

Apply this diff to correct the version bump level:

  ---
- "@rocket.chat/meteor": patch
+ "@rocket.chat/meteor": major
  ---
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
"@rocket.chat/meteor": patch
---
---
"@rocket.chat/meteor": major
---
🤖 Prompt for AI Agents
.changeset/rotten-bees-behave.md lines 1-3: the changeset currently marks
"@rocket.chat/meteor" as a patch but the removal of the deprecated
livechat:removeMonitor is a breaking change — update the changeset frontmatter
to use a "major" bump for "@rocket.chat/meteor" (replace "patch" with "major")
and save/commit the changeset so the release tooling will publish a major
release.


removes the deprecated meteor method: `livechat:removeMonitor`
1 change: 0 additions & 1 deletion apps/meteor/ee/app/livechat-enterprise/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { patchOmniCore } from '@rocket.chat/omni-core-ee';
import { Meteor } from 'meteor/meteor';

import './methods/addMonitor';
import './methods/removeMonitor';
import './methods/saveTag';
import './methods/removeBusinessHour';
import './hooks/afterTakeInquiry';
Expand Down

This file was deleted.

Loading