From bb7179c0f5dab753b9f943f263bcd58ce45b8210 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:51:53 -0700 Subject: [PATCH 1/6] point to REopt master branch --- julia_src/Manifest.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/julia_src/Manifest.toml b/julia_src/Manifest.toml index b0930d9ab..fa4843dc1 100644 --- a/julia_src/Manifest.toml +++ b/julia_src/Manifest.toml @@ -948,9 +948,11 @@ version = "1.11.0" [[deps.REopt]] deps = ["ArchGDAL", "CSV", "CoolProp", "DataFrames", "Dates", "DelimitedFiles", "HTTP", "JLD", "JSON", "JuMP", "LinDistFlow", "LinearAlgebra", "Logging", "MathOptInterface", "Requires", "Roots", "Statistics", "TestEnv"] -git-tree-sha1 = "00bb39c8f932a3320960f01adc139229c24e12b7" +git-tree-sha1 = "91b47616ee38c784c5f454e1ad4ead1b119e818f" +repo-rev = "master" +repo-url = "https://github.com/NREL/REopt.jl.git" uuid = "d36ad4e8-d74a-4f7a-ace1-eaea049febf6" -version = "0.56.2" +version = "0.57.0" [[deps.Random]] deps = ["SHA"] From 1040de20a86fe0beda5eed346625665d808cb3b2 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:24:05 -0700 Subject: [PATCH 2/6] trigger tests --- julia_src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia_src/utils.jl b/julia_src/utils.jl index a1d05ae15..1c1af3b3b 100644 --- a/julia_src/utils.jl +++ b/julia_src/utils.jl @@ -19,7 +19,7 @@ function filter_dict_to_match_struct_field_names(d::Dict, s::DataType) end end return d2 -end +end """ array_of_array_to_2D_array(aa) From 266a0a5464d1898b0b3017e14afe93e940947e34 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Fri, 13 Feb 2026 13:43:16 -0700 Subject: [PATCH 3/6] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b357f9bc..fe3b9213a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,11 @@ Classify the change according to the following categories: ##### Removed ### Patches +## juliamaster +### Minor Updates +##### Changed +- point to the master branch of REopt.jl instead of the latest registered version (temporary solution while resolving Julia Registry issues caused by REopt.jl repo url name change due to lab renaming) + ## v3.17.5 ### Minor Updates ##### Added From 0297a2e6f54072dcbaa76dd61ef1c10e080baa09 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Fri, 13 Feb 2026 18:04:38 -0700 Subject: [PATCH 4/6] Remove existing docker image before building in PR tests --- .github/workflows/pull_request_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index 92a96768b..308e16747 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -26,6 +26,8 @@ jobs: env: NREL_DEV_API_KEY: ${{ secrets.NREL_DEV_API_KEY }} run: ./.github/scripts/make_keys.py.sh + - name: Remove existing base-api-image + run: docker rmi docker.io/library/base-api-image:latest || true - name: Build containers run: docker compose up -d - name: Check running containers From 6a29eeda48ba876fd4f297dcde93c18ae18d1c55 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:05:23 -0700 Subject: [PATCH 5/6] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3b9213a..2bf7d3155 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ Classify the change according to the following categories: ##### Removed ### Patches -## juliamaster +## Develop ### Minor Updates ##### Changed - point to the master branch of REopt.jl instead of the latest registered version (temporary solution while resolving Julia Registry issues caused by REopt.jl repo url name change due to lab renaming) From 9ea8f631d90daee6403e860b0bf6e3adff3e62b5 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Mon, 16 Feb 2026 21:40:46 -0700 Subject: [PATCH 6/6] Revert "Remove existing docker image before building in PR tests" This reverts commit 0297a2e6f54072dcbaa76dd61ef1c10e080baa09. --- .github/workflows/pull_request_tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pull_request_tests.yml b/.github/workflows/pull_request_tests.yml index 308e16747..92a96768b 100644 --- a/.github/workflows/pull_request_tests.yml +++ b/.github/workflows/pull_request_tests.yml @@ -26,8 +26,6 @@ jobs: env: NREL_DEV_API_KEY: ${{ secrets.NREL_DEV_API_KEY }} run: ./.github/scripts/make_keys.py.sh - - name: Remove existing base-api-image - run: docker rmi docker.io/library/base-api-image:latest || true - name: Build containers run: docker compose up -d - name: Check running containers