From 7715c1462a917c657d4022a4fe5b57d41d77055a Mon Sep 17 00:00:00 2001 From: xuri Date: Sat, 27 Apr 2024 20:13:43 +0800 Subject: [PATCH] This closes #1886, remove the namespace prefix for the default spreadsheet namespace - Improvement compatibility for the workbook internal part with a spreadsheet namespace prefix - Update GitHub Action configuration, using the macOS 13 in the unit test pipeline to temporarily resolve test failed in macos-14-arm64 --- .github/workflows/go.yml | 2 +- lib.go | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c56feda..c7eb187 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: go-version: [1.18.x, 1.19.x, 1.20.x, '>=1.21.1', 1.22.x] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, windows-latest] targetplatform: [x86, x64] runs-on: ${{ matrix.os }} diff --git a/lib.go b/lib.go index bfa992e..420f69a 100644 --- a/lib.go +++ b/lib.go @@ -646,6 +646,11 @@ func getRootElement(d *xml.Decoder) []xml.Attr { case xml.StartElement: tokenIdx++ if tokenIdx == 1 { + for i := 0; i < len(startElement.Attr); i++ { + if startElement.Attr[i].Value == NameSpaceSpreadSheet.Value { + startElement.Attr[i] = NameSpaceSpreadSheet + } + } return startElement.Attr } } -- GitLab