Skip to content

🚀 API Maker : Release Notes for v3.0.0

⭐ May 2026 ⭐

Changes

  • [FEATURE] : New Fresh UI
  • [FEATURE] : Token Generators Central place for generating tokens based on database table, AWS cognito, Azure AD, Google cloud users, or custom token generator. Just provide it's name to other places.
  • [FEATURE] : Get Token Getting token is now supported for fields having hashing enabled.
  • [FEATURE] : Pre & Post Hooks Hook support added to groups also. Hooks having group will be executed only when user is having access to that group.

Breaking Changes

  • [FEATURE] : Get Token Below is new method for getting token
    [
        {
            "name": "token_generator_name",
            "u": "[email protected]",
            "p": "student1"
        },
        {
            // When name is not provided, system will generate API Maker User's token
            "u": "default",
            "p": "12345",
            "expiresInSeconds": 259200
        }
    ]
    

Bug Fixing

  • Passing direct date object & objectId objects should be working from custom APIs find property in query APIs.
  • Deployment hook is not working immediately after created issue fixed. It was working after update.
  • Stream APIs are not getting all data in custom APIs for larger data set.
  • In table/collection list, index count mismatched where there is schema removed for any collection in the list.

Performance improvements

  • Stream APIs supports function with or without async keyword and performance is super fast with large datasets.