Skip to content

Commit b87de56

Browse files
authored
Merge pull request #239 from nextcloud/Rello-patch-1
exclude macOS 14 due to a XPC bug
2 parents 31de485 + 8e6c245 commit b87de56

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Response.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ private function getLegacyChannel(): ?string {
138138
}
139139

140140
// macOS 11/12 — not compatible with Qt6.10 (required by current stable)
141-
if ($this->platform === "macos" && version_compare($this->osVersion, "13") == -1) {
141+
// we also exclude macOS 14 for the moment due to an XPC error
142+
if ($this->platform === "macos" && version_compare($this->osVersion, "14") == -1) {
142143
return 'stable-qt6.9';
143144
}
144145

tests/unit/ResponseTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -858,13 +858,13 @@ public function updateDataProvider(): array
858858
</channel>
859859
</rss>'
860860
],
861-
// #40 macOS 13 — not legacy, gets regular stable via sparkle
861+
// #40 macOS 14 — not legacy, gets regular stable via sparkle
862862
[
863863
'nextcloud',
864864
'macos',
865865
'1.9.0',
866866
'',
867-
'13.0',
867+
'14.0',
868868
'22.00.00',
869869
'stable',
870870
true,
@@ -885,13 +885,13 @@ public function updateDataProvider(): array
885885
</channel>
886886
</rss>'
887887
],
888-
// #41 macOS 13 — not legacy, gets regular beta via sparkle
888+
// #41 macOS 14 — not legacy, gets regular beta via sparkle
889889
[
890890
'nextcloud',
891891
'macos',
892892
'2.2.2-rc1',
893893
'',
894-
'13.0',
894+
'14.0',
895895
'22.00.00',
896896
'beta',
897897
true,

0 commit comments

Comments
 (0)