Skip to content

Commit

Permalink
Merge branch 'trunk' into add/wp-data-sync-package
Browse files Browse the repository at this point in the history
  • Loading branch information
manzoorwanijk committed Oct 25, 2024
2 parents 38b7cfb + c2b7dc0 commit a154739
Show file tree
Hide file tree
Showing 105 changed files with 502 additions and 284 deletions.
2 changes: 1 addition & 1 deletion .github/versions.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Versions of tools to use in CI.
PHP_VERSION=8.2
COMPOSER_VERSION=2.7.7
NODE_VERSION=20.8.1
NODE_VERSION=22.9.0
PNPM_VERSION=9.3.0

# Other useful version numbers.
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.8.1
22.9.0
8 changes: 4 additions & 4 deletions .phan/stubs/wpcom-stubs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* `bin/teamcity-builds/jetpack-stubs/stub-defs.php` and regenerate the stubs
* by triggering the Jetpack Staging → Update WPCOM Stubs job in TeamCity.
*
* Stubs automatically generated from WordPress.com commit 2ed424b4493f3450b67bb248706d6e29170e6042.
* Stubs automatically generated from WordPress.com commit 4fd96546151f08483e92c0807b89830093fc1aee.
*/

namespace {
Expand Down Expand Up @@ -548,7 +548,7 @@ function is_automattic($blog_id = \null)
{
}
/**
* @param int|null $blog_id
* @param int|string|null $blog_id
* @return bool
*/
function wpcom_is_automattic_p2_site($blog_id = \null)
Expand Down Expand Up @@ -716,7 +716,7 @@ function is_simple_site_redirect($blog_id = 0)
}
class Subscription_Mailer extends \WordPressMailer
{
public function __construct(\Blog_Subscriber $subscriber, $use_wp = \true)
public function __construct(\Blog_Subscriber $subscriber, $use_wp = \true, $locale_type = self::USER_LOCALE)
{
}
/**
Expand Down Expand Up @@ -1058,7 +1058,7 @@ function wpcom_fetch_subs_counts($include_paid_subscribers = \false)
function wpcom_is_child_theme()
{
}
function queue_publish_post($post_id, $post = \null)
function queue_publish_post($post_id, $post = \null, $old_post_status = \null)
{
}
/**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"jetpack-js-tools": "workspace:*"
},
"engines": {
"node": "^20.8.1",
"pnpm": "^9.3.0"
"node": "^22.9.0",
"pnpm": "^9.3.0 <9.12.0"
}
}
117 changes: 91 additions & 26 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Fixed Bsky conneciton management profile name
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: changed
Comment: Initial state: Removed unused hasPaidPlan flag


Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function ConnectionName( { connection }: ConnectionNameProps ) {
</span>
) : (
<ExternalLink className={ styles[ 'profile-link' ] } href={ connection.profile_link }>
{ connection.display_name || connection.external_display }
{ connection.display_name || connection.external_display || connection.external_name }
</ExternalLink>
) }
{ isUpdating ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ export default function usePublicizeConfig() {
*/
const hidePublicizeFeature = isPostPublished && ! isRePublicizeFeatureAvailable;

/**
* hasPaidPlan:
* Whether the site has a paid plan. This could be either the Basic or the Advanced plan.
*/
const hasPaidPlan = !! getJetpackData()?.social?.hasPaidPlan;

/**\
* Returns true if the post type is a Jetpack Social Note.
*/
Expand All @@ -102,7 +96,6 @@ export default function usePublicizeConfig() {
isRePublicizeUpgradableViaUpsell,
hidePublicizeFeature,
isPostAlreadyShared,
hasPaidPlan,
isSocialImageGeneratorAvailable:
!! getJetpackData()?.social?.isSocialImageGeneratorAvailable && ! isJetpackSocialNote,
isSocialImageGeneratorEnabled: !! getJetpackData()?.social?.isSocialImageGeneratorEnabled,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const reducer = combineReducers( {
jetpackSettings,
socialImageGeneratorSettings,
shareStatus,
hasPaidPlan: ( state = false ) => state,
} );

export default reducer;
Loading

0 comments on commit a154739

Please sign in to comment.