Summary
This release adds several improvements and bug-fixes (see "What's Changed since v1.2.0").
Update Instructions
This release contains a change that requires special care when updating ("Allow multiple other names in AstroSource", PR #123). The field AstroSource.other_name
was renamed to AstroSource.other_names
. For this to be correctly taken into account during the database migration step of the update, it must be manually indicated by editing the migrations file. First generate the migrations as usual (python manage.py makemigrations
). Then, go to the migrations file, remove the lines deleting the field and adding it again, and leave something like:
operations = [
migrations.RenameField(
model_name='astrosource',
old_name='other_name',
new_name='other_names',
),
...
That is, make sure it is renaming the field instead of deleting it and creating a new one.
What's Changed since v1.2.0
- Add basic auto-flagging (#134) @juanep97
- Use centroid for aperture photometry (#131) @juanep97
- Test python 3.11 in CI (#130) @juanep97
- Improve night summary script (#129) @juanep97
- Improve tests (#126) @juanep97
- Fix docs failure after new sphinx release (#127) @juanep97
- Remove SRCTYPES.CALIBRATOR (#125) @juanep97
- Allow multiple other names in AstroSource (#123) @juanep97
- Update README.md (#121) @juanep97
- Fix override of FTP credentials (#122) @juanep97
- Correct typos in README.md (#116) @morcuended
- Update README.md (#115) @juanep97
- Update serving_iop4_in_production.rst (#114) @joteros
Contributors
@joteros, @juanep97 and @morcuended