From d26aa0a8deb4671f5342ea53797d88b4e29b049e Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Tue, 6 Jan 2026 12:25:35 +0530 Subject: [PATCH] 1) Added --no-cache-dir for OSX while installing requirements.txt 2) Updated release note. --- docs/en_US/release_notes_9_12.rst | 7 +++++-- pkg/mac/build-functions.sh | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/en_US/release_notes_9_12.rst b/docs/en_US/release_notes_9_12.rst index 95197f93d..7303d9e05 100644 --- a/docs/en_US/release_notes_9_12.rst +++ b/docs/en_US/release_notes_9_12.rst @@ -35,9 +35,12 @@ Housekeeping Bug fixes ********* + | `Issue #8987 `_ - Fix Query Tool state restoration for new connections and queries. + | `Issue #9110 `_ - Optimize checkbox selection logic in backup dialog objects tree. | `Issue #9196 `_ - Fixed an issue where double click to open a file in the file manager is not working. | `Issue #9235 `_ - Fixed an issue where "View/Edit Data" shortcut opened "First 100 rows" instead of "All Rows". + | `Issue #9258 `_ - Ensure saved shared server passwords are re-encrypted on password change. | `Issue #9260 `_ - Fixed an issue where data filter dialog removes newline character when sending SQL to the query tool. + | `Issue #9293 `_ - Fixed the SSL certificate issue while checking for the upgrade. + | `Issue #9332 `_ - Fixed a sorting issue in the system stats memory usage table. | `Issue #9380 `_ - Fixed an issue where the Query History panel would auto-scroll to the top and did not preserve the scroll bar position for the selected entry. - - diff --git a/pkg/mac/build-functions.sh b/pkg/mac/build-functions.sh index fded441df..005a94a24 100644 --- a/pkg/mac/build-functions.sh +++ b/pkg/mac/build-functions.sh @@ -87,7 +87,7 @@ _create_python_env() { --destination "${BUNDLE_DIR}/Contents/Frameworks/" "${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/python3" -m ensurepip --upgrade || exit 1 - "${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/pip3" install -r "${SOURCE_DIR}/requirements.txt" || exit 1 + "${BUNDLE_DIR}/Contents/Frameworks/Python.framework/Versions/Current/bin/pip3" install --no-cache-dir -r "${SOURCE_DIR}/requirements.txt" || exit 1 # Make sure all the .so's in the Python env have the executable bit set # so they get properly signed later @@ -135,7 +135,7 @@ _build_docs() { # shellcheck disable=SC1091 source "${BUILD_ROOT}/venv/bin/activate" pip3 install --upgrade pip - pip3 install -r "${SOURCE_DIR}/requirements.txt" + pip3 install --no-cache-dir -r "${SOURCE_DIR}/requirements.txt" pip3 install sphinx==7.4.7 pip3 install sphinxcontrib-youtube