Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Social: Fix deprecation warnings for WP 6.6 #42634

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Fixed deprecation warnings for edit-post package
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { JetpackEditorPanelLogo } from '@automattic/jetpack-shared-extension-utils/components';
import { PluginPrePublishPanel } from '@wordpress/edit-post';
import { PluginPrePublishPanel } from '@wordpress/editor';
import { __ } from '@wordpress/i18n';
import { usePostCanUseSig } from '../../../hooks/use-post-can-use-sig';
import useSocialMediaConnections from '../../../hooks/use-social-media-connections';
Expand All @@ -18,12 +18,7 @@ const PrePublishPanels = () => {
<>
<PluginPrePublishPanel
initialOpen={ hasEnabledConnections }
id="publicize-title"
title={
<span id="publicize-defaults" key="publicize-title-span">
{ __( 'Share this post', 'jetpack-publicize-components' ) }
</span>
}
title={ __( 'Share this post', 'jetpack-publicize-components' ) }
icon={ <JetpackEditorPanelLogo /> }
>
<PublicizePanel prePublish={ true }>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { JetpackEditorPanelLogo } from '@automattic/jetpack-shared-extension-utils/components';
import { useSelect } from '@wordpress/data';
import { PluginPostPublishPanel } from '@wordpress/edit-post';
import { store as editorStore } from '@wordpress/editor';
import { PluginPostPublishPanel, store as editorStore } from '@wordpress/editor';
import { __ } from '@wordpress/i18n';
import { ManualSharingInfo } from '../manual-sharing/info';
import { ShareButtons } from '../share-buttons/share-buttons';
Expand All @@ -22,7 +21,6 @@ export default function PostPublishManualSharing() {
<PluginPostPublishPanel
initialOpen
title={ __( 'Manual sharing', 'jetpack-publicize-components' ) }
id="publicize-manual-sharing"
icon={ <JetpackEditorPanelLogo /> }
>
<ManualSharingInfo className={ styles.description } variant="body-small" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getRedirectUrl } from '@automattic/jetpack-components';
import apiFetch from '@wordpress/api-fetch';
import { PluginPostPublishPanel } from '@wordpress/edit-post';
import { PluginPostPublishPanel } from '@wordpress/editor';
import { useCallback, useState } from '@wordpress/element';
import usePublicizeConfig from '../../hooks/use-publicize-config';
import { usePostStartedPublishing } from '../../hooks/use-saving-post';
Expand Down Expand Up @@ -44,7 +44,7 @@ const PostPublishReviewPrompt = () => {
}

return (
<PluginPostPublishPanel id="publicize-title">
<PluginPostPublishPanel>
<ReviewPrompt
href={ getRedirectUrl( 'jetpack-social-plugin-reviews' ) }
onClose={ handleReviewDismiss }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { useDispatch, useSelect } from '@wordpress/data';
import { PluginPostPublishPanel } from '@wordpress/edit-post';
import { store as editorStore } from '@wordpress/editor';
import { PluginPostPublishPanel, store as editorStore } from '@wordpress/editor';
import { useIsSharingPossible } from '../../hooks/use-is-sharing-possible';
import { usePostMeta } from '../../hooks/use-post-meta';
import { usePostPrePublishValue } from '../../hooks/use-post-pre-publish-value';
Expand Down Expand Up @@ -52,7 +51,7 @@ export function PostPublishShareStatus() {
}

return (
<PluginPostPublishPanel id="publicize-share-status">
<PluginPostPublishPanel>
<ShareStatus />
</PluginPostPublishPanel>
);
Expand Down
Loading