Skip to content

Commit 5228eaa

Browse files
committed
Release 2020.3.2: document updates and patches
- fixed: allow coverage hips to come up with grid - fixed: logging clean up issue
1 parent 426f9b7 commit 5228eaa

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

config/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//---------------------------------------------
44
BuildMajor = 2020
55
BuildMinor = 3
6-
BuildRev = 1
6+
BuildRev = 2
77
BuildNumber = 0
88
BuildType = "Final"
99

docs/new-release-procedure.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,16 @@
1010

1111
1. **Update Release Notes.**
1212
In the `rc-yyyy.x` branch, edit the release notes and do the following (firefly/docs/release-notes.md):
13-
- Modify the note for the unreleased version to remove the `(unreleased, current development)` from the title
13+
- Start a new section for this release
1414
- After looking at milestone tags make sure all the important changes are included in the notes.
15-
- Start a new section for the next release, mark in the title with `(unreleased, current development)`
1615
- Make sure you edit the docker tags section of this release
1716
- Update the "Pull Request for this release section", change the text and the URLs for all PR and bug fixes
1817

1918
1. **Ensure release passes Test**
2019
- `gradle :firefly:test`
2120

2221
1. **Commit, Tag**
23-
- commit you changes - _example message:_ "Release 2020.1.0: document updates"
22+
- commit your changes - _example message:_ "Release 2020.1.0: document updates"
2423
- tag the `rc-yyyy.m` branch with the release `release-yyyy.m.r`
2524
- _example:_
2625
- the second release from branch `rc-2020.2` with the git tagged with `release-2020.2.1`

docs/release-notes.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# Releases
88

99
### Version 2020.3
10-
- October 2020
11-
- 2020.3.1
12-
- docker tag: `latest`, `release-2020.3.1`
10+
- 2020.3.2 (December 2020)
11+
- docker tag: `latest`, `release-2020.3.2`, `release-2020.3`
12+
- 2020.3.1 (October 2020)
13+
- docker tag: `release-2020.3.1`
1314
- patch #1 (see [patches](#patches-20203))
14-
- 2020.3.0
15+
- 2020.3.0 (October 2020)
1516
- docker tag: `release-2020.3.0`
1617
- original release
1718

18-
##### _Notes_
19+
### _Notes_
1920
- This release contains many bugs fixes and focuses on stability
2021
- Less lines of source than last release
2122
- Some significant table updates
@@ -34,6 +35,10 @@
3435
- Predefined Cell renders ([Firefly-574](https://github.com/Caltech-IPAC/firefly/pull/1015))
3536

3637
##### _Patches 2020.3_
38+
- 2020.3.2
39+
- Fixed: regression bug with [Firefly-523](https://github.com/Caltech-IPAC/firefly/pull/955)
40+
- Fixed: small logging cleanup fix
41+
- Fixed: for coverage, gridOn option not working for HiPS
3742
- 2020.3.1
3843
- Docker startup simplified when mapping directories ([Simplfy Docker file](https://github.com/Caltech-IPAC/firefly/pull/1038))
3944
- Many small bug fixes and regression issues:

src/firefly/java/edu/caltech/ipac/firefly/server/ServerContext.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ public static void configInit() {
214214
File f= new File(getSharedWorkingDir(), FileUtil.getHostname()+"."+ACCESS_TEST_EXT);
215215
if (f.canWrite()) f.delete();
216216
f.createNewFile();
217+
f.deleteOnExit();
217218
} catch (IOException e) {
218219
Logger.error("Could not create a test file in "+ getSharedWorkingDir().toString());
219220
}

src/firefly/js/visualize/task/PlotImageTask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ export function addDrawLayers(request, pv, plot) {
413413
});
414414

415415

416-
if (request.getGridOn()!==GridOnStatus.FALSE && isImage(plot)) {
416+
if (request.getGridOn()!==GridOnStatus.FALSE) {
417417
const dl = getDrawLayerByType(dlRoot(), WebGrid.TYPE_ID);
418418
const useLabels= request.getGridOn()===GridOnStatus.TRUE;
419419
if (!dl) dispatchCreateDrawLayer(WebGrid.TYPE_ID, {useLabels});

0 commit comments

Comments
 (0)