Timeline

See how your Android platform is evolving.

Android
Flex SDK
Kinvey CLI
Guides
Tutorials
Console
Business Logic
  • Add support for login hooks
  • Add support for login hooks
  • Improve error message for iOS push settings in config management
  • Modify collection hooks sequentially
  • Add collection hooks: onPreInsert, onPreUpdate, onPostInsert, onPostUpdate
  • Do not update the appEnv when no settings are supplied on kinvey appenv apply
  • Fix appEnv ID check
  • Support login with external identity providers

New in this release:

  • Enhancements:

    • Added validation for an existing item id when the data store type is not Network. (#288).
    • Updated the default KCS api version to 5. (#286).
    • Added support a single item for DataStore.create. (#285).
    • Added last login time to kinvey meta data model. (#281).
    • Return items count with GET requests. (#280).
  • Bug fixes:

    • The created items in the backend have some artificial ids, containing temp and a guid. (#284).
    • The error message from the server is not returned, when some of the items fail. (#283).
    • Batch create function will not work for future api versions bigger than 5. (#282).
  • Modify commands to accept only --org <org> (--app <app> is no longer valid):
    • flex init
    • flex create
    • flex list
    • service create
    • website create
    • app create
  • Remove flex job command
  • Update API version to 4
  • Update min node version to 12.16.1

New in this release:

  • Enhancements:

    • Added DataStore.create multi-insert method with parameters List<T> and KinveyClientCallback<KinveySaveBatchResponse<T>>. (#279).
  • Add config management feature
  • Improve profile description
  • Improve response error handling

New in this release:

  • Bug fixes:

    • In a batch of multi-insert requests, if a whole batch fails, the response to the whole operation is an error. (#269).
    • DataStore.push incorrectly using the onFailure handler. (#270).
    • If DataStore.push fails, items without _id clears the local storage and the syncQueue. (#271).
    • For Auto store, DataStore.save failing due to network error incorrectly invoking the onFailure handler. (#272).
  • Validate files size when deploying websites

New in this release:

  • Enhancements:

    • Conversion to Kotlin of Client, DataStore and query-related classes (#259) (#262) (#263) (#264).
  • Bug fixes:

    • Fix result items order for save requests if list contains items with set _id and without. (#266).

New in this release:

  • Enhancements:

    • Updated dependencies to the latest version. (#260).

    • Conversion to Kotlin of MIC and model-related classes (#261) (#258).

New in this release:

  • Enhancements:

    • Further migration to a Kotlin codebase, including file and user classes. (#250) (#254) (#255).

    • Migrating SDK dependencies to AndroidX, which is a new set of libraries that should replace many deprecated libraries from the past, like Support Library, Support Annotations, Android JUnit Runner, etc (#248).

  • Bug fixes:

    • Correct issue with FileMetaData settings for allowing all users to read a particular file. (#256).

    • Removing _uploadURL from FileMetaData object when it is no longer necessary. (#257).

New in this release:

  • Enhancements:

    • Added logic to send multiple multi-insert requests when entity count exceeds max 100 items. (#245).

    • Added configuration for SDK distribution using JitPack repository. (#244).

  • Show an output error if an identifier (e.g. --app) matches more than one entity

New in this release:

  • Enhancements:

    • Introduction of the new multi-insert logic for DataStore push method. (#238).
    • The beginning of the migration of the library to Kotlin, including an update to gradle version 5. (#239).

      Breaking Change: Because of migration to Kotlin and gradle version updating, you will need to add some changes to the build.gradle files:

      1. Delete old libraries from app/libs directory:

        google-http-client-1.19.0.jar
        google-http-client-android-1.19.0.jar
        google-http-client-gson-1.19.0.jar
        google-http-client-jackson2-1.19.0.jar
        guava-18.0.jar
        jackson-core-2.1.3.jar
        java-api-core-4.2.1.jar
        kinvey-android-4.2.1.aar
        pubnub-gson-4.18.0-all.jar
        realm-android-library-3.2.1.aar
        realm-annotations-3.2.1.jar
        realm-annotations-processor-3.2.1.jar
        realm-transformer-3.2.1.jar
        relinker-1.2.2.aar
        rxjava-1.1.0.jar

        and Add new version of java-api-core-x.x.x.jar and kinvey-android-x.x.x.aar.

      2. Remove from build.gradle (app module)

        dependencies {
           implementation ':realm-android-library:+@aar'
           implementation ':relinker:+@aar'
        }
      3. Apply Realm plugin to build.gradle (app module) apply plugin: 'realm-android' and add Realm plugin to classpath in build.gradle (project module)

        buildscript {
           dependencies {
               classpath 'io.realm:realm-gradle-plugin:5.8.0'
           }
        }
      4. Add third part libraries as dependency

        implementation('com.google.api-client:google-api-client-android:1.19.0') {
             exclude(module: 'google-play-services')
             exclude(module: 'xpp3')
        }
        implementation 'com.google.http-client:google-http-client-android:1.19.0'
        implementation('com.google.http-client:google-http-client-gson:1.19.0') {
             exclude(module: 'xpp3')
        }

        Also if you use LiveService to add:
        implementation group: 'com.pubnub', name: 'pubnub-gson', version: '4.18.0'

      5. Add Compatibility with Java 8

        android {
           compileOptions {
             sourceCompatibility JavaVersion.VERSION_1_8
             targetCompatibility JavaVersion.VERSION_1_8
           }
        }

  • Bug fixes:

    • Fix for returning User object from client.getActiveUser() method. (#240).

New in this release:

  • Bug fixes:

    • Switching backend API version logic. (#232).

    • Token request issues using clientId. (#235).

New in this release:

  • Enhancements:

    • Introduction of the new multi-insert DataStore method. (#231).
      Multi-insert is available for use in Kinvey API version 5. Set this API version using the kinvey.api.version parameter in the kinvey.properties file in order to use this functionality.

New in this release:

  • Enhancements:

    • Added count method with query object in DataStore. (#229).

    • Added ability to set API version. (#230).

  • Improvements to the website deploy command:
    • Verify presence of index and/or error page
    • Ability to force the deploy using the --force flag
  • Add node12 (Node.js v.12) to flex commands that support Node.js runtime selection

New in this release:

  • Enhancements:

    • Introduction of Firebase Cloud Messaging (FCM). (#211).

      Breaking Change: Google Cloud Messaging is no longer supported by the SDK starting with this version. To be compatible with the current version of the SDK, please follow our Push Guide and convert your existing Google Cloud Messaging implementation to FCM.

New in this release:

  • Enhancements:

    • Correctly handling a missing or null refresh token. (#226).
  • Support for Kinvey Web Hosting under the website command namespace

New in this release:

  • Enhancements:

    • Added an overload that removes temporaryURI parameter, and deprecated a version of loginWithMIC that takes a temporaryURI. (#225).

New in this release:

  • Enhancements:

    • Added a thread pool for requests in order to make requests asynchronously. (#220).
  • The flex status command outputs statuses using upper case letters
  • Suggest command when token is expired
  • Use backend error when HTTP status code is 401

New in this release:

  • Enhancements:

    • Introduction of new AUTO DataStore type. (#217).

      The CACHE DataStore type has been deprecated and will be removed in a future release.

    • Improve execution of network save requests. (#219).

New in this release:

  • Enhancements:

    • not() operator implementation fixed. Now result of operator not() is same as the Mongo $not operator result (#209).

    • Deprecated loginWithAuthorizationCodeAPI() and loginWithAuthorizationCodeLoginPage() methods in favor loginWithMIC() method (#208).

  • Validated support for node v6.x, node v8.x, and node v10.x
  • Updated dependencies
  • Adjusted Linitng and fixed linting issues
  • Bug fix: Preserve existing environment variables on flex deploy --set-vars <env variables>
  • Support for service environments when working with Flex services
  • Support for selecting a Node.js runtime version using --runtime

New in this release:

  • Enhancements:

    • Automated Authorization Grant Flow replaced by the Resource Owner flow (#204).
  • Bug Fixes:

    • Fixed the problem with situation when SDK throws the exception after getting saved entity, which has an array with self-reference type in entity data model. (#203).
  • The app create command now supports the --org option
  • Support for environment variables for internal Flex services
  • Help information for kinvey <namespace>
  • The development dependencies have been updated

New in this release:

  • Enhancements:

    • Proper exception handling during MIC auth flow. (#200).
  • Bug Fixes:

    • Fixed problem with situation when time from Date object in milliseconds before saving to the DataStore isn't equal to the time after getting the entity from the DataStore. (#202).

New in this release:

  • Enhancement: Correctly handle OAuth MIC errors returned through the redirect URI. (#197).

  • Bug Fix: Deprecated method UserStore#loginKinveyAuthToken. (#196).

  • Rename the env namespace to appenv
  • Ability to specify an organization when creating an app
  • Prompt for 2FA token on profile login if required
  • Log output columns have been rearranged to show timestamp, log ID, and then logged message
  • Output logs properly when the log message is an object
  • Prompt for 2FA token on profile login if required
  • Log output columns have been rearranged to show timestamp, log ID, and then logged message
  • Output logs properly when the log message is an object

New in this release:

  • Bug Fixes:

    • Use the x-kinvey-request-start from the count response when auto-pagination is used as the first request before Delta Set requests. (#185).

    • Fix exception in the log after getting an error from the backend. (#186).

  • FLEX-286 Fixed setQuery to propagate on FSR prehook
  • Stringify query.query and query.sort if they are objects before returning
  • FLEX-293 Removed SIGKILL handler to prevent crash
  • Enhancements:

    • Disable TLSv1 and enable support for TLSv1.1 and TLSv1.2 for 4.1-4.4 Android versions. (#178).

Breaking change: Minimum Android SDK is now API 16. Android API 15 doesn't support TLSv1.1 or TLSv1.2, so the minimum version has been increased to support this. Applications which support Android API 16-20 have to update Android Kinvey library to the 3.1.3 version, since 3.1.3 version enables support for TLSv1.1 or TLSv1.2.

  • Bug Fixes:

    • Deleting items from the cache if auto-pagination is used. (#184).
    • MIC fixes for clientID. (#181).
    • Using 'int' primitive type in a class model. (#180).
    • Updating query cache item if it exists instead of creating new. (#179).
    • Now locally created entity is pushed as a POST rather than a PUT. (#169)(#182)(#183).
  • FLEX-270 Added graceful shutdown
    • Now on ctrl-c, SIGTERM, SIGINT, or SIGKILL, the sdk will attempt to wait for in-process tasks to finish.
    • Will time out and force-quit if all tasks aren't complete in 50 seconds
    • Pressing ctrl-c, or sending SIGINT/SIGTERM/SIGKILL a second time will terminate the process immediately.
  • FLEX-291 Remove lodash as a dependency
  • FLEX-290 Changed destination property in body for sendPush to recipients
  • Removed CoffeeScript as a dependency
  • Updated code-task-receiver to 2.3.1
  • Updated kinvey-datalink-errors to 0.3.2
  • See README for migration guide
  • BREAKING CHANGE: email and push modules now require a callback or promise handlers. They can no longer be executed as "fire and forget".
  • FLEX-206 Added Promise support to Asynchronous flex-sdk modules
    • dataStore
    • userStore
    • groupStore
    • push
    • email
  • FLEX-176 Add RoleStore
  • FLEX-240 Add endpointRunner to support executing of custom endpoints
  • FLEX-246 Use new KCS endpoints for push/email
  • FLEX-248 Removed deprecated skipBl and useMasterSecret options for all stores
  • FLEX-247 Change baasUrl property to retrieve it from top-level task object
  • Updated dependencies with nsp warnings
  • Removed lodash isNil package

Upgrading from 2.x to 3.x

Flex-sdk 3.x contains several breaking changes as well as new features. To upgrade your service from Flex-sdk 2.x to 3.x:

  • All email and push methods now return a promise. It is now required that you either handle the promise, or pass a callback.
  • For all stores (e.g. dataStore, userStore, etc), the deprecated options skipBl and useMasterSecret have been removed and no longer function. Use useBl and useUserContext instead.
  • All asynchonous modules (dataStore, groupStore, roleStore, endpointRunner, userStore, email, and push) now return a promise or accept a callback.
  • For more information on what's new, see the Changelog.

Open the Flex SDK GitHub repo for more information and source code.

  • Enhancements:

    • The client-side Delta Set feature has been replaced by a server-side implementation called Delta Sync (Beta) that offers better performance and scalability. (#160).
    • Add @NonNull and @Nullable annotations for DataStore and UserStore. (#171).
    • pull and sync methods now return only count of pulled items from the backend.
  • Enhancement:

    • Add new X-Kinvey-Device-Info header for standardized capture of device and platform information. (#168).
  • Bug Fix:

    • Extending user class with properties of different class. (#167).
  • Ability to create internal Flex services using flex create.
  • Ability to delete internal Flex services using flex delete. Note that this command name was used to clear Node.js project setting in previous versions.
  • The flex delete command available in previous versions has a new name: flex clear. It keeps its behavior.
  • All delete commands now require confirmation that you can avoid using the new --no-prompt flag (available only for delete commands).
  • Unknown hyphenated options or flags now cause the command to exit with an error instead of being ignored.
  • Dependency updates: moment.js, request.js.
  • Added role helper to the kinveyEntity module
  • Disable the proxy when using dataStore
  • Disable the proxy for push and email modules
  • Fixed errors for null or empty entityIds for dataStore, groupStore, and userStore
  • Updated the request module to 2.85.0
  • Updated code-task-receiver to 2.2.3 to add response object parsing for FlexFunctions

Open the Flex SDK GitHub repo for more information and source code.

  • Enhancements:

    • isAutoPaginationEnabled flag was removed from DataStore. Now pull methods are available which take page size as a parameter, which will enable auto-pagination. (#159).
    • Add support for isAutoPagination parameter in pull methods, which defaults the page size used for auto-pagination to 10,000 entities. (#166).
    • KinveyPullResponse now has count of pulled items instead of list of pulled items. (#161).
    • Pull requests in auto-pagination mode are now executed concurrently in batches, for improved performance. (#164).
  • Bug Fix:

    • Sending X-Kinvey-Client-App-Version header before user is authorized, if a value for this has been set in the Client. (#165).

Breaking change: the flag dataStore.isAutopaginationEnabled() has been deprecated. In order to enable auto-pagination, use pull methods with page size in the parameter list to specify the page size for auto-pagination, or use pull methods with the isAutoPagination flag set to true, which will default the page size to 10,000 entities.

Breaking change: changes have been made to callbacks and response classes for sync and pull. KinveySyncCallback and KinveyPullCallback have been modified, because KinveyPullResponse was modified. It has been moved to another package, and has been updated to contain a count of pulled items instead of a list of pulled items. This was done to save on memory consumption in this case, where the goal of pull is to update the local cache.

Breaking change: KinveyListCallback has been changed to KinveyReadCallback, which returns with KinveyReadResponse in onSuccess. KinveyReadResponse contains a list of items and list of exceptions.

  • Support for managing apps within your Kinvey account: creating, listing, viewing details, deleting, and setting as active.
  • Support for managing environments within your Kinvey account: creating, listing, viewing details, deleting, and setting as active.
  • Support for managing collection within a Kinvey app: creating, listing, and deleting.
  • Ability to view organizations and set an organization as active.
  • The profile login command updates the token only.
  • Enhancement:

    • Add support for instance.id parameter in the kinvey.properties file. (#163).
  • Bug Fix:

    • Correctly deleting item from the backend after updating and then deleting item in the local cache. (#157).
  • Support for 2-factor authentication. See the --2fa global option.
  • New command for reauthenticating the specified profile: kinvey profile login.
  • Ask for profile override if profile already exists on kinvey init.
  • Use active profile if no other specified on kinvey profile delete.

Open the Kinvey CLI GitHub repo for full documentation and source code.

  • Enhancements:

    • Set default MIC API version to v3. (#156).
    • Improve performance for bulk saving in DataStore#save for StoreType.CACHE. (#158).
  • Enhancements:

    • Add method for setting an instanceID on the client. (#152).
    • Push requests are now executed concurrently in batches, for improved performance. (#149).
    • Model object containing a self-reference can now have this reference in both an object field and a list type of this object simultaneously. (#124).
  • Enhancement:

    • Remove metadata from embedded objects (#147).
  • Bug Fixes:

    • Fix access token invalidation in the UserStore#logout method (#140).
    • Fix clearing metadata that was synced in previous SDK versions (#148).
  • Support for entering Instance ID instead of instance URL for dedicated client instances
  • More detailed and useful error messages
  • The flex deploy command now accepts --serviceId
  • The flex init command now requires a profile and ignores the --email, --password, and --host options
  • Support for outputting in JSON format
  • New --no-color flag for disabling colors in output
  • Bug fixes

Open the Kinvey CLI GitHub repo for full documentation and source code.

  • Improvements:

    • Add support for Live Service.
    • Add support for query in the DataStore#clear and DataStore#purge methods.
  • Bug Fixes:

    • Fix long name using in fields with type List.

Because of the Live Service feature, the Android SDK now comes with its own version of gson. Remove gson-2.1.jar from your project's libs directory if you are using it.

  • Bug Fixes:

    • Fix nulling nested objects in the local data store.
    • Fix the exception after refreshing token with MIC service.

New in this release:

  • Enhancements:

    • Social login methods are now deprecated in favor of using MIC flow (#216).
  • Bug Fixes:

    • Fixed an issue with access token path might be affected by the MIC API version. (#215).

    • Migrated to JobIntentService instead IntentService for KinveyGCMService, to fix an issue with push notifications and background execution (#214).

Now to use push notification through an integration with Google Cloud Messaging, the targetSdkVersion of your project should be set to at least API level 27. Also, please change code in your GCMReceiver from: ComponentName comp = new ComponentName(context.getPackageName(), com.myPackage.GCMService.class.getName()); startWakefulService(context, (intent.setComponent(comp))); setResultCode(Activity.RESULT_OK); to: ComponentName comp = new ComponentName(context.getPackageName(), GCMService.class.getName()); GCMService.enqueueWork(context, (intent.setComponent(comp)), GCMService.class);

And change declaration of service in your AndroidManifest: <service android:name=".GCMService" android:permission="android.permission.BIND_JOB_SERVICE" android:exported="true" />

  • Improvement:

    • Performance improvements for local cache writes and processing of network responses.
    • Move setDeltaCache method from Client to DataStore object

This change to setDeltaCache is a breaking change. Replace calls to setDeltaCache on the client object with calls to the individual data store objects.

  • Improvement:

    • Add cached callback to count method.
  • Bug Fixes:

    • Fix getting file from cache in cached callback.
    • Fix setting request timeout.
    • Fix sync/pull methods with a query.
    • Fix NullPointerException in hashcode method.

Install the latest beta using npm install -g kinvey-cli@next.

  • Support for using multiple Kinvey accounts through profiles
  • All Flex-related commands move under the flex namespace (e.g. status becomes flex status)
  • New commands:
    • init—Initializes Kinvey CLI by prompting for credentials and configurations options
    • flex init—Configures Kinvey CLI to work with a specific Flex Service
  • All commands (except for init) can now take credentials as command-line options or ENV variables
  • Removed commands:
    • config
    • logout
  • New command-line options specific to commands under the flex namespace
  • The request timeout has been increased to 10 s
  • Improvements:

    • Add support for model classes to self-reference.
    • Add support for implicit and of two equals filters
  • Bug Fix:

    • Fix ClassCastException bug with delta set caching mechanism.
  • Bug Fixes:

    • Fix DataStore#clear method.
    • Fix collection growing after sync/pull.
    • Fix collection clearing if model class is changed.
  • Improvements:

    • Add local cache migration from version 3.0.6.
    • Add a list of exceptions field to the KinveyPullResponse object.
  • Bug Fix:

    • Fix push method.
  • Roles - Created roles guide.
  • status command now reports the email address (plus first/last name, if set) of deployer and the date/time at which service was deployed

This release involves changes to the underlying caching schema. We recommend active users log out and log back in after upgrade, in order to refresh the local cache.

  • Improvements:

    • Add method to DataStore to clear local cache.
    • Add method to DataStore for aggregation.
    • Add performance improvements for save methods.
    • Add support for classes with the name length of more than 56 symbols.
    • Add support for serializing null values in a query.
    • Add support for pagination.
    • Add auto pagination to pull request.
  • Bug Fix:

    • Fix using nested classes.
  • status command now reports the version of the most recently-deployed service
  • logs command enhancements
    • [from] and [to] optional arguments replaced with --from and --to flags
    • Added -n (--number) and --page flags
    • Only 100 entries are returned by default unless the -n flag is supplied
  • Improvements:

    • Add method to DataStore to save list of entities.
  • Bug Fix:

    • Fix saving _acl.creator field.
  • Improvements:

    • Add in operator for query to а field with а LIST type.
  • Improvements:

    • Add Encryption API.
  • Bug Fix:

    • Fix Delta Set Caching.
  • Bug Fix(es):

    • Fix user retrieve methods.
    • Correctly return client builder object with setDeltaSetCache method.
  • Improvements:

    • Improve callback for user retrieve methods.
    • Add method to DataStore to get the sync queue item count.
    • Add clientId to login with MIC.
  • Bug Fix(es):

    • Correctly save _public value of file offline.
    • Add update instance method on User to be able to update user object.
  • Improvements:

    • Remove empty query parameter from requests.
    • Improve handling cache errors.
  • Fixed bug resulting in 2FA login crash
  • ES6 rewrite
  • Support 2FA token login
  • Add ability to login to the CLI using ENV variables
  • Bug Fix(es):

    • Fix Custom Endpoints list callback
    • Fix support for Local Operator "and"
  • Fixed bug where instance param was not respected when running config [instance] in a fresh environment
  • Update realm library to version 3.2.1

  • Bug Fix(es):

    • Fix InputStream uploading
    • Fix empty file downloading
  • Bug Fix(es):

    • Fix forgot username request
    • Fix check username exists request
    • Fix creating Realm objects on disk for StoreType.NETWORK
  • Allow to add custom User fields

  • Bug Fix(es):

    • Fix push registration poblem
  • Fixed crash on config against the default instance (under certain scenarios)
  • Add new Client.Builder constructor used for passing a properties file.

  • Add deltaSetCaching client parameter to be able to enable/disable Delta Set Caching logic

  • Bug Fix(es):

    • Fix crash on logout
  • Added HTTPS proxy usage information to README
  • Added calculation methods for DataStore missing from 2.x

  • Add new Client constructor to pass custom HttpTransport

  • Rename Client.activeUser to Client.getActiveUser

  • Updated documentation about new features

  • Fixed bug which resulted in a 'ProjectNotConfigured' error when running the list command with a successfully configured project
  • Fixed bug which resulted in a CLI crash when parsing/printing non-string log message data
    • Skip log entries which have no corresponding message (and report which entries have been skipped when running CLI in verbose mode)
  • CLI now supports operations against data links backed by Kinvey organizations
  • kinvey config targets the default Kinvey instance for data link selection if a host is not provided (even if the CLI was previously configured with a custom host)
  • Fixed 'Archive Limit Exceeded' bug occasionally encountered during deployment of valid Kinvey services from within Windows environments
  • Update CLI update check frequency (interval shortened to 30 minutes)
  • Fixed bug where 'ProjectNotConfigured' was not correctly displayed after attempting to execute commands without a valid CLI configuration
  • Remove duplicate 'host' output during config command when using custom Kinvey instance
  • Cache last recycle job ID
  • Update session storage filename
  • Add support for refactored KBW/KMR 'status' command. Repurpose existing 'status' command into 'job'
  • Cache last deploy job for ease of retrieval using kinvey job
  • Add support for logging thresholds (requires Flex SDK >= 1.0.0)
  • Allow setting of persistent host via kinvey config [instance]
  • config command now prompts for a new service on every run (fixed prior bug where it did nothing if saved data was already present)
  • Upgrade CLI to check for kinvey-flex-sdk (instead of kinvey-backend-sdk)
  • logs command now takes optional runtime arguments (instead of prompting for log filters)
  • Obfuscate instance URLs at configuration time (e.g. kinvey config acme-us1)
  • Fixed bug where credentials were improperly cleared during logout/refresh
  • Fixed bug where status command (no arg command) crashed if supplied with an argument
  • Full support for data synchronization between your app and backend. Refer to the Data Store Guide to learn how to use the new data manipulation APIs.

  • We've simplified data stores and caching policies, making it easier for you to start building apps with caching and offline built in.

  • Support node 6.x
  • Handle authentication errors when deploying.
  • Do not display progress message for completed jobs.
  • Display progress and error messages when retrieving deploy status.
  • Implement logs command
  • RapidData - Added the documentation for zero-code SharePoint, SQL and Salesforce connectors.
  • Import/Export - Added the documentation for zero-code SharePoint, SQL and Salesforce connectors.
  • Refactor routes.
  • Upgraded request module to v2.65.0
  • Upgraded async module to v1.4.2
  • Upgraded moment to v2.10.6
  • Added modules.twilio library for twilio support
  • Renew expired tokens.
  • Updated dependencies.
  • Initial version.
  • When navigating to a collection that no longer exists, the link to the dashboard will now navigate to the environment dashboard.
  • Improved collection navigation for users with multiple browsers or computers
  • Verifying an email address no longer requires clicking a button
  • New underlying execution engine
  • Business Logic now includes access to node.js v0.10.38 core libraries and APIs
  • Added support for Bluebird promises and promise-enabled the Collection Access and Request modules.
  • Added cc and bcc to Email module
  • Methods in logger, push, and email moduels now take callbacks
  • New Kinvey Module, which allows creation/updating of metadata in Kinvey Entities, and allows for ACL management
  • Deprecated use of utils.kinvey in favor of the Kinvey module
  • Deprecated request.username in favor of requestContext.getAuthenticatedUsername
  • Added requestContext module with support for:
    • Retrieving request username and request userId
    • Retrieving and setting custom request properties
    • Retrieving client-side app version information
  • Deprecated use of backendContext.getAuthenticatedUsername() as it has been moved to requestContext
  • Internal Improvements
  • Data Browser - Fixed but where _kmd and _acl properties would not automatically update when editing other fields
  • Business Logic - Fixed a bug that was preventing business logic from being saved.
  • Data - Collection list refreshes it's content on environment change properly
  • Internal Improvements
  • Internal Improvements
  • Users - Fixed empty user splashscreen CSS issue
  • Users - Bypass business logic button is now functional
  • Small Bugfixes
  • Files - Max file size allowed in file uploads has been updated
  • File uploads across the entire application have been improved
  • Fixed issue when navigating in the databrowser with the arrow keys
  • API Console - Autocompletion is now improved
  • Data Browser - The filter panel is collapsed automatically on page transition
  • Environments - Archived environments have a better display, and will automatically unarchive
  • Business Logic - BL scripts can be renamed
  • Small Bugfixes
  • Bugfixes
  • Internal Improvements
  • New beta console released, designed from the ground up with your feedback along the way.
  • Internal improvements
  • Added collectionAccess.collection.collectionExists method to check if a collection exists
  • Internal Improvements
  • Internal improvements
  • Internal Improvements
  • Increased timeout for long running tasks.
  • Collaboration - Fixed bug where users could not be invited to collaborate to an environment when they already work on a different environment
  • API Console - Fixed bug with the DELETE method getting back an error related to missing a body
  • Databrowser - We no longer sort on collections that are too large to be sorted
  • Internal Improvements
  • Changes to moment module
    • Upgrade to moment 2.5.x
    • Adds new methods associated with moment 2.5
      • as
      • get
      • set
      • min
      • max
      • toISOString
      • quarter
      • weekday
      • isoWeekday
      • weekYear
      • zone
      • parseZone
      • isDSTShifted
    • Adds support for duration objects
    • Fixes several methods that accepted moments as arguments
  • New tempObjectStore in utils module, for storing transient data and objects within the same request
  • New backendContext method getAuthenticatedUsername for retrieving the name of the user who initiated the request
  • Internal improvements
  • Users - Fixed bugs when trying to fetch a user that does not pass form validation
  • Scheudled Code - Added new shorter intervals to schedules
  • Internal Stability Improvements
  • Versioning - Added notification to users that they have a stale version of the client
  • Custom Endpoints - Improved error handling
  • Users - You can now add users when the collection is configured as read-only from the console
  • Import - Added better file validation
  • Internal Stability Improvements
  • BL-CLI - Fixed issue when trying to get hooks that are defined against data links for the CLI.
  • Internal Improvements
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Users - When creating users through the console and the email verification flag is set, the email field will be required
  • Push - Fixed a bug that would cause a failure of push if a user's configuration was in an inconsistent state
  • Data Store - Fixed incorrect errors that would render on destroying or renaming a collection
  • Error Handling - Drastically reduced the number of "Uh, oh" and "broken pipes" style errors across the board.
  • API Console - Added support for using Microsoft Dynamics Data Links
  • Collection Hooks - Fixed issue that prevented the page from loading when custom data links are enabled
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Custom Data Link - Unified interface to match how the other data links function
  • Internal Improvements
  • In email module, if reply to is null, reply to is now set to the from address.
  • Internal Improvements
  • Internal Stability Improvements
  • Fixed issue with scheduled tasks not running properly
  • Fixed bug with icons not showing up for apps
  • Internal Stability Improvements
  • Updated copyright to 2014
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Added tooling to better track down future errors
  • Fixed a bug with Business Logic logs that would cause slowdowns
  • Internal Stability Improvements
  • Internal Improvements
  • Fix for some outbound requests using the request module timing out too quickly
  • Internal Improvements
  • Decreased error rates across the board with better error handling
  • Internal Stability Improvements
  • Internal Improvements
  • Outbound requests using the request module are now limited to 20 per second per app environment
  • url argument now accepted as an alias to uri in request module
  • Fix issue where errors logged through the logger module would be written to the log as an empty object
  • Internal Improvements
  • Removed Yahoo Local addon.
  • Fixed bug with links being generated with .... instead of the characters in the name
  • Internal Stability Improvements
  • Business Logic - Added support for common Business Logic from the command line tool.
  • Users - Added configuration for password reset URL in settings page
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Updated support phone number
  • Improved error handling when rolling back business logic
  • Improved error handling when there is a password error on push certificate upload.
  • Improved error handling when rate limit is encountered
  • Added an "add column" button in the Users addon table view
  • Added the ability to lockdown a user (which triggers a wipe of the device cache)
  • Fixed Files addon rendering to support non-string filenames
  • Security improvements
  • Fixed bug related to adding custom data links when the current plan does not have support for them
  • Minor placeholder changes to forms
  • Internal Stability Improvements
  • Users - Fixed bug with exporting of large datasets not preforming well
  • Internal Stability Improvements
  • Added new method getSecurityContext to backendContext module, which returns 'app', 'master', or 'user' depending on the type of security credentials that were passed in the request
  • Changed blacklist violation error to include the name of the script that triggered the blacklisting event
  • Internal improvements
  • Fixed issue where navigation out of the billing page was not possible
  • Made enterprise dashboard dismissable
  • Fixed some databrowser filter issues regarding case sensitivity
  • Internal Stability Improvements
  • Added self-serve unarchiving support
  • Scheduled Code - Added support for running business logic on a schedule basis
  • Internal Stability Improvements
  • Fixed a bug with regards to environment creation limits
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Billing - Fixed navigation issues with page reloads and paths with a trailing slash not redirecting properly
  • Analytics - Fixed a bug with the retrieval of analytics data from the server
  • Support - Updated links around the site to give people ways to connect with all their support options available
  • Pricing - Updated the interface for the new pricing model, including support to upgrade your plan
  • Analytics - Updated analytics styling to fix a bunch of UI bugs
  • Internal Stability Improvements
  • Collection Hooks - Added support to allow for collection hooks to be created for the Files API
  • API Console - Fixed a bug where the request body would not reset it's value from previous requests properly
  • Internal Stability Improvements
  • Business Logic - Rollbacks are now ran on a background task, similar to how cloning is done
  • Updated the interface to archived apps to present a more friendly display
  • Users - When cloning user records the groups are now also cloned.
  • Business Logic - Fixed a bug with verisoning where saving with a message would not actually update your code
  • Added support for archived environments which was causing some users to get a non-responsive web console
  • Internal Stability Improvements
  • Microsoft Dynamics® CRM Data Link - Added a new data link to connect with your Microsoft Dynamics® CRM
  • Internal Stability Improvements
  • Internal Stability Improvements
  • Business Logic - Added revision support to business logic, including adding a command line tool to manage your logic.
  • Collaboration - Fixed an issue where admins could not invite other admins or collaborators.
  • Environment Management - Fixed bug where no addons would show up on the left when selecting clone from a different environment than is currently selected
  • Push - Added support for iOS push certificate password
  • Billing - Fixed a bug where a user could not select a different billing month. Also fixed the default month to be displayed to be the latest statement instead of the first statement.
  • Collection Hooks/Custom Endpoints - Updated the way logs are returned from the system, previously after 100 logs now new logs would be returned. Now the latest logs are always returned.
  • API Console - Refactored the way the API console makes requests. They are now sent direct from the browser instead of passed through the management console backend.
  • Fixed a bug with iOS Push
  • Internal improvements
  • Users - Add information about email verification options, as well as the new HTML Templates addon and its support for customizing the email verification 'success' page.
  • API Console - Removed temporary measure of limit of 100 records on every request that was added in 3.7.8.
  • Updated display case when an app is suspended, it now renders a proper message.
  • Internal Stability Improvements
  • Internal Stability Improvements
  • API Console - Added a limit of 100 records to every request as a temporary bugfix until a permanent fix is ready for deployment.
  • Environment Management - Fixed a bug with jobs not clearing their update when they get removed from the collection.
  • Internal Stability Improvements
  • Internal stability and speed improvements
  • App Settings - Ownership display no longer attempts to use a variable that might not exist
  • Environments:
    • Fixed a bug with ownership being assigned to the wrong user on environment creation. This was causing some bad behavior when trying to update owner of the app or manage billing.
    • Collaborators can no longer create or delete environments
  • HTML Templates - Released a new addon to manage your HTML templates
  • Users - Added the ability to force email verification
  • Environment Cloning - Increased clone duration timeouts
  • Administration - Updated ownership display to only show ownership transfer form when the user is the owner
  • Internal stability improvements
  • Internal improvements release
  • Internal stability improvements
  • Environment Cloning:
    • Clicking clone on an app with only one environment no longer causes a javascript failure on the page.
    • Files now correctly show up on the batch clone dialog.
  • Business Logic Logs:
    • Logs now sort with the proper timestamps.
    • Logs no longer seem to "fill up" over time. Old logs will get automatically removed after a threshold of new logs being created.
  • Internal stability improvements
  • Environments - Updated interface so only addons with differences show up in the clone page
  • Internal stability improvements
  • Internal improvements release
  • Environments - Added environment management, with the ability to copy data and settings from one environment to the other.
  • Added UI elements for viewing task status on clone operations.
  • Added support in email module for sending HTML Emails
  • Added a new module, backendContext, with helper methods for obtaining the current app's appKey, appSecret, and masterSecret
  • Internal Improvements
  • Analytics - Fixed a display issue causing timezone offset to show data in the wrong day
  • Fixed bug in push processing that prevented pushing to both Android and iOS devices for the same user
  • Internal Improvements
  • Internal improvements release
  • Users - Fixed a bug where users with invalid email address were not showing up in the user listing
  • API Version - Fixed a bug where the API Version could get set to a string instead of a number
  • Push Triggers - Fixed a bug that was causing the addon to fail loading
  • Added timeline link to the dashboard
  • Internal stability improvements
  • Files - Fixed bug with old entries that were causing the UI to crash
  • Datastore - Internal improvements
  • Users - Updated validation handlers
  • Added support for running Business Logic on Google App Engine
  • Internal improvements release
  • Fixed handling of unknown mime types for file uploads
  • Internal improvements
  • Bugfixes for Premium Analytics UI
  • Fixed bug for User UI where id cells were not linking properly
  • Changed the regex patters on the query builder to be case insensitive by default
  • Internal improvements release
  • Added support for Google Cloud Storage as the underlying service for Files.
  • Internal improvements release
  • Internal improvements release
  • Fixed bug with missing argument in collectionAccess.findAndModify
  • Added support Google Cloud Messaging
  • Added appKey as modules.request parameter
  • Business Logic - Updated guide with information about Custom Endpoints
  • Release of Premium Analytics (beta)
  • Added support for Custom Endpoints in Business Logic
  • Fixed bug with billing UI where it displayed wrong dollar amount
  • Internal improvements
  • Fixed async.js bug where series, parallel, and parallel limit functions only supported arrays and not objects
  • Internal improvements release
  • Added the ability to clear Users
  • Fixed a bug with sorting users
  • Fixed a bug where collaboration was not able to be edited
  • Fixed a bug where the user page was not showing users with invalid emails
  • Made the export code streaming for collections
  • Internal improvements release
  • Added the ability to have multiple custom data links
  • Removed UI for non-admins to be able to edit collaborators or remove/change owner of the app
  • Fixed bug where the Azure blob container was not being created on app creation
  • Internal improvements
  • Fixed a bug with a failing collection destroy for externally created collections
  • Added error display to settings page.
  • Added UI state memory BL addon - now remembers which collection and stage of BL you last edited, per app per user
  • Updated importer so it will throttle based on if the item has BL or not, it will also now detect filetype and throw errors if the filetype does not match a predefined list.
  • Internal improvements
  • Fixed a bug with setting the content length incorrectly causing documents to get cut off
  • Added the "Building For" question to new apps
  • Updated request to force API v1 when streaming requests.
  • Fixed bug with request form handling.
  • Added support for GCM push
  • Enabled blacklisting support
  • Upgraded the request library and fixed content length while streaming from Azure
  • Updated the exposure of Business Logic logs in the Management Console
  • Upgraded MongoDB driver version
  • Support for POSTing formdata
  • Support for streaming Kinvey Files to formdata
  • Internal improvements
  • Internal improvements release
  • Added support for modules.request to allow creation of outgoing HTTP requests