Latest Features

Discover the newest features and improvements in the latest version

๐ŸŽ‰ Welcome to the latest version of Plantman! This page highlights all the new features and improvements.

Whatโ€™s New in Latest

The following is a list of testing tools and frameworks for Fern:

Something went wrong!

Enhanced Plant Management

The latest version introduces powerful new features for managing your plant inventory:

  • Bulk Operations: Perform actions on multiple plants at once
  • Advanced Filtering: Filter plants by multiple attributes simultaneously
  • Export Capabilities: Export your plant data in CSV and JSON formats

Improved API Performance

Weโ€™ve made significant performance improvements:

  • 50% faster response times for list operations
  • Optimized database queries
  • Enhanced caching mechanisms
  • New tiered rate limiting based on your plan
  • Better error messages for rate limit violations
  • Automatic retry logic in SDKs

New SDK Features

Our latest SDKs include:

1import { PlantmanClient } from "@plantman/sdk";
2
3const client = new PlantmanClient({
4 apiKey: "your-api-key",
5 environment: "production"
6});
7
8// New batch operations
9const plants = await client.plants.batchCreate([
10 { name: "Monstera", species: "Monstera deliciosa" },
11 { name: "Snake Plant", species: "Sansevieria trifasciata" }
12]);
13
14// New filtering options
15const filteredPlants = await client.plants.list({
16 filters: {
17 waterFrequency: "weekly",
18 lightRequirement: "indirect",
19 minHeight: 10
20 }
21});

WebHook Support

Subscribe to real-time events:

  • plant.created
  • plant.updated
  • plant.watered
  • plant.deleted

Migration Guide

Migrating from V2 to Latest is straightforward. Check out our migration guide for details.

All V2 endpoints remain supported for backward compatibility.

Breaking Changes

There are no breaking changes in this release! Weโ€™ve maintained full backward compatibility with V2.

Coming Soon

Stay tuned for these upcoming features:

  • ๐ŸŒฑ Plant care reminders
  • ๐Ÿ“Š Advanced analytics dashboard
  • ๐Ÿ” AI-powered plant identification
  • ๐ŸŒ Multi-region support

Have feedback or feature requests? Contact our team!