Skip to content

Releases: TOMToolkit/tom_base

Release 1.11.0-alpha.1

02 Sep 22:04
f7b70f9
Compare
Choose a tag to compare
Pre-release

This release updates the GenericAlert class to return a dict of TargetExtra data and a list of TargetName values, and updates the view to save those for any alerts saved as Targets.

Release 1.10.1

02 Sep 17:58
99f2efe
Compare
Choose a tag to compare

This release upgrades dependencies for bugfix releases of Django and django-extensions.

Release 1.10.0

31 Aug 20:06
ba18245
Compare
Choose a tag to compare

This release addresses the following:

  • Adds a Supernova Exchange-styled spectroscopic sequence observation form.
  • Adds an association between the user that submits an observation request and the resulting ObservationRecord.
  • Hides comments for targets that the user does not have permission to view, and hides them for unauthenticated users.
  • Sorts instrument and filter lists in the LCO observation form.
  • Fixes padding on the observation form.

This release requires a migration.

1.10.0-alpha.2

31 Aug 17:05
Compare
Choose a tag to compare
1.10.0-alpha.2 Pre-release
Pre-release

This release does the following:

  • Adds a Supernova Exchange-styled spectroscopic sequence observation form
  • Hides comments for targets that the user does not have permission to view, and obscures them for unauthenticated users
  • Sorts instrument and filter lists in the LCO observation form
  • Fixes padding on the observation form

1.10.0-alpha.1

28 Aug 22:19
2761c92
Compare
Choose a tag to compare
1.10.0-alpha.1 Pre-release
Pre-release

This release adds an association between the user that submits an observation request and the resulting ObservationRecord. The release requires ./manage.py migrate to be run.

Release 1.9.0

18 Aug 16:44
a23ec40
Compare
Choose a tag to compare

This release adds a new LCO observation form modeled after one found in the Supernova Exchange, the Photometric Sequence form. It provides an interface for submitting cadenced, multifilter observations.

Release 1.9.0-alpha.2

18 Aug 16:45
Compare
Choose a tag to compare
Release 1.9.0-alpha.2 Pre-release
Pre-release

This is a pre-release for a new LCO observation form modeled after one found in the Supernova Exchange, the Photometric Sequence form. It provides an interface for submitting cadenced, multifilter observations. It is identical to 1.9.0-alpha.1, save for a small bugfix in the observation form for non-sidereal targets.

Release 1.9.0-alpha.1

18 Aug 16:44
e4611c4
Compare
Choose a tag to compare
Release 1.9.0-alpha.1 Pre-release
Pre-release

This is a pre-release for a new LCO observation form modeled after one found in the Supernova Exchange, the Photometric Sequence form. It provides an interface for submitting cadenced, multifilter observations.

Release 1.8.1

18 Aug 02:06
5572028
Compare
Choose a tag to compare

This release updates and pins most dependencies to their latest versions.

Release 1.8.0

13 Aug 22:38
Compare
Choose a tag to compare

This release adds Django Rest Framework support for select endpoints for Targets and DataProducts. It also fixes an issue with Targets not being linked to on comments.

Please note, in order to avoid breaking your TOM when upgrading, you'll need to add the following to your settings.py:

  • Add LOGIN_URL = '/accounts/login/', preferably just above LOGIN_REDIRECT_URL.
  • Add rest_framework to your settings.INSTALLED_APPS.
  • Add the following property, which can be configured as:
REST_FRAMEWORK = {
    'DEFAULT_PERMISSION_CLASSES': [
    ],
    'TEST_REQUEST_DEFAULT_FORMAT': 'json',
    'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
    'PAGE_SIZE': 100
}