Skip to content

Commit 2fdebea

Browse files
committed
Merge remote-tracking branch 'origin/trunk' into wpshared-remove-cocoalumberjack
2 parents ee2fe1d + fcf6ea7 commit 2fdebea

File tree

295 files changed

+9173
-2168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

295 files changed

+9173
-2168
lines changed

.buildkite/cache-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ common_params:
1313
repo: "wordpress-mobile/wordpress-ios/"
1414
# Common environment values to use with the `env` key.
1515
- &common_env
16-
IMAGE_ID: xcode-14
16+
IMAGE_ID: xcode-14.2
1717

1818
steps:
1919

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ common_params:
88
repo: "wordpress-mobile/wordpress-ios/"
99
# Common environment values to use with the `env` key.
1010
- &common_env
11-
IMAGE_ID: xcode-14
11+
IMAGE_ID: xcode-14.2
1212

1313
# This is the default pipeline – it will build and test the app
1414
steps:

.buildkite/release-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ common_params:
1010
repo: "wordpress-mobile/wordpress-ios/"
1111
# Common environment values to use with the `env` key.
1212
- &common_env
13-
IMAGE_ID: xcode-14
13+
IMAGE_ID: xcode-14.2
1414

1515
steps:
1616

.xcversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.4.1
1+
14.2

Gemfile.lock

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ GEM
8383
colored2 (3.1.2)
8484
commander (4.6.0)
8585
highline (~> 2.0.0)
86-
commonmarker (0.21.2)
87-
ruby-enum (~> 0.5)
86+
commonmarker (0.23.6)
8887
concurrent-ruby (1.1.10)
8988
cork (0.3.0)
9089
colored2 (~> 3.1)
@@ -274,7 +273,7 @@ GEM
274273
naturally (2.2.1)
275274
netrc (0.11.0)
276275
no_proxy_fix (0.1.2)
277-
nokogiri (1.13.9)
276+
nokogiri (1.13.10)
278277
mini_portile2 (~> 2.8.0)
279278
racc (~> 1.4)
280279
octokit (4.25.1)
@@ -292,7 +291,7 @@ GEM
292291
highline (>= 1.6, < 3)
293292
options (~> 2.3.0)
294293
public_suffix (4.0.7)
295-
racc (1.6.0)
294+
racc (1.6.1)
296295
rainbow (3.1.1)
297296
rake (13.0.6)
298297
rake-compiler (1.2.0)
@@ -320,8 +319,6 @@ GEM
320319
parser (>= 3.1.1.0)
321320
rubocop-rake (0.6.0)
322321
rubocop (~> 1.0)
323-
ruby-enum (0.9.0)
324-
i18n
325322
ruby-macho (2.5.1)
326323
ruby-progressbar (1.11.0)
327324
ruby2_keywords (0.0.5)

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def shared_style_pods
9191
end
9292

9393
def gutenberg_pods
94-
gutenberg tag: 'v1.86.0'
94+
gutenberg tag: 'v1.87.0'
9595
end
9696

9797
def gutenberg(options)

Podfile.lock

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

RELEASE-NOTES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
21.5
2+
-----
3+
* [***] [internal] A significant refactor to the app’s architecture was made to allow for the new simplified UI. Regression testing on the app’s main flows is needed. [#19817]
4+
* [**] [internal] Disable Story posts when Jetpack features are removed [#19823]
5+
* [*] [internal] Editor: Only register core blocks when `onlyCoreBlocks` capability is enabled [https://github.com/wordpress-mobile/gutenberg-mobile/pull/5293]
6+
* [**] [internal] Disable StockPhoto and Tenor media sources when Jetpack features are removed [#19826]
7+
18
21.4
29
-----
310
* [*] Fixed an issue where publishing Posts and Pages could fail under certain conditions. [#19717]

WordPress/Classes/Categories/Media+WPMediaAsset.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import "Media+WPMediaAsset.h"
22
#import "MediaService.h"
33
#import "Blog.h"
4-
#import "ContextManager.h"
4+
#import "CoreDataStack.h"
55
#import "WordPress-Swift.h"
66

77
@implementation Media(WPMediaAsset)

WordPress/Classes/Models/AbstractPost.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import "AbstractPost.h"
22
#import "Media.h"
3-
#import "ContextManager.h"
3+
#import "CoreDataStack.h"
44
#import "WordPress-Swift.h"
55
#import "BasePost.h"
66
@import WordPressKit;

0 commit comments

Comments
 (0)