From d2d48aefcaa5696653133e12ca23585c5e60341a Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 01:08:59 +0000 Subject: [PATCH 1/4] correct history version --- HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 08f511c71..1b012a9b5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ Release History =============== -5.12.1 (2023-12-04) +5.12.2 (2023-12-04) ------------------- * Many fixes for `get_records` by @alifeee in https://github.com/burnash/gspread/pull/1357 From feb7d678ea713d9139f54a77adeb12a9975ec871 Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 01:09:08 +0000 Subject: [PATCH 2/4] release 5.12.3 --- HISTORY.rst | 5 +++++ gspread/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1b012a9b5..b5da9bda9 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ Release History =============== +5.12.3 (2023-12-15) +------------------- + +* 1363 get all records retrieves a large number of empty rows after the end of the data by @alifeee in https://github.com/burnash/gspread/pull/1364 + 5.12.2 (2023-12-04) ------------------- diff --git a/gspread/__init__.py b/gspread/__init__.py index bc10317b7..16d7f8a76 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "5.12.2" +__version__ = "5.12.3" __author__ = "Anton Burnashev" From 5e541a2bfbaaaecd2a2354afb0ee0d448a63c89b Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 16:00:41 +0000 Subject: [PATCH 3/4] ignore pip security vulnerabilities see https://github.com/burnash/gspread/pull/1371#discussion_r1427445954 --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6e87c827b..55dc7bfd1 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -31,6 +31,6 @@ jobs: - run: tox -e py - run: mypy --install-types --ignore-missing-imports . || true - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus - - run: safety check -i 42559 # pip <= 20.1.1, we upgrade it just above + - run: safety check -i 42559 -i 62044 # pip <= 20.1.1, we upgrade it just above - run: tox -e build - run: tox -e doc From abfd20643cbec598b813c0a6b6913e7b9a50b7d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 10:14:22 +0000 Subject: [PATCH 4/4] Bump actions/setup-python from 4 to 5 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 55dc7bfd1..ed7b3a259 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -20,7 +20,7 @@ jobs: python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.x"] steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - run: pip install -U pip diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f3d608901..15d3e2a5a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.8" - name: Setup tox