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

[RNMobile] Stop saving HTML markup representation #30134

Merged
merged 4 commits into from
Apr 18, 2023
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

VideoPress block: Stop saving HTML markup representation.
2 changes: 1 addition & 1 deletion projects/packages/videopress/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-videopress",
"version": "0.13.8",
"version": "0.13.9-alpha",
"description": "VideoPress package",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/videopress/#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion projects/packages/videopress/src/class-package-version.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* The Package_Version class.
*/
class Package_Version {
const PACKAGE_VERSION = '0.13.8';
const PACKAGE_VERSION = '0.13.9-alpha';

const PACKAGE_SLUG = 'videopress';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { registerBlockType } from '@wordpress/blocks';
*/
import metadata from './block.json';
import { VideoPressIcon as icon } from './components/icons';
import deprecated from './deprecated';
import Edit from './edit';
import save from './save';
import transforms from './transforms';
import './style.scss';

Expand All @@ -35,10 +35,11 @@ export default function registerVideoPressBlock() {
const result = registerBlockType( name, {
edit: Edit,
title,
save,
save: () => null,
icon,
attributes,
transforms,
deprecated,
} );

// eslint-disable-next-line no-console
Expand Down