Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Steps to create the branch are outlined below:
git checkout master
git pull origin master

^^ this will ensure you are on the latest commit for master

git checkout -b X.Y

^^ this creates a local X.Y branch for yourself

git push origin X.Y

 Here X.Y is branch to be created like 4.3

...

Filter

Description

Query

Issues fixed in this release

A filter that lists all the issues that were fixed in this release from the prior releases.
Note: The issues fixed for new features and improvements added in this release should be excluded as those are transient development issues

project = CLOUDSTACK AND type = Bug AND affectedVersion in (PRIOR RELEASE , MAINTENANCE RELEASES) AND fixVersion = "X.Y.Z" AND resolution != "\"Unresolved\"" ORDER BY created DESC, priority DESC, key ASC
Example: project = CLOUDSTACK AND type = Bug AND affectedVersion in ("4.1.0", "4.1.1") AND fixVersion = "4.2.0" AND resolution != "\"Unresolved\"" ORDER BY created DESC, priority DESC, key ASC

Known issues in this release

A filter that lists all the known issues from this release

project = CLOUDSTACK AND type = Bug AND (affectedVersion = "X.Y.Z" or fixVersion = "X.Y.Z") AND resolution is EMPTY AND level = "Public" ORDER BY priority DESC, key ASC
Example: project = CLOUDSTACK AND type = Bug AND (affectedVersion = "4.2.0" OR fixVersion = "4.2.0") AND resolution is EMPTY AND level = "Public" ORDER BY priority DESC, key ASC