Roundup Issue Tracker release 1.1.3

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Richard Jones

    Roundup Issue Tracker release 1.1.3

    I'm proud to release version 1.1.3 of Roundup.

    Feature:
    - supports Python 2.5, including the sqlite3 module
    - full timezone support (sf patch 1465296)
    - handle connection loss when responding to web requests
    - match incoming mail In-Reply-To against existing messages when no issue
    id is specified in the Subject
    - added StringHTMLPrope rty wrapped() method to wrap long lines in issue
    display
    - include the popcal in Date field editing and search fields by default
    - @required in forms may now specify properties of linked items (sf patch
    1507093)
    - update for latest version of pysqlite (sf bug 1487098; patch 1534227)
    - update for latest version of psycopg2 (sf patch 1429391)
    - new "exporttabl es" command in roundup-admin (sf bug 1533791)
    - roundup-admin "export" may specify classes to exclude (sf bug 1533791)
    - sorting and grouping by multiple properties is now supported by the
    backends *and* the classic template.
    - sorting, grouping, and searching by transitive properties (e.g.,
    messages.author .supervisor) is now supported in all backends
    - added filter_sql to SQL backends which takes an arbitrary SQL statement
    and returns a list of item ids

    There was also a lot of bugfixes - see the bundled CHANGES.txt file for the
    list.

    If you're upgrading from an older version of Roundup you *must* follow
    the "Software Upgrade" guidelines given in the maintenance documentation.

    Roundup requires python 2.3 or later for correct operation.

    To give Roundup a try, just download (see below), unpack and run::

    roundup-demo

    Release info and download page:
    A simple-to-use and -install issue-tracking system with command-line, web and e-mail interfaces. Highly customisable.

    Source and documentation is available at the website:
    Roundup is an issue-tracking system that boasts a user-friendly interface and easy installation process. It offers a range of interfaces, including command-line, web, REST, XML-RPC, and e-mail, mak...

    Mailing lists - the place to ask questions:



    About Roundup
    =============

    Roundup is a simple-to-use and -install issue-tracking system with
    command-line, web and e-mail interfaces. It is based on the winning design
    from Ka-Ping Yee in the Software Carpentry "Track" design competition.

    Note: Ping is not responsible for this project. The contact for this
    project is richard@users.s ourceforge.net.

    Roundup manages a number of issues (with flexible properties such as
    "descriptio n", "priority", and so on) and provides the ability to:

    (a) submit new issues,
    (b) find and edit existing issues, and
    (c) discuss issues with other participants.

    The system will facilitate communication among the participants by managing
    discussions and notifying interested parties when issues are edited. One of
    the major design goals for Roundup that it be simple to get going. Roundup
    is therefore usable "out of the box" with any python 2.3+ installation. It
    doesn't even need to be "installed" to be operational, though a
    disutils-based install script is provided.

    It comes with two issue tracker templates (a classic bug/feature tracker and
    a minimal skeleton) and five database back-ends (anydbm, sqlite, metakit,
    mysql and postgresql).

  • Richard Jones

    #2
    Re: Roundup Issue Tracker release 1.1.3

    Richard Jones wrote:
    I'm proud to release version 1.1.3 of Roundup.
    That's supposed to say 1.2.0. Sigh.

    Comment

    • metaperl.etc@gmail.com

      #3
      Re: Roundup Issue Tracker release 1.1.3


      Richard Jones wrote:
      I'm proud to release version 1.1.3 of Roundup.
      five database back-ends (anydbm, sqlite, metakit,
      mysql and postgresql).
      That ORM is pretty impressive:


      I like how easy it is to specify m-to-n relations.

      Is it possible to have a table with a multi-column primary key?

      Comment

      • Richard Jones

        #4
        Re: Roundup Issue Tracker release 1.1.3

        metaperl.etc@gm ail.com wrote:
        Richard Jones wrote:
        >I'm proud to release version 1.1.3 of Roundup.
        >five database back-ends (anydbm, sqlite, metakit,
        >mysql and postgresql).
        >
        That ORM is pretty impressive:

        [snip]
        Is it possible to have a table with a multi-column primary key?
        No, it's not designed for that level of complexity.


        Richard

        Comment

        • Steve Holden

          #5
          Re: Roundup Issue Tracker release 1.1.3

          metaperl.etc@gm ail.com wrote:
          Richard Jones wrote:
          >
          >>I'm proud to release version 1.1.3 of Roundup.
          >>five database back-ends (anydbm, sqlite, metakit,
          >>mysql and postgresql).
          >
          >
          That ORM is pretty impressive:

          >
          I like how easy it is to specify m-to-n relations.
          >
          Is it possible to have a table with a multi-column primary key?
          >
          Of course you could redesign your database so the primary keys are all
          IDs, and the former keys become simple columns with a UNIQUE index
          covering them ...

          regards
          Steve
          --
          Steve Holden +44 150 684 7255 +1 800 494 3119
          Holden Web LLC/Ltd http://www.holdenweb.com
          Skype: holdenweb http://holdenweb.blogspot.com
          Recent Ramblings http://del.icio.us/steve.holden

          Comment

          Working...