Skip to content

Releases: nosegae/NoseGAE

API Cleanup

15 Dec 15:18
Compare
Choose a tag to compare

Removed prospective search stub, thanks @soundTricker!
Updated sdk fetching code

Release 0.5.9

18 Aug 14:29
Compare
Choose a tag to compare

Path ordering thanks to @gregpsycle!

0.5.8 Release

05 Oct 16:53
Compare
Choose a tag to compare

Update the docs, update the tests to use the app engine sdk.

0.5.6 Release

17 Apr 15:29
Compare
Choose a tag to compare

Fixes issue #34 by reloading the google module instead of deleting it from sys.modules on setup.

0.5.5 Release

11 Mar 16:37
Compare
Choose a tag to compare
  • Fix for taskqueue queue.yaml discovery in the case of --gae-application values that contain yaml files
    example: --gae-application "dispatch.yaml,default/app.yaml,mod1/module.yaml" where queue.yaml is in default/

0.5.4 Release

09 Mar 20:38
Compare
Choose a tag to compare

0.5.3 Release

24 Feb 21:49
Compare
Choose a tag to compare
  • Fix regression in automatic taskqueue stup initialization due to app_path becoming a list in #24
  • Add Travis-CI configuration for automated testing so this won't happen agai

0.5.2 Release

23 Feb 22:05
Compare
Choose a tag to compare

0.5.2

  • Accept multiple modules comma-delimited --gae-application (Issue #22) (see support/modules_example/runtests.sh)
  • Prepend GAE lib directory to path instead of append (Issue #23)

0.5.1 Release

13 Feb 17:08
Compare
Choose a tag to compare
  • Populate os.environ['CURRENT_VERSION_ID'] using devappserver2's built in
    generation via the
    google.appengine.tools.devappserver2.application_configuration.ModuleConfiguration
    instance that is part of the ApplicationConfiguration's modules list

0.4.1 Release

03 Feb 17:10
Compare
Choose a tag to compare

0.4.1

  • Fix issue with timezone mismatch discovered by viorelsfetea by importing
    google.appengine.tools.os_compat which explicitly sets the timezone to UTC
    so that datetime and time objects created in tests match the ones created
    in the appengine runtime.