Actualizaciones inmediatas de la plataforma (del 10 al 21 de diciembre)
Zoho lanzó varias actualizaciones entre el 10 y el 21 de diciembre que afectan la forma en que sincroniza archivos, responde a tickets de soporte y se integra con sistemas de terceros. Si bien algunas de estas actualizaciones son mejoras de funciones, otras implican cambios críticos en las políticas de seguridad que requieren atención inmediata.
⚠️ Acción requerida antes del 31 de diciembre de 2025
If you're using the default Zoho OAuth connector or embedded credentials in Deluge scripts, you must take action before December 31, 2025 to avoid breaking your integrations. Keep reading for details.
WorkDrive TrueSync: soporte de escritorio Linux
Zoho WorkDrive TrueSync now officially supports Linux desktop environments, giving your sync-agent workflows equal footing across Windows, macOS, and Linux platforms.
Lo que esto significa para ti
- Cross-Platform Parity: Ubuntu and Fedora desktop users can now use TrueSync just like Windows and macOS users
- Sync-Agent Workflows: File watchers, filesystem integrations, and endpoint sync operations now work seamlessly on Linux
- Developer-Friendly: Development teams using Linux workstations can sync files directly without workarounds
- Server Integration: Easier integration with Linux-based servers and automation scripts
Pruebe WorkDrive TrueSync en Linux
If you're running Ubuntu or Fedora, download the new WorkDrive TrueSync client and experience seamless file synchronization across all your devices.
Iniciar prueba gratuita 15-day free trial - Includes in Zoho OneDetalles técnicos
El cliente Linux TrueSync admite:
- Real-time file synchronization
- Selective sync (choose which folders to sync locally)
- Team Folders collaboration
- Version history and conflict resolution
- Offline access to synced files
Zoho Desk: mejoras de IA y respuesta masiva
Zoho Desk December updates bring two major improvements for support teams: mass-reply templates with snippets and expanded Zia AI assistance inside tickets.
1. Plantillas de respuesta masiva + fragmentos
Los agentes de soporte ahora pueden responder de manera uniforme a escala cuando manejan múltiples tickets con problemas similares. Esto es particularmente útil para:
- Outage Communications: Send consistent updates to all affected customers
- Product Announcements: Reply to inquiries about new features with standardized responses
- Policy Changes: Ensure all customers receive accurate information
- Seasonal Responses: Holiday hours, shipping updates, or promotional information
2. Asistencia basada en IA de Zia
Zia continúa expandiéndose dentro de los tickets con tres capacidades clave:
- Ticket Summaries: Automatically generate concise summaries of long ticket threads
- Reply Help: Suggested responses based on ticket context and historical data
- Insights: Sentiment analysis, priority recommendations, and suggested tags
Impacto en el mundo real
Los equipos de soporte que utilizan estas funciones informan:
- 30-40% reduction in response time for common inquiries
- Higher consistency in customer communications
- Faster onboarding for new support agents (AI suggestions serve as training)
- Better ticket prioritization through Zia's insights
Actualice su soporte con Zoho Desk
Experience AI-powered support ticketing with Zoho Desk. Start your free trial today.
Try Zoho Desk Free 15-day free trial - Included in Zoho OneConceptos básicos de plataforma y automatización
Varias características principales de la plataforma permanecen sin cambios, pero es fundamental comprenderlas para sus integraciones y automatizaciones:
Escritura masiva de trabajos asincrónicos en CRM
Core Bulk Write async jobs in Zoho CRM remain asynchronous and callback/status-driven. No changes in this release window, but here's what you need to know:
- Bulk operations continue to use callbacks for completion notifications
- Status checks remain the recommended method for monitoring long-running jobs
- No breaking changes to existing bulk write implementations
- Rate limits and quotas unchanged
Firma de webhook HMAC
Webhook HMAC signing practices remain in place for secure webhook verification. Important: Projects and Sign include HMAC headers that you should always validate in your webhook receivers.
Best Practice: Always Validate HMAC Signatures
// Example webhook validation (Node.js)
const crypto = require('crypto');
function validateWebhook(payload, signature, secret) {
const hmac = crypto
.createHmac('sha256', secret)
.update(JSON.stringify(payload))
.digest('hex');
return hmac === signature;
}
// In your webhook handler
if (!validateWebhook(req.body, req.headers['x-zoho-signature'], SECRET)) {
return res.status(401).send('Invalid signature');
}
Semántica de inserción de registros
La semántica de Records Upsert no ha cambiado en este breve ciclo de lanzamiento. No habrá anuncios de comportamiento de API de última hora en el período del 10 al 21 de diciembre. Su lógica upsert existente continúa funcionando como se esperaba.
Cambios de políticas críticas para la seguridad (acción requerida)
Aquí es donde debes prestar mucha atención. Zoho está realizando dos cambios importantes relacionados con la seguridad que afectarán la forma de autenticar las llamadas API y administrar las conexiones OAuth.
🚨 Cambios importantes que se avecinan
These are not optional upgrades. If you don't take action before the deadlines, your integrations will break. Mark your calendar and plan your updates now.
Desuso del conector OAuth: fecha límite del 31 de diciembre
Fecha límite: 31 de diciembre de 2025
El conector predeterminado de Zoho OAuth está obsoleto. Después del 31 de diciembre de 2025, las nuevas conexiones OAuth ya no aparecerán en los valores predeterminados y deberán reemplazarse con conexiones personalizadas o específicas del servicio para una autenticación API segura.
¿Qué está cambiando?
- Default OAuth Connector Removed: The generic "Zoho OAuth" connector will vanish from connection defaults
- Service-Specific Connections Required: You must create connections specific to each Zoho service (CRM, Books, Desk, etc.)
- Custom OAuth Apps Recommended: For production integrations, create custom OAuth clients in Zoho API Console
- Existing Connections Grandfathered: Connections created before Dec 31 will continue to work (for now), but updates recommended
Por qué esto importa
El conector OAuth predeterminado era conveniente pero planteaba riesgos de seguridad:
- Too broad in scope (access to all Zoho services)
- Harder to audit and monitor
- Violated principle of least privilege
- Difficult to revoke granular access
Cómo migrar
- Audit Your Connections: List all integrations using the default OAuth connector
- Create Service-Specific Connections: In each Zoho app, go to Setup → Developer Space → Connections
- Create Custom OAuth Clients: Visit Zoho API Console and create dedicated OAuth clients
- Update Your Integrations: Replace default OAuth references with new service-specific connections
- Test Thoroughly: Verify all integrations work with new connections before Dec 31
Cronología de la migración
- Now - Dec 20: Audit existing OAuth connections
- Dec 20-25: Create new service-specific connections
- Dec 25-30: Update and test integrations
- Dec 31: Deadline - new default OAuth connections disabled
Cambios de seguridad de invokeURL de Deluge
Estado: ya en vigor
Deluge's invokeURL deprecation of embedded credentials has already taken effect. You can no longer use inline authentication in invokeURL calls. You must now use Connections instead of inline auth for secure service calls.
¿Qué cambió?
Anteriormente, podía incrustar credenciales directamente en llamadas invokeURL de Deluge como esta:
❌ Old Method (No Longer Works)
// DEPRECATED - DO NOT USE
response = invokeurl
[
url: "https://api.example.com/endpoint"
type: GET
parameters: {"username": "user@example.com", "password": "secretpass"}
];
Now you must use Connections:
✅ New Method (Required)
// Create a Connection in Zoho first, then reference it
response = invokeurl
[
url: "https://api.example.com/endpoint"
type: GET
connection: "your_connection_name"
];
Por qué se hizo este cambio
- Security: Credentials embedded in code can be exposed through logs, error messages, or code exports
- Auditability: Connections provide clear audit trails of which integrations access which services
- Rotation: Update credentials in one place (Connection settings) rather than hunting through scripts
- Compliance: Meets security compliance requirements for credential management
Cómo actualizar sus secuencias de comandos
- Identify Affected Scripts: Search your Deluge code for invokeURL calls with embedded credentials
- Create Connections: For each external service, create a Connection in Zoho
- Update invokeURL Calls: Replace credential parameters with connection references
- Test Thoroughly: Verify all API calls work with the new Connection-based approach
- Remove Old Credentials: Delete embedded credentials from your code
Tipos de conexión disponibles
- OAuth 2.0 (recommended for most APIs)
- API Key authentication
- Basic Authentication (username/password)
- Custom headers and parameters
Su lista de verificación de elementos de acción
Este es su plan de acción priorizado para estas actualizaciones de diciembre:
🔴 Crítico: acción requerida antes del 31 de diciembre
- ✅ Audit all OAuth connections for default Zoho OAuth connector usage
- ✅ Create service-specific OAuth connections for each Zoho app you integrate
- ✅ Update integrations to use new OAuth connections
- ✅ Test all integrations before Dec 31 deadline
- ✅ Scan Deluge scripts for invokeURL calls with embedded credentials
- ✅ Create Connections for all external API calls
- ✅ Update and test all Deluge scripts
🟡 Importante: actualizaciones recomendadas
- 📋 Upgrade to WorkDrive TrueSync on Linux if you use Ubuntu/Fedora
- 📋 Enable Zoho Desk mass-reply templates for your support team
- 📋 Configure Zia AI assistance in Desk for faster ticket responses
- 📋 Review webhook HMAC validation in your integrations
- 📋 Document your OAuth connection strategy for future maintenance
🟢 Opcional: es bueno saberlo
- 📖 Review Bulk Write API patterns to ensure best practices
- 📖 Familiarize yourself with upsert semantics for future development
- 📖 Explore new Zia features in other Zoho apps
¿Necesita ayuda con estas actualizaciones?
Si se siente abrumado por estos cambios de seguridad o no está seguro de por dónde empezar, podemos ayudarle. ZMCOR se especializa en integraciones de Zoho, desarrollo de API y migraciones de plataformas.
Asistencia experta en migración de Zoho
Nuestros consultores certificados de Zoho pueden auditar su configuración actual, planificar su estrategia de migración e implementar los cambios necesarios antes de la fecha límite del 31 de diciembre.
Schedule Free Consultation No obligation - let's discuss your specific needsServicios que ofrecemos
- OAuth Migration: Audit and migrate from default OAuth to service-specific connections
- Deluge Script Updates: Convert embedded credentials to secure Connections
- Integration Testing: Comprehensive testing to ensure nothing breaks
- Documentation: Document your new connection architecture
- Training: Train your team on new security best practices
Manténgase a la vanguardia de las actualizaciones de Zoho
Zoho continúa evolucionando rápidamente, con nuevas funciones, mejoras de seguridad y cambios de plataforma que se anuncian periódicamente. Las actualizaciones de diciembre de 2025 son particularmente importantes porque implican cambios importantes que requieren acción.
The key takeaways:
- WorkDrive TrueSync now supports Linux - great for development teams
- Zoho Desk AI features continue to improve support efficiency
- OAuth connector deprecation requires migration by Dec 31
- Deluge embedded credentials are already deprecated - use Connections
No esperes hasta el último momento. Comience su planificación de migración hoy, realice pruebas exhaustivas y asegúrese de que sus integraciones continúen funcionando sin problemas hasta 2026.
Obtenga la plataforma Zoho completa
All of these updates are included in Zoho One - 45+ apps for one unified price. No per-app licensing, no surprise fees.
Try Zoho One Free 30-day free trial - Full access to all apps