Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-gspread for openSUSE:Factory checked in at 2022-12-08 16:51:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-gspread (Old) and /work/SRC/openSUSE:Factory/.python-gspread.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-gspread" Thu Dec 8 16:51:01 2022 rev:11 rq:1041206 version:5.7.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-gspread/python-gspread.changes 2022-12-04 14:59:23.288627617 +0100 +++ /work/SRC/openSUSE:Factory/.python-gspread.new.1835/python-gspread.changes 2022-12-08 16:51:23.811547868 +0100 @@ -1,0 +2,6 @@ +Wed Dec 7 18:50:32 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to version 5.7.2 + * Fix: hidden property might not be set from the API by @lavigne958 in #1151 + +------------------------------------------------------------------- Old: ---- v5.7.1.tar.gz New: ---- v5.7.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-gspread.spec ++++++ --- /var/tmp/diff_new_pack.3DVA3M/_old 2022-12-08 16:51:24.251550119 +0100 +++ /var/tmp/diff_new_pack.3DVA3M/_new 2022-12-08 16:51:24.255550139 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-gspread -Version: 5.7.1 +Version: 5.7.2 Release: 0 Summary: Google Spreadsheets Python API License: MIT ++++++ v5.7.1.tar.gz -> v5.7.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gspread-5.7.1/.github/workflows/main.yaml new/gspread-5.7.2/.github/workflows/main.yaml --- old/gspread-5.7.1/.github/workflows/main.yaml 2022-11-17 00:38:55.000000000 +0100 +++ new/gspread-5.7.2/.github/workflows/main.yaml 2022-12-03 00:09:09.000000000 +0100 @@ -29,6 +29,6 @@ - run: tox -e py - run: mypy --ignore-missing-imports . || true # Need Python >= 3.6 - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus - - run: safety check + - run: safety check -i 51457 - run: tox -e build - run: tox -e doc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gspread-5.7.1/HISTORY.rst new/gspread-5.7.2/HISTORY.rst --- old/gspread-5.7.1/HISTORY.rst 2022-11-17 00:38:55.000000000 +0100 +++ new/gspread-5.7.2/HISTORY.rst 2022-12-03 00:09:09.000000000 +0100 @@ -1,7 +1,12 @@ Release History =============== +5.7.2 (2022-12-03) +------------------ +* Fix: `hidden` property might not be set from the API by @lavigne958 in https://github.com/burnash/gspread/pull/1151 + 5.7.1 (2022-11-17) +------------------ * Fix dependencies required version by @lavigne958 in https://github.com/burnash/gspread/pull/1147 5.7.0 (2022-11-13) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gspread-5.7.1/gspread/__init__.py new/gspread-5.7.2/gspread/__init__.py --- old/gspread-5.7.1/gspread/__init__.py 2022-11-17 00:38:55.000000000 +0100 +++ new/gspread-5.7.2/gspread/__init__.py 2022-12-03 00:09:09.000000000 +0100 @@ -9,7 +9,7 @@ """ -__version__ = "5.7.1" +__version__ = "5.7.2" __author__ = "Anton Burnashev" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gspread-5.7.1/gspread/worksheet.py new/gspread-5.7.2/gspread/worksheet.py --- old/gspread-5.7.1/gspread/worksheet.py 2022-11-17 00:38:55.000000000 +0100 +++ new/gspread-5.7.2/gspread/worksheet.py 2022-12-03 00:09:09.000000000 +0100 @@ -144,7 +144,8 @@ @property def isSheetHidden(self): """Worksheet hidden status.""" - return self._properties["hidden"] + # if the property is not set then hidden=False + return self._properties.get("hidden", False) @property def updated(self):