Skip to content

Commit

Permalink
Merge pull request #1644 from AppScale/new-release
Browse files Browse the repository at this point in the history
2.1.0 release items
  • Loading branch information
menivaitsi committed Dec 2, 2014
2 parents 0ceb520 + 67c97c2 commit fdb71c1
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AppController/lib/helperfunctions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class BadConfigurationException < Exception
module HelperFunctions


VER_NUM = "2.0.0"
VER_NUM = "2.1.0"


APPSCALE_HOME = ENV['APPSCALE_HOME']
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To find out more visit http://appscale.com
https://github.com/AppScale/appscale/wiki

## Latest Release ##
The latest stable release is AppScale 2.0.0, released in June, 2014.
The latest stable release is AppScale 2.1.0, released in December, 2014.
Feature requests and pull requests gladly welcomed.

## Mailing List ##
Expand Down
44 changes: 43 additions & 1 deletion RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,49 @@
/ ___ |/ /_/ / /_/ /___/ / /__/ /_/ / // __/
/_/ |_/ .___/ .___//____/\___/\__,_/_/ \___/
/_/ /_/
The current version is 2.0.0, released June, 2014
AppScale version 2.1.0, released December, 2014
Highlights of features/bugs in this release:
- Updated bootstrap script
- No longer overwriting SSL cert and private key on "appscale down"
- NDB patch
- Remove duplicates of host names found in ZooKeeper
- Better logging in AppController
- Use default HAProxy health checking
- Allowing connections to self signed certificates for remote API
- Email fix to allow for multiple attachments (python)
- Removed API checker
- Script to enable datastore viewer by IP
- White listed future builtins
- No longer storing temporary queues
- Reloading taskqueue queues on redeploy
- Increased concurrency of taskqueue celery workers to 10
- Handle new queues when queue definitions change
- Provide an empty cursor if requested
- Force HTTPS when pointing to port 443 (python)
- Dashboard navigation fixes
- Ancestors for composites now always point to the root entity
- Fixed maximum number of groups in a XG transaction
- Catch exceptions for ZK errors in datastore server
- Throw correct exceptions on illegal XG operations (needed for objectify)
- Java has its datastore set to HighReplication
- Added OFair to celery workers to not prefetch tasks
- Increased the number of datastore servers to be a multiple of CPU cores
- Improved groomer to handle more errors and retry
- Disable ssl3 (POODLE)
- Have Groomer delete logs older than 7 days
- Clean up transaction journal in groomer
- More fault tolerance with datastore operations and better load balancing
- Fixed broken unit tests
- Log rotation for saving disk space
- Remove conflicting jars when uploading a Java application
- Make sure jars are copied in when a java application is re-uploaded
- Remote API support for java (custom jar to include in application)
- Retry logic for sending emails (python)
- Have a java error application when an upload goes bad
- Fast start script for easy single node deployment
- RabbitMQ fix for node clustering

AppScale version 2.0.0, released June, 2014
Highlights of features/bugs in this release:
- Better error messages for AppScale tools
- Moved to package installation of most installed software (faster build)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
/ ___ |/ /_/ / /_/ /___/ / /__/ /_/ / // __/
/_/ |_/ .___/ .___//____/\___/\__,_/_/ \___/
/_/ /_/
AppScale version 2.0.0
AppScale version 2.1.0

2 changes: 1 addition & 1 deletion debian/appscale_install_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ -z "$APPSCALE_PACKAGE_MIRROR" ]; then
export APPSCALE_PACKAGE_MIRROR=http://s3.amazonaws.com/appscale-build
fi

export APPSCALE_VERSION=2.0.0
export APPSCALE_VERSION=2.1.0

pip_wrapper ()
{
Expand Down
2 changes: 1 addition & 1 deletion lib/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os

# The current version of AppScale.
APPSCALE_VERSION = "2.0.0"
APPSCALE_VERSION = "2.1.0"

# AppScale home directory.
APPSCALE_HOME = os.environ.get("APPSCALE_HOME", "/root/appscale")
Expand Down

0 comments on commit fdb71c1

Please sign in to comment.