Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #2677 v11.0.3 #2678

Merged
merged 3 commits into from
Sep 8, 2023
Merged

Feature #2677 v11.0.3 #2678

merged 3 commits into from
Sep 8, 2023

Conversation

JohnHalleyGotway
Copy link
Collaborator

@JohnHalleyGotway JohnHalleyGotway commented Sep 7, 2023

Expected Differences

  • Do these changes introduce new tools, command line arguments, or configuration file options? [No]

    If yes, please describe:

  • Do these changes modify the structure of existing or add new output data types (e.g. statistic line types or NetCDF variables)? [No]

    If yes, please describe:

Pull Request Testing

  • Describe testing already performed for these changes:

    Reviewed the 11.0.3 release notes.

  • Recommend testing for the reviewer(s) to perform, including the location of input datasets, and any additional instructions:

    • Please review these 11.0.3 release notes.
    • Please advise on the Note I added about this being the last planned bugfix release for 11.0.
    • Changing the version number from 11.0.2 to 11.0.3 causes the diff step to slow down considerably. In particular, differences will be flagged in all the MTD output and SEEPS/SEEPS_MPR line types. GHA ran the night of 9/7 but failed due the volume of differences.
    • On 9/8, I manually kicked off a regression test run on seneca:
cd /d1/personal/johnhg/MET/v11.0.3
MET/internal/scripts/regression/test_regression.sh main_v11.0-ref feature_2667_v11.0.3 >& test_regression_main_v11.0-ref_vs_feature_2667_v11.0.3.log

I expect that run will be more successful in identifying diffs.

  • Do these changes include sufficient documentation updates, ensuring that no errors or warnings exist in the build of the documentation? [Yes]

  • Do these changes include sufficient testing updates? [Yes]

  • Will this PR result in changes to the test suite? [No]

    If yes, describe the new output and/or changes to the existing output:

  • Please complete this pull request review by [Fri 9/8/23].

Pull Request Checklist

See the METplus Workflow for details.

  • Review the source issue metadata (required labels, projects, and milestone).
  • Complete the PR definition above.
  • Ensure the PR title matches the feature or bugfix branch name.
  • Define the PR metadata, as permissions allow.
    Select: Reviewer(s) and Development issue
    Select: Milestone as the version that will include these changes
    Select: Coordinated METplus-X.Y Support project for bugfix releases or MET-X.Y.Z Development project for official releases
  • After submitting the PR, select the ⚙️ icon in the Development section of the right hand sidebar. Search for the issue that this PR will close and select it, if it is not already selected.
  • After the PR is approved, merge your changes. If permissions do not allow this, request that the reviewer do the merge.
  • Close the linked issue and delete your feature or bugfix branch from GitHub.

@JohnHalleyGotway JohnHalleyGotway added this to the MET 11.0.3 (bugfix) milestone Sep 7, 2023
@JohnHalleyGotway JohnHalleyGotway changed the title Per #2677, add release notes for the 11.0.3 bugfix release. Feature #2677 v11.0.3 Sep 7, 2023
@JohnHalleyGotway JohnHalleyGotway linked an issue Sep 7, 2023 that may be closed by this pull request
21 tasks
@JohnHalleyGotway
Copy link
Collaborator Author

JohnHalleyGotway commented Sep 8, 2023

Note that the GHA logic for this PR failed. While all the unit tests ran without error, the diff step never completed during to the large volume of diffs and insufficient differencing logic.

In place of this I manually ran a regression test on seneca for this PR:

cd /d1/personal/johnhg/MET/v11.0.3
MET/internal/scripts/regression/test_regression.sh main_v11.0-ref feature_2677_v11.0.3 >& test_regression_main_v11.0-ref_vs_feature_2677_v11.0.3.log&

All of the unit tests also ran there without error and the diffs are described below.

  • Differences are flagged in 14 files:
egrep -i "file1:|warning|error" test_regression_main_v11.0-ref_vs_feature_2677_v11.0.3.log | egrep -B 1 -i "warning|error" | grep file1

file1: MET-main_v11.0-ref/test_output/grid_stat/grid_stat_SEEPS_000000L_20211202_000000V_seeps.txt
file1: MET-main_v11.0-ref/test_output/grid_stat/grid_stat_SEEPS_000000L_20211202_000000V.stat
file1: MET-main_v11.0-ref/test_output/mtd/mtd_BASIC_20100517_010000V_2d.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_BASIC_20100517_010000V_3d_pair_cluster.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_BASIC_20100517_010000V_3d_pair_simple.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_BASIC_20100517_010000V_3d_single_cluster.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_BASIC_20100517_010000V_3d_single_simple.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_CONV_TIME_20100517_010000V_2d.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_CONV_TIME_20100517_010000V_3d_pair_cluster.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_CONV_TIME_20100517_010000V_3d_pair_simple.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_CONV_TIME_20100517_010000V_3d_single_cluster.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_CONV_TIME_20100517_010000V_3d_single_simple.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_SINGLE_20100517_010000V_2d.txt
file1: MET-main_v11.0-ref/test_output/mtd/mtd_SINGLE_20100517_010000V_3d_single_simple.txt

As expected, the diffs are confided to MTD and SEEPS output files. That's because the diff logic in main_v11.0 is insufficient for handling version diffs in those file types.

Spot-checking a couple of them, I can confirm the only real diffs are due to the version number changes from V11.0.2 to V11.0.3.

Copy link
Collaborator

@jprestop jprestop left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the information in this comment. It is helpful. I have reviewed the release notes, and they look good. I think that the note you added is perfect. Thanks for linking to the release support policy. I approve this request.

@JohnHalleyGotway JohnHalleyGotway merged commit 1795733 into main_v11.0 Sep 8, 2023
32 of 33 checks passed
JohnHalleyGotway pushed a commit that referenced this pull request Sep 11, 2023
Co-authored-by: MET Tools Test Account <[email protected]>
Co-authored-by: Howard Soh <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: jprestop <[email protected]>
Co-authored-by: hsoh-u <[email protected]>
Co-authored-by: George McCabe <[email protected]>
Co-authored-by: lisagoodrich <[email protected]>
Co-authored-by: Stephen Herbener <[email protected]>
fix #2389 main_v11.0 flowchart (#2391)
fix definitions of G172 and G220 based on comments in NOAA-EMC/NCEPLIBS-w3emc#157. (#2405)
fix #2380 main_v11.0 override (#2381)
fix #2408 main_v11.0 empty config (#2409)
fix #2390 main_v11.0 fix compiling hdf5 with zlib and handle NetCDF-C zip (#2403)
fix #2415 main_v11.0 modulefiles (#2416)
fix #2412 main_v11.0 climo (#2420)
fix #2426 main_v11.0 buoy (#2432)
fix #2437 main_v11.0 convert (#2438)
fix for main_v11.0, for #2437, forgot one reference to the search_parent for a dictionary lookup.
fix 2428 python from env main v11.0 (#2443)
fix 2428 python csv input (#2450)
fix #2452 main_v11.0 airnow (#2453)
fix #2402 main_v11.0 sonarqube (First PR) (#2447)
fix #2449 main_v11.0 pdf (#2465)
fix 2428 python csv input (#2467)
fix #2514 main_v11.0 clang (#2556)
fix #2575 main_v11.0 python_convert (#2577)
fix 2596 main v11.0 rpath compilation (#2600)
fix 2596 main v11.0 rpath compilation (#2613)
fix #2644 main_v11.0 percentile (#2645)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

Create the MET-11.0.3 bugfix release
2 participants