Skip to content

Latest commit

 

History

History
223 lines (128 loc) · 5.49 KB

CHANGELOG.md

File metadata and controls

223 lines (128 loc) · 5.49 KB

Changelog

Features

  • EC admin interface
  • Relations now accepts mediaType

Fix

  • React native does not define window.location
  • Atob to base 64
  • Some browsers not define xhr onLoad onError

Breaking changes

  • [Corbel] Review IAM plural endpoints
    • /sessions to /session
    • /groups to /group
    • /scopes to /scope
    • /devices to /device

Features

  • Iam endpoints with domain parameters
  • Adds a util that checks delay between server-client
  • Delete endpoint for webfs and path prefix

Fixes

  • fix encoding problem in reset password methods
  • changed paymentplan builder
  • evci does not return location in header
  • fix request without credentials
  • Path & Domain order inversion in webfs

Breaking changes

Devices api changes:

  • iam.user().registerMyDevice(data) -> iam.user().registerMyDevice(deviceId, data)
  • iam.user().registerDevice(data) -> iam.user().registerDevice(deviceId, data)

update to devices from device endpoint

Features

  • iam get session endpoints
  • minification

Breaking changes

Notifications api changes:

  • notifications.notification.create -> notifications.template.create
  • notifications.notification.get -> notifications.template.get
  • notifications.notification.update -> notifications.template.update
  • notifications.notification.delete -> notifications.template.delete
  • notifications.notification.sendNotification -> notifications.notification.send

Features

  • Added notifications domain interface

Feature

  • Updated EC module with payment methods
  • Updated lodash

Features

  • Oauth support updated

Test

  • Updated oauth tests

Fix

  • Fixes codeclimate build
  • Reset password does not return location header

Fix

  • Fixes refresh token handler

Fix

  • Fixes ftsearch query

Features

  • Binaries and blob support
  • Get current endpoint function

Features

  • Merged with 0.2.X, adds .domain implementation

Features

  • Refactor to encode query params in SerializeParams function

Features

  • Includes updates ACL
  • Webfs

Features

  • Added blob, dataURI, stream serializers to request.js

Fixes

  • Fixes bug with encoded urls
  • Support requests in IE
  • Only 1 token refresh at the time
  • Fixed events hashmap

Features

  • Added .domain implementation for custom domain requests

Features

  • Event handler support addEventListener/on, removeEventListener/off and dispatch/trigger

Breaking changes

  • Assets and notifications' API have changed so now, both modules follow the main syntax

    corbelDriver.assets(.*).get() -> corbelDriver.assets.asset(.*).get()
    corbelDriver.notifications(.*).get() -> corbelDriver.notifications.notification(.*).get()
    
    

Breaking changes

  • In users in module IAM, the existing methods sendResetPasswordEmail, create, get and getProfiles now require the constructor users() instead of user()

    corbelDriver.iam.users().create(data)
    
    
  • It's important to note that get method exist also with constructor user(), but is equivalent to write user('me'), and if you had it implemented in previous version, now you must use users()

Breaking changes

  • Pagination change in query, size renamed to pageSize

    {
      pagination : {
        page : 1,
        pageSize : 10
      }
    }
    
    

Fixes

  • Response errornow it responds with an object instead of a string.

Changelog template

Breaking changes

  • ...

Fixes

  • ...

Docs

  • ...

Misc

  • ...