Skip to content

Releases: SkygearIO/py-skygear

v0.18.0

03 Nov 11:14
v0.18.0
Compare
Choose a tag to compare

Features

  • Make the zmq transmitter open worker thread (#72)
  • Provide skygear.config for loading and config of plugin (#70)
  • Add settings utility (#62)
  • Override previously defined extension points (#58)

Other Notes

  • Push Docker image as onbuild also (#66)
  • Update to use py3.5 as default release version (#63)

v0.17.0

15 Sep 08:35
Compare
Choose a tag to compare

Features

  • Load more than one cloudcode entry points (#57)

v0.16.0

02 Sep 13:00
v0.16.0
Compare
Choose a tag to compare

Bug Fixes

  • Fix local static asset not serve correctly during development (#50)

Other Notes

  • Un-deprecate PUBSUB_URL (#52)
  • Revamp release process

v0.15.0

17 Aug 08:34
v0.15.0
Compare
Choose a tag to compare

Other Notes

  • Update postgres to 9.5 (#45)
  • Update catapi docker-compose to embrace env var config
  • Remove the SKYGEAR prefix in envvar (#27)

v0.14.0

26 Jul 11:19
Compare
Choose a tag to compare

Features

  • send_action support datetime serialization using rfc3339 (#12)
  • Add exception_handler decorator(#19)
  • Register citext in postgresql dialects (#31)

v0.13.1

18 Jul 05:47
Compare
Choose a tag to compare
v0.13.1 Pre-release
Pre-release

Features

  • Do not serve static assets by default

v0.13.0

05 Jul 05:59
v0.13.0
Compare
Choose a tag to compare

Features

  • Include both api_key and access_token in send_action
  • Provide meta attributes like created_by on serialized_record (SkygearIO/chat#23)
  • Allow RestfulRecord subclass to provide container
  • Implement serving static assets for development (#23)
  • Automatically generate ID for restful record
  • Enable threading in http transport
  • Add function to check if a table exists in schema
  • Declare and collect static assets (#21, #22)

Bug fixes

  • Fix handler name with slashes in http transport (#33, oursky/py-skygear#137)
  • Fix handler returning werkzeug response

Other notes

  • Fix bcrypt version at 2.0.0 because build failing
  • Fix onbuild image not having zmq transport installed

v0.12.0

30 May 10:01
Compare
Choose a tag to compare
v0.12.0 Pre-release
Pre-release

Other Notes

  • Correct the Travis-CI link in README.md
  • Remove the wrong information at README
  • Point user to the doc site.
  • Left development and contribution for advance dev.

v0.11.0

09 May 10:48
Compare
Choose a tag to compare
v0.11.0 Pre-release
Pre-release

Features

  • Set the container default before loading source
    • Problem:
      When a user want to send_action to Skygear on bootsrtap, he will try to
      instantiate a SkygearContianer instance. However the skygear container
      is not yet loaded the default config from environment variable. It make the
      developer have to load it from the environment by themselves.
    • Fix:
      Set the container default before attempting to load the plugin source, when
      loading the plugin source. Developer got a SkygearContainer with proper
      defaults.
  • Add Public ACE support

Bug Fixes

  • Raise exception with proper message if no pyzmq (#13)
  • Make log level respect env SKYGEAR_LOGLEVEL

Other Notes

v0.10.0

19 Apr 04:22
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release

Features

  • Make pyzmq an optional dependency (refs oursky/py-skygear#129)
  • Support paging and filtering in restful index
  • Implement restful resource (refs oursky/py-skygear#135)

Bug Fixes

  • Update development.ini in catapi
  • Change docker-compose on the catapi example
  • Remove paging logic from py-skygear
  • Reflect database table using SQLAlchemy