Skip to content

Commit 0f43afb

Browse files
authored
Merge pull request #5433 from woocommerce/merge/8.0-code-freeze-into-develop
Merge 8.0 code freeze into develop
2 parents 7e97394 + f51b1a7 commit 0f43afb

File tree

8 files changed

+161
-56
lines changed

8 files changed

+161
-56
lines changed

Hardware/HardwareTests/AirPrintReceipt/ReceiptRendererTest.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private extension ReceiptRendererTest {
4040
amount: 1,
4141
formattedAmount: "1",
4242
currency: "USD",
43-
date: .init(),
43+
date: .init(timeIntervalSince1970: 1636970486),
4444
storeName: "Test Store",
4545
cardDetails: .init(
4646
last4: "1234",

RELEASE-NOTES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*** PLEASE FOLLOW THIS FORMAT: [<priority indicator, more stars = higher priority>] <description> [<PR URL>]
22

3+
8.1
4+
-----
5+
6+
37
8.0
48
-----
59
- [*] Product List: Add support for product filtering by category. [https://github.com/woocommerce/woocommerce-ios/pull/5388]

WooCommerce/Resources/en.lproj/Localizable.strings

Lines changed: 146 additions & 48 deletions
Large diffs are not rendered by default.

WooCommerce/Resources/release_notes.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
Some merchants had problems loading order details because of a technical issue with how field names in the REST API are ordered. We’ve made a correction that should address that for you if you were experiencing it.
1+
- [*] Product List: Add support for product filtering by category. [https://github.com/woocommerce/woocommerce-ios/pull/5388]
2+
- [***] Push notifications are now supported for all connected stores. [https://github.com/woocommerce/woocommerce-ios/pull/5299]
3+
- [*] Fix: in Settings > Switch Store, tapping "Dismiss" after selecting a different store does not switch stores anymore. [https://github.com/woocommerce/woocommerce-ios/pull/5359]
24

3-
This release contains several other fixes based on your feedback. Please continue to send us feedback – we are listening!

WooCommerce/WooCommerceUITests/Mocks/mappings/me/rest_v11_me_sites.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"method": "GET",
55
"queryParameters": {
66
"fields": {
7-
"equalTo": "ID,name,description,URL,options"
7+
"equalTo": "ID,name,description,URL,options,jetpack,jetpack_connection"
88
},
99
"options": {
1010
"equalTo": "timezone,is_wpcom_store,woocommerce_is_active,gmt_offset"
@@ -20,6 +20,8 @@
2020
"name": "Your WooCommerce Store",
2121
"description": "",
2222
"URL": "http:\/\/yourwoosite.com",
23+
"jetpack": true,
24+
"jetpack_connection": true,
2325
"options": {
2426
"timezone": "",
2527
"gmt_offset": 0,

config/Version.Public.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_SHORT=7.9
1+
VERSION_SHORT=8.0
22

33
// Public long version example: VERSION_LONG=1.2.0.0
4-
VERSION_LONG=7.9.0.1
4+
VERSION_LONG=8.0.0.0

fastlane/Deliverfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ app_identifier 'com.automattic.woocommerce'
1313
screenshots_path './fastlane/promo_screenshots/'
1414

1515
# Make sure to update these keys for a new version
16-
app_version "7.9"
16+
app_version "8.0"
1717

1818
team_id '299112'
1919

fastlane/download_metadata.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import Foundation
44

55
let glotPressSubtitleKey = "app_store_subtitle"
6-
let glotPressWhatsNewKey = "v7.9-whats-new"
6+
let glotPressWhatsNewKey = "v8.0-whats-new"
77
let glotPressDescriptionKey = "app_store_desc"
88
let glotPressKeywordsKey = "app_store_keywords"
99
let glotPressPromoTextKey = "app_store_promo_text"

0 commit comments

Comments
 (0)