Releases: juanep97/iop4
v1.3.0
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
v1.2.0
Summary
This release includes several improvements to documentation, handling of configuration files and others.
What's Changed since v1.1.2
- Improve docs (#113) @juanep97
- Improve DIPOL quad matching (#108) @juanep97
- Fix compute_relative_photometry (#111) @juanep97
- Fix AstroSource admin (#112) @juanep97
- OSN get_astrometry_position_hint fallback to get_header_hintobject (#109) @juanep97
- More relaxed and resilient get_header_hintobject (#107) @juanep97
- Improve AstroSource admin (#110) @juanep97
- iop4.py: simplify cli options (#106) @juanep97
- Add links to summary (#104) @juanep97
- Tests for the web interface (#102) @juanep97
- Fix unintended line wrap in night summary (#101) @juanep97
- Simplify IOP4 and tests configuration (#100) @juanep97
- Remove version from BibTeX entry example (#99) @juanep97
Contributors
v1.1.2
v1.1.1
v1.1.0
Summary
This version enables CAFOS simple photometry in several bands (it was implemented, but not the case was not handled). It implements several other improvement and bug fixes.
What's Changed since v1.0.0
- Fix docs building and deployment (#93) @juanep97
- Automatic docs deployment to GitHub Pages (#91) @juanep97
- Add reply-to header to night summary email (#92) @juanep97
- CAFOS: enable simple photometry, more bands (#90) @juanep97
- Update installation instructions and update citation (#88) @morcuended
- Add pypi badge to readme header (#86) @morcuended
Known Bugs:
- Documentation is not correctly deployed to GitHub Pages (#95). Local docs are working.
Contributors
@juanep97 and @morcuended
v1.0.0
Summary
- Several improvements to the documentation, which now includes example notebooks.
- Implement host galaxy correction.
- Add night summary script.
- Several improvements and bug fixes.
What's Changed since v0.1.0
- Improve documentation (#70) @juanep97
- Add host galaxy correction (#69) @juanep97
- Add night summary script (#83) @juanep97
- Publish tagged releases to PyPI (#85) @juanep97
- Fix tests in macOS (#82) @juanep97
- Adapt IOP4 to work on historic (2007-2021/22) data (#71) @juanep97
- Use only source calibrators during relative photometry (#81) @juanep97
- Fix scrolling of table in plot gui (#80) @juanep97
- Freeze vuejs version (#78) @juanep97
- Fix flags in web gui (#72) @juanep97
- Improve CAFOS pairs matching (#67) @juanep97
- Implement decision tree for dipol astrometry (#66) @juanep97
- iop4admin: fix finding charts (#64) @juanep97
- iop4api: allow selecting band in plot form (#62) @juanep97
- Add iop4 cmd option to check config file (#59) @juanep97
- Add MANIFEST.in file for packaging (#48) @morcuended
- Adds option to ignore master calibration files (#56) @juanep97
- Improve iop4 cmd config options and log viewing (#55) @juanep97
- Add write permissions to create draft release (#50) @morcuended
- Add release drafter (#49) @morcuended
- Add GitHub action to deploy to PyPi (#40) @morcuended
- Add zenodo badge with DOI, put badges at the top (#43) @juanep97
- Several other improvements and bug fixes.
Contributors
@juanep97 and @morcuended