-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreadme.txt
1346 lines (1092 loc) · 94.2 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== PublishPress Revisions: Duplicate Posts, Submit, Approve and Schedule Content Changes ===
Contributors: publishpress, kevinB, stevejburge, andergmartins
Author: PublishPress
Author URI: https://publishpress.com
Tags: revision, submit changes, duplicate post, approve changes, scheduled changes
Requires at least: 5.5
Requires PHP: 7.2.5
Tested up to: 6.7
Stable tag: 3.5.16
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Control how published content is updated. Users can duplicate posts and submit changes. Then editors can approve, reject or schedule those changes.
== Description ==
PublishPress Revisions is the ultimate tool for making content changes. Users get a safe space to work on content updates. When the changes are ready, they can ask for approval to publish the update. Administrators can approve or reject the changes. They can also schedule them to go live in the future.
Your users can update posts using the normal WordPress editor, but their changes will not be published automatically. Instead, the changes are stored in a "Revision Queue". The changes can be approved, rejected or scheduled. PublishPress Revisions works with the familiar WordPress interface, including Gutenberg and the Classic Editor.
## PublishPress Revisions Pro ##
> <strong>Upgrade to Revisions Pro</strong><br />
> This plugin is the free version of the Revisions Pro plugin. The Free version of PublishPress Revisions supports the WordPress core. The Pro version of PublishPress Revisions supports ACF, Yoast SEO, PODS, WooCommerce, WPML, Elementor, Beaver Builder, and many more plugins and themes. <a href="https://publishpress.com/revisions" title="Revisions Pro">Click here to purchase the best premium WordPress content update plugin now!</a>
## Submit Change Requests for Posts ####
PublishPress Revisions allows your users to submit change requests for published posts. Your users can update posts using the normal WordPress editor, but their changes will not be published automatically. Instead, the changes are stored as a "pending revision" that can be approved or rejected.
[Click here to see how to submit revisions](https://publishpress.com/knowledge-base/revisions-start/).
## Schedule Future Updates to Posts ##
PublishPress Revisions allows you to schedule WordPress revisions to be published in the future. When you're editing a published post, all you need to do is select a future date and click "Schedule Revision". Your changes will be published at the specified time.
[Click here to see how to schedule revisions](https://publishpress.com/knowledge-base/schedule-revisions-future/).
## Manage and Moderate Changes to Content ##
After you create a revision with PublishPress Revisions, you can find that revision on the Revision Queue screen. This screen shows you all the revisions that have been submitted for approval. Underneath each duplicate post you can choose from several moderation tools: Edit, Delete, Preview and Compare.
[Click here to see how to manage and moderate revisions](https://publishpress.com/knowledge-base/schedule-or-publish-revisions/).
## Compare Current and Former Versions ##
Pending and Scheduled Revisions can include changes to post content, categories, tags, featured image, page parent and other options. Each of these changes can be reviewed in the familiar Compare Revisions interface.
[Click here to see how to compare revisions](https://publishpress.com/knowledge-base/compare-revisions/).
## Frontend Moderation of Content Changes ##
It is possible to preview and moderate revisions via the frontend of your WordPress site. If you click Preview for a pending revision, you'll see a toolbar across the frontend of the site. This toolbar will change color so you can easily know the status of the revision. For example, if you're looking at a pending revision, the toolbar will be green. For scheduled revisions, the toolbar will be grey.
[Click here to see how to manage from the frontend of your site](https://publishpress.com/knowledge-base/publishing-revisions-frontend/).
## Email Notifications for Revisions ##
PublishPress Revisions will notify Administrators and Editors when a new revision is submitted. They can log in to preview, compare and approve the changes. PublishPress Revisions can also send emails for revision approval and publication. The Settings screen lets you disable unwanted notifications.
[Click here for more on revision notifications](https://publishpress.com/knowledge-base/emails-revisionary/).
## Additional Plugins Supported in the Pro Version ##
Page builder / front end editing integrations:
* BeaverBuilder integration
* Divi Theme, Divi Builder integration
* Elementor integration
Major plugins we maintain compatibility with:
* Advanced Custom Fields
* Pods
* WPML
* The Events Calendar
* WooCommerce
* Yoast SEO
[Click here for the full list of supported plugins in the Pro version](https://publishpress.com/knowledge-base/plugins-revisions-support/).
## You Can Set Very Detailed Revision Permissions ##
PublishPress Revisions works with the default WordPress user roles, and also introduces a Revisor role:
* Contributors can submit revisions to their own published posts.
* Revisors can submit revisions to posts and pages published by others.
* Authors, Editors and Administrators can approve revisions or schedule their own revisions.
To schedule changes to a published post, just set the desired future date before hitting Update.
By upgrading to Revisions Pro, you also gain advanced permissions control through the PublishPress Permissions Pro plugin. You can customize permissions by role or per-user, granting full editing or revision submission rights to specific posts, categories, or taxonomy terms.
[Click here for more on revision permissions](https://publishpress.com/knowledge-base/permissions-revisions).
## Join PublishPress and get the Pro plugins ##
The Pro versions of the PublishPress plugins are well worth your investment. The Pro versions have extra features and faster support. [Click here to join PublishPress](https://publishpress.com/pricing/).
Join PublishPress and you'll get access to these nine Pro plugins:
* [PublishPress Authors Pro](https://publishpress.com/authors) allows you to add multiple authors and guest authors to WordPress posts.
* [PublishPress Blocks Pro](https://publishpress.com/blocks) has everything you need to build professional websites with the WordPress block editor.
* [PublishPress Capabilities Pro](https://publishpress.com/capabilities) is the plugin to manage your WordPress user roles, permissions, and capabilities.
* [PublishPress Checklists Pro](https://publishpress.com/checklists) enables you to define tasks that must be completed before content is published.
* [PublishPress Future Pro](https://publishpress.com/future) is the plugin for scheduling changes to your posts.
* [PublishPress Permissions Pro](https://publishpress.com/permissions) is the plugin for advanced WordPress permissions.
* [PublishPress Planner Pro](https://publishpress.com/publishpress) is the plugin for managing and scheduling WordPress content.
* [PublishPress Revisions Pro](https://publishpress.com/revisions) allows you to update your published pages with teamwork and precision.
* [PublishPress Series Pro](https://publishpress.com/series) enables you to group content together into a series
Together, these plugins are a suite of powerful publishing tools for WordPress. If you need to create a professional workflow in WordPress, with moderation, revisions, permissions and more... then you should try PublishPress.
## Bug Reports ##
Bug reports for PublishPress Revisions are welcomed in our [repository on GitHub](https://github.com/publishpress/publishpress-revisions). Please note that GitHub is not a support forum, and that issues that aren't properly qualified as bugs will be closed.
## Follow the PublishPress team ##
Follow PublishPress on [Facebook](https://www.facebook.com/publishpress), [Twitter](https://www.twitter.com/publishpresscom) and [YouTube](https://www.youtube.com/publishpress)
== Screenshots ==
1. Schedule Revisions: PublishPress Revisions allows you to schedule WordPress revisions to be published in the future.
2. Control Revision Permissions: PublishPress Revisions allows you to control which users are able to submit revisions to published posts.
3. Submit Revisions: PublishPress Revisions enables you to submit change requests for published posts.
4. Preview and Compare Revisions: Every requested change can be reviewed in the normal "Compare Revisions" interface in WordPress.
5. Manage and Moderate Revisions: PublishPress Revisions has a Revision Queue screen where you can search, approve, or deny changes to a published post's content.
6. Email Notifications for Revisions: Administrators and Editors are notified by email when a new revision is submitted. PublishPress Revisions can also send emails for revision approval and publication.
7. Support for Plugins: Revisions Pro adds support for the plugins such as Yoast SEO, WooCommrce and Advanced Custom Fields.
8. Divi, Beaver Builder Integration: With Revisions Pro, your Contributors and Revisors will be able to submit revisions to published content using the front end editor of the Divi theme or Beaver Builder plugin.
9. WPML Integration: With Revisions Pro, pending and scheduled revisions work in multi-language sites controlled by the WPML plugin.
10. Advanced Permissions: By upgrading to Revisions Pro, you also gain advanced permissions control through Permissions Pro. Customize permissions by role or per-user.
== Frequently Asked Questions ==
= How do I duplicate pages or other post types? =
PublishPress Revisions can duplicate pages and any other post types. For example, to duplicate pages, go to the "Pages" screen in WordPress and click "New Revision" next to any page. You will be taken to a duplicate page that you can edit and save to the Revision Queue.
= How do I duplicate WooCommerce products? =
WooCommerce is the most popular way to build a WordPress eCommerce site. With PublishPress Revisions Pro you can submit, moderate, approve and schedule revisions to your WooCommerce products.
When you are on the "Products" screen, click the "New Revision" link. Inside the product revision, the PublishPress buttons will appear in the top-right corner. When you save the product, it will appear on the main "Revision Queue" screen.
It is possible to schedule updates to WooCommerce products.
- While updating an post or page created created with Elementor, click "Immediately" in the right sidebar.
- Choose the new date for these changes to go live.
- Click the "Update Revision" button.
All key WooCommerce fields are supported by PublishPress Revisions Pro. If you are using 3rd party WooCommerce plugins, we do recommend testing their compatibility with WordPress revisions and PublishPress Revisions Pro.
[Click here for more on duplicate WooCommerce products](https://publishpress.com/knowledge-base/permissions-revisions).
= How do I duplicate Elementor pages and posts? =
PublishPress Revisions Pro has support for the Elementor plugin.
Here's how to use PublishPress Revisions and Elementor together:
- Find and a published post or page that was created with Elementor.
- You will see a "New revision" link.
- On the next screen, you can click "Edit with Elementor" to make changes.
- You can use "Submit Revision" in the right sidebar to submit your changes.
- In the WordPress admin area, you can go to visit the "Revision Queue" screen and you will see the submitted revision of your Elementor page. It will be waiting for your approval.
It is possible to schedule content updates to Elementor posts.
- While updating an post or page created created with Elementor, click "Immediately" in the right sidebar.
- Choose the new date for these changes to go live.
- Click the "Update Revision" button.
[Click here for more on duplicate Elementor posts (https://publishpress.com/knowledge-base/publishpress-revisions-elementor/).
= How do I duplicate The Events Calendar events? =
The Events Calendar plugin is one the most popular ways to create and list events in WordPress. PublishPress Revisions Pro and The Events Calendar work together successfully.
- Make sure you are using the Gutenberg option for creating events.
- After installing PublishPress Revisions Pro, you will be able to submit revisions to events using the New Revision option on the main Events screen.
- You will see the normal Event screen, but with additional PublishPress Revisions button in the top-right corner.
- Your event revisions will appear in the "Revision Queue".
- You will not be able to use the "Compare" link because The Events Calendar does not support that WordPress feature yet. However, all the other key features of PublishPress Revisions Pro will work. For example, PublishPress Revisions Pro will record changes to all your event fields and settings.
[Click here for more on duplicate The Events Calendar events (https://publishpress.com/knowledge-base/revisions-events-calendar/).
= How do I duplicate posts with Advanced Custom Fields? =
PublishPress Revisions Pro has support for the Advanced Custom Fields (ACF) plugin. You can schedule, moderate and approve revisions for content that uses ACF.
- To create a revision for post that use ACF, click on the "New Revision" link.
- Go to the "Revision Queue".
- Click "Edit" and you can update the revision, including the ACF fields.
- Click "Compare" and you can see what's changed in this revision. The "Compare" screen will show you any changes that have happened with ACF Fields.
[Click here for more on duplicate posts with Advanced Custom Fields (https://publishpress.com/knowledge-base/revisionary-acf/).
= How do I duplicate posts with WPML? =
PublishPress Revisions Pro has support for the WPML plugin. For example, you can create revisions for a post in English and create separate revisions for the Spanish translation of that post.
- Go to your "Posts" screen.
- Click "New Revisions" and you can create a translated version of your content in any language.
[Click here for more on duplicate posts with WPML (https://publishpress.com/knowledge-base/revisionary-wpml/).
= How do I duplicate posts with Yoast SEO? =
Yoast SEO is the most popular SEO plugin in WordPress. With PublishPress Revisions Pro you can submit, moderate, approve and schedule revisions to your WordPress posts, and they will keep all your SEO data.
In the image below, you can Yoast SEO data. With PublishPress Revisions Pro you enter this data and it will be saved throughout the revision approval process.
[Click here for more on duplicate posts with Yoast SEO (https://publishpress.com/knowledge-base/revisions-yoast-seo/).
= How do I duplicate posts with Beaver Builder? =
PublishPress Revisions Pro has support for the Beaver Builder plugin. Here's how to use PublishPress Revisions Pro and Beaver Builder together:
- In your WordPress admin area, click "New Revision" for a post or page that uses Beaver Builder.
- On the next screen, you will be able to click "Launch Beaver Builder" and create a new version of this post.
- Click "Submit Revision" to submit your updates.
- In the WordPress admin area, you can visit the "Revision Queue" screen and you will see the submitted revision of your Beaver Builder page. It will be waiting for your approval.
It is also possible to schedule revisions to Beaver Builder content.
- When you're editing a revision, click "Immediately".
- Choose the date you want your post changes to go live.
- Click the "Submit Revision" button.
[Click here for more on duplicate posts with Beaver Builder (https://publishpress.com/knowledge-base/revisionary-beaver-builder/).
= How do I duplicate posts with Divi Theme and Builder? =
Divi is one of the most popular page-builders in WordPress, and it does integrate with PublishPress Revisions Pro. It is possible for lower-level users to edit a page with Divi and submit an update for approval. This workflow will apply to anyone with the correct permissions to submit revisions.
- In your WordPress admin area, click "New Revision" for a post or page that uses Divi.
- You will see the normal editing layout in Divi, with the PublishPress Revisions buttons in the top toolbar and right sidebar. Click "Edit With The Divi Builder" to make content changes.
[Click here for more on duplicate posts with Divi (https://publishpress.com/knowledge-base/divi-theme/).
== Upgrade Notice ==
= 3.5.16 =
Fixed: Security issue. Please update.
== Changelog ==
= 3.5.16 - 19 Nov 2024 =
* Security : Under some plugin configurations, Revisors could view other users' revisions (draft, submitted or scheduled) inappropriately
* Fixed : Revision read capabilities did not limit slider positions on Compare Revisions screen
* Fixed : WP 6.7 - Avoid early loading of plugin textdomain under some conditions
= 3.5.15 - 8 Oct 2024 =
* Fixed : Editing a post did not refresh its "Has Revisions" flag
* Change : Setting to work around cache plugin conflicts by refreshing "Has Revisions" flag before suppressing a "New Revision" link on Posts / Pages screen
* Change : Hardened security within wp-admin by adding a few missing nonce checks and output escapes
* Change : PHP Code Sniffer rule compliance - flagged false positives for meaningful pre-release scans
= 3.5.14 - 26 Sep 2024 =
* Fixed : New Revision link on Posts screen failed due to plugin conflict on some sites
* Change : New setting (with disclaimer) to disable new unfiltered_html check. Useful on sites where any custom html is unintended and can be stripped out.
= 3.5.13 - 26 Sep 2024 =
* Fixed : Revision creation by a user with default Revisor capabilities caused custom html tags to be stripped out of post content. Now prevent revision, requiring unfiltered_html capability.
* Fixed : Classic Editor - Revisors editing a revision could not select a future date
* Fixed : Revision approval in "Publish by Revision" mode caused page to be published without a URL
* Fixed : Revision History - PHP Warning for preg_replace parameter
* Fixed : Link Whisper plugin postmeta data caused fatal error on revision creation
* Fixed : Duplicate revision creation on some sites
* Change : When user clicks into a custom field in Post / Revision editor, disable Submit / Approve / Schedule Revision button until changes are saved
= 3.5.12 - unreleased =
* Fixed : Classic Editor - Schedule Revision / New Revision button captioning did not account for time zone difference between server and site
* Fixed : Notifications were not sent for auto-submitted revisions
* Fixed : Fatal error if function rvy_revision_statuses() or rvy_revision_base_statuses() is called with non-standard arguments by third party code
= 3.5.11 - 26 Jun 2024 =
* Compat : PublishPress Permissions - Revision Queue listed some editable posts without edit link
* API : Filter revisionary_mail supports headers customization
= 3.5.10 - 18 Jun 2024 =
* Fixed : With plugin option to limit to one revision per post, revision submission could be inappropriately blocked under some conditions
* Fixed : Edit Revision screen - Delete Revision button functions incorrectly after toggling from Block panel back to publishing panel
* Fixed : Non-Administrators could not decline revisions
* Fixed : Block / Classic Editor usage was not correctly detected under some conditions
* Fixed : Post Editor - "Schedule Revision" button captioning following date selection did not account for time zone difference between site and editing user
* Fixed : Post Editor - "Schedule Revision" button captioning following date selection was not applied with recent Gutenberg versions
* Compat : Gutenberg 18.5 - Revision UI was not correctly displayed for revision edit
* Compat : Disable Gutenberg - Classic Editor mode was not detected under some configurations
* Compat : WooCommerce - After revision creation in post editor, preview button redirected to dashboard
* Compat : WP Rocket - Clean post cache on revision publication
* API : New action hook to support custom columns in Revision Queue table
* Lang : Removed obsolete German translation, which caused errors on some pages
= 3.5.9 - 7 May 2024 =
* Fixed : After new revision creation in post editor, View / Edit links fail with PHP warnings on some installations
* Fixed : Classic Editor - When editing a published post, future date selection followed by "Schedule Revision" button click failed to schedule revision
* Fixed : Classic Editor (Revision) - Changing Category, Tag, Featured Image or other Meta box did not disable Approve button
* Fixed : Classic Editor (Revision) - Changing or removing Featured Image did not disable Submit, Approve button
* Fixed : Revision Queue: Decline link nonce failure ("link expired")
* Fixed : PHP Warning on revision submission if published page is the child of a parent that has been trashed
* Compat : PublishPress Authors - Revisors could not submit revisions correctly if role has ppma_edit_post_authors capability
* Compat : PublishPress Permissions - API to apply Specific Permissions to Revision Queue listing
* Lang : Various plugin settings captions and one error message were not translated
= 3.5.8.2 - 25 Apr 2024 =
* Fixed : Nonce failure on revision decline attempts
* Fixed : Saving with a future date in Classic Editor saves post as Published instead of Scheduled, under some conditions
* Fixed : With Limit to One Revision option enabled, approving a revision caused a fatal error, under some conditions
* Fixed : Revision Queue - If multiple bulk actions are applied, confirmation notice from previous actions is repeated
* Compat : Some plugins conflicted with Edit / Preview links for newly created revision
* Compat : Nested Pages - Fatal error on bulk deletion of revisions
= 3.5.8.1 - 16 Apr 2024 =
* Fixed : If limiting to one active revision per post, deleting a revision before saving it did not restore creation ability on some sites
= 3.5.8 - 12 Apr 2024 =
* Fixed : Revision Editor hid category selection checkboxes
* Fixed : New Revision button was missing from Revision Editor sidebar
* Fixed : Revision Editor did not display Preview Revision button
* Fixed : Revision Preview top bar styling broken by external CSS on some sites
* Fixed : Revision Preview top bar styling stuck in cache on some sites
* Fixed : If limiting to one active revision per post, deleting that revision did not restore ability to create a new one
* Fixed : Revision Queue - Bulk Decline failed with "link expired" message
* Fixed : New revisions could become orphaned from main post on WordPress VIP
= 3.5.7 - 4 Apr 2024 =
* Compat : WordPress 6.5 - Revision editor sidebar did not display date, template UI
* Feature : Decline link in Revision Queue row, Revision Preview top bar
* Fixed : Preview of front page revision was not displayed correctly
* Fixed : Previews of archived revisions did not display custom fields, multiple authors
* Fixed : Revision preview styling broke third party javascript on some installations
* Fixed : Classic Editor - Custom Fields metabox was unavailable while editing a revision
* Fixed : WP-defined revision limit (for past revisions) was not imposed when saving current content as a past revision at pending / scheduled revision publication
* Fixed : If "Limit to one active revision per post" setting is enabled, deleting a revision on a cached site did not restore ability to create a new revision to replace it
* Fixed : Possible memory leaks in javascript on Revision edit with Gutenberg editor
* API : New filter "revisionary_preview_link_type"
= 3.5.6 - 4 Jan 2024 =
* Feature : New setting Revisions > Settings > Preview > "Modify preview link for better theme compatibility". Some themes require one setting, some require the other.
* Fixed : ACF - Revision update, preview fails if ACF plugin is active
* Fixed : Edit Revision - Approve, Submit buttons missing in Gutenberg 17
* Fixed : PHP 8.2: Warning for dynamic property declaration
= 3.5.5 - 12 Dec 2023 =
* Compat : Advanced Custom Fields - Prevent invalid filtering of revision ID
* Fixed : Front page template was not loaded for revision previews of front page
* Fixed : Revision previews were not loaded correctly on some sites
* Fixed : Pagination setting on Queue, Archive screens was not stored
* Fixed : Pagination on Archive screen not applied if Revision Deletion option disabled
* Fixed : Classic Editor - Revision Status no longer displayed after changing publish time
* Fixed : Classic Editor - Modified publish time discarded if Submit / Approve clicked before Update Revision
* Fixed : Classic Editor - Revision Submit button was still (mal)functional when disabled
* Change : Classic Editor - Separate buttons to Preview changes in progress, View / Approve Saved Revision
= 3.5.4 - 17 Oct 2023 =
* Fixed : Past Revision previews did not display (since 3.5.3)
* Fixed : Scheduled Revisions were not published under some configurations
* Fixed : Custom fields with multiple values stored to the same key were not revisioned correctly
* Fixed : Improve html validation of Revisions Settings screens, possibly resolving rendering issue on some browsers
* Change : Screen Options on Revision Queue and Revision Archive to set Revisions per Page (previously used setting from Pages screen)
* Compat : PublishPress Authors - Default author setting overrides actual revision author
= 3.5.3 - 30 Aug 2023 =
* Feature : Option to enable deletion of revisions in Revision Archive
* Fixed : Category / taxonomy changes were cleared by revision preview, not applied at revision approval
* Fixed : Revision Archive included autosaves
* Fixed : PHP 8.1 - Warning for dynamic property creation in revision preview
= 3.5.2 - 17 Aug 2023 =
* Fixed : Pro - Fatal error on activation if plugin settings were not previously saved (packaging error reverted fix in 3.5.1)
* Fixed : Revision Edit - No progress caption was shown after Submit button click
* Fixed : Options screen - html markup error (missing closing div tag)
* Lang : Updated Spanish, French, Italian translations
= 3.5.1 - 11 Aug 2023 =
* Fixed : Bedrock - Unable to activate plugin due to three internal libraries missing from GitHub commit
= 3.5 - 10 Aug 2023 =
* Fixed : Unscheduling a revision using bulk edit in Revision Queue caused it to become inaccessible
* Compat : Permalink Manager plugin - Suppress permalink modification in Revision edit
* Change : Change revision deletion captions to clarify that only the revision is deleted
* Change: Modified internal vendor library structure for shorter paths (lib/vendor)
* Change: Free plugin is loaded through internal vendor library
= 3.4.1 - 29 Jun 2023 =
* Fixed : Incorrect admin menu item display if revision submission is disabled for all post types
= 3.4 - 29 Jun 2023 =
* Feature : Revision Archive screen
= 3.3 - 19 Jun 2023 =
* Feature : Revisions > Settings > Revision Creation > "Limit to one active revision per post"
* Fixed : Plugin compat - dashboard_glance_items was improperly filtered
* Fixed : Revisions were incorrectly attributed to original page author under some conditions
* Compat : Revision Queue - Work around unidentified plugin conflict inserting inappropriate clauses into our posts query
* Compat : PublishPress Authors - Author changes in revision were not applied at revision publication
* Compat : PublishPress Authors - Revision Queue "Revised By" column always showed original post author
* Compat : Permissions + WordFence - Add Media query was not filtered based on Permissions settings
* Fixed : Multisite - Some settings UI were not displayed when plugin on network installations when plugin is not activated network-wide
* Fixed : Multisite - Settings previously configured for network-wide activation were not displayed on sub-site settings screen even after network deactivation
* Change : Bump WordPress version requirement to 5.5
* Change : Bump PHP version requirement to 7.2.5
* Change : Update vendor libraries based on revised PHP version support, using new internal-vendor structure
= 3.1.13 - 30 Mar 2023 =
* Fixed : Posts screen - Has Revision caption was not displayed unless "Revision Submission for Unpublished Posts" setting is enabled
* Fixed : Settings > Notifications > "Show Notification Log / Buffer" link did not redirect back to Notifications tab
* Change : Minimum PHP version 7.2.5
= 3.1.12 - 23 Mar 2023 =
* Fixed : Posts were left with invalid "Has Revision" links after publication or deletion of all their revisions
* Fixed : If Revision Submission for Unpublished Posts is disabled but revisions of draft posts were previously created, those caused a "Has Revisions" label without displaying the revisions in Queue
* Fixed : Links to Revision Queue for a specific published post (including "Has Revision" links from Posts listing) failed to list unsubmitted revisions
* Fixed : Revision Compare > Manage : Non-rendered html tags, incorrect table formatting
* Fixed : Compare Past Revisions - invalid link on Preview / Restore button
* Fixed : Request Deletion link was displayed even if revisions are not enabled for post type
= 3.1.11 - 9 Feb 2023 =
* Fixed : Revision preview failure under some conditions
* Fixed : Avoid PHP Warning on Revision Preview if requested revision cannot be loaded
* Fixed : On Network-wide multisite activations, Settings screen displayed an unrendered html tag
* Lang : Update Spanish, French, Italian translations
= 3.1.10 - 22 Dec 2022 =
* Perf : Improve performance of post revision count, dropdown pages queries
* Fixed : Revisions were not correctly declined on some cached sites
= 3.1.9 - 15 Dec 2022 =
* Fixed : Scheduled Revisions missed by WP-Cron were not rescheduled. To disable auto-reschedule, define constant REVISIONARY_DISABLE_WP_CRON_RESTORATION
* Fixed : Revisions Queue table was missing a "check all" box
* Fixed : Fatal error on revision approval on some sites
* Compat : Relevanssi - If filtering is enabled for admin searches, Submitted / Scheduled Revisions are included in search results
* Compat : PublishPress Future - Attempted revision of post expiration settings caused unexpected behavior; disable for now
* API : Classic Editor revision editor supports filter revisionary_submit_revision_metabox_classic
= 3.1.8 - 3 Nov 2022 =
* Fixed : PHP 8 - Unresponsive elements in post editor due to Javascript loading failure
* Fixed : Avoid fatal error on plugin activation if loading sequence is non-standard
* Compat : WP Buddy Rich Snippets - PHP error "The script tried to modify a property on an incomplete object" on revision creation
= 3.1.7 - 12 Oct 2022 =
* Feature : Revision submission and approval handles author selection
* Fixed : Plugin review request dismissal was not applied
* Fixed : Gutenberg Editor - for non-English locales, future date selection did not enable Scheduled Revision creation
* Fixed : Gutenberg Editor - when editing an existing Scheduled Revision, publish date caption shows "Immediately"
* Fixed : PHP Notice "Trying to get property 'post_type' of non-object" when another plugin hooks into "use_block_editor_for_post" filter
* Lang : Update Spanish, French, Italian translations
= 3.1.6 - 31 Aug 2022 =
* Change : Support detection / indication of custom WP-Cron implementations when DISABLE_WP_CRON is set true
= 3.1.5 - 30 Aug 2022 =
* Fixed : Revision Submission from Gutenberg editor failed on some sites
* Fixed : Bulk-deleted revisions were not removed from revision count
* Fixed : PHP Warning for invalid regex if post type's REST registration or request has an invalid route string
= 3.1.4 - 17 Aug 2022 =
* Fixed : Approve Revision button in Gutenberg editor did not work
* Fixed : Submit Revision button in Gutenberg editor failed under some conditions
* Fixed : Detection of DISABLE_WP_CRON constant
* Fixed : Administrators did not receive revisions submission notifications under some configurations
* Fixed : Revision Queue column ordering / filtering links didn't work as expected in some use cases
* Fixed : When previewing a scheduled revision that has been published, "Edit" link in top bar had invalid URL
* Fixed : If Pro plugin is activated, deactivation of free plugin hides all revisions
* Compat : Yoast SEO: PHP Notices on revision creation / submission
* Lang : Update Spanish, Italian translations
= 3.1.2 - 7 Jul 2022 =
* Fixed : Filter 'use_block_editor_for_post' was not recognized in detecting block editor disable
* Fixed : Revision Edit in Gutenberg: Enable non-Editors to set requested publish date
* Fixed : Scheduled revisions were not published on some installations
* Change : Allow WP-Cron publication method to be disabled for scheduled revisions
* Feature : Option to Delete Editorial Comments on revision approval
* Feature : Option to disable revisions per post type
* Feature : Instance protection library warns about non-standard plugin folder, unnecessary free plugin activation
* Feature : Plugin review request
* Feature : Pro promo sidebar on settings screen
= 3.1.1 - 8 Jun 2022 =
* Fixed : Revision scheduling left a future date selection in editor. If the post is updated again without reloading the editor, it is unpublished until the selected date
= 3.1 - 1 Jun 2022 =
* Feature : Revision Edit - Administrators and editors have approval button for unsubmitted revisions
* Feature : Revision Queue - Bulk Edit includes "Decline" action to return "Submitted" revisions back to "Not Submitted"
* Feature : Revision Queue - New "Copy" row action
* Compat : PublishPress Permissions - fatal error loading Customizer
* Compat : PublishPress Authors - Revision submission failed
* Compat : PublishPress Permissions - Fatal error loading Customizer (also requires Permissions 3.7.6)
* Fixed : Scheduled Revisions fail on some sites
* Fixed : Editors could not manage unsubmitted revisions without manage_unsubmitted_revisions capability, even if "Additional role capability required" setting disabled
* Fixed : Non-public Post types had non-functional revision preview links, revision publication redirects
* Fixed : Edit Revision - alignment and spacing in revision status sidebar
* Fixed : Edit Revision - submit / approve buttons were re-enabled after toggle from Block to Post tab
* Fixed : Revision Queue - checkbox column did not have a "select all" box
= 3.0.16 - 20 Apr 2022 =
* Fixed : Post Editor - New Revision button was not displayed
* Lang : Some translations did not load
* Fixed : Edit Revision with Classic Editor - submit button not displayed for some custom post types
= 3.0.15 - 31 Mar 2022 =
* Fixed : Scheduled Revisions failed on WP 5.9 if WP Cron scheduling was disabled in Revisions settings
= 3.0.14 - 30 Mar 2022 =
* Fixed : Output variable escaping, other coding standard improvements
= 3.0.13 - 21 Mar 2022 =
* Fixed : Revision submission in Classic Editor caused "Undefined" link next to "Preview" link
* Fixed : New revisions created with "Auto-submit" option had wrong date (and listing order) in Revision Queue
* Fixed : PHP error on revision approval under some configurations
* Fixed : Dashboard Activity widget: Scheduled revisions were not included in Publishing Soon list
* Fixed : API: wp_after_insert_post action was not applied at revision publication
* Compat : Divi - Revision preview bar not visible on front end
* Compat : Divi - Classic Editor setting did not trigger correct Revisions UI
* Compat : Custom post types - revision submission button not displayed in some configurations
* API: New filters pp_revisions_option_pending_revision_update_post_date, pp_revisions_option_pending_revision_update_modified_date, pp_revisions_option_scheduled_revision_update_post_date, pp_revisions_option_scheduled_revision_update_modified_date
= 3.0.12 - 3 Mar 2022 =
* Feature : Edit link in post editor after revision creation / scheduling
* Change : Option to auto-submit revisions created by users who can publish the main post
* Change : Option to publish scheduled revisions using WP-Cron
* Fixed : Scheduled publication of revisions fails on WP Engine if caching enabled (fix by enabling WP Cron scheduling)
* Fixed : WP 5.9 - After editing a revision, approval button remained disabled after revision update
* Fixed : New revisions were not listed in Revision Queue or linked to Preview button under some conditions
* Fixed : Compare Revisions: error if ACF is active on a PHP 8 installation
* Fixed : Revision Queue - column headers (to set sort field) had a bad link
= 3.0.10 - 10 Feb 2022 =
* Fixed : WordPress 5.9 - When editing a submitted revision, Save button was hidden
* Fixed : Revision Compare did not load on some sites
* Fixed : Option "Editing others' revisions requires role capability" was not applied
= 3.0.9 - 27 Jan 2022
* Compat : WordPress 5.9 - Revisions could not be updated using Gutenberg editor
= 3.0.8 - 26 Jan 2022
* Compat : WordPress 5.9 - Fatal error adding / editing posts (work around WP hooking late-defined function _disable_block_editor_for_navigation_post_type)
= 3.0.7 - 5 Jan 2022 =
* Fixed : Revision status changes not updated on sites running an object cache
* Fixed : Revision deletion from within editor left an inaccessible trashed revision and redirected to Edit Posts. Now deletes revision and redirects to Revision Queue.
* Fixed : manage_unsubmitted_revisions capability was required without any hint in plugin settings; Now not required unless configured in Revisions > Settings
* Fixed : Classic Editor - Javascript error breaks plugin compatibility
* Fixed : Gutenberg Editor - Top margin for Preview button following revision submission
* Fixed : Compare screen - could not approve revisions
* Fixed : Compare screen - ampersands in user display name were displayed with html encoding
* Fixed : Revision Queue - Revisions from deactivated post types were listed with invalid Edit, Delete links and a blank Post Type
* Fixed : Compare Revisions - Preview / Restore button for past revisions linked back to Compare screen
* Fixed : Input sanitization consistency
* Change : Revision preview top bar styling
* Compat : LifterLMS - LLMS query filters broke Revision Queue
* Compat : WPML - Database error in Revision Queue
* Fixed : Revision Queue: PHP error on bulk action under some site configurations
= 3.0.6 - 29 Nov 2021 =
* Fixed : Edit Revision - revisions could not be updated unless SCRIPT_DEBUG is enabled on the site
* Fixed : Revisions could not be scheduled if Settings > Revisions > Revision Submission is disabled
= 3.0.5 - 23 Nov 2021 =
* Fixed : Published custom post types not listed to Revisors under some configurations (Permissions integration requires Permissions 3.6.4)
* Fixed : Multisite - network-wide settings screens were non-functional
= 3.0.4 - 19 Nov 2021 =
* Fixed : New Revision button not displayed in Admin Bar
* Fixed : Revision Queue: revisions not listed in My Activity view
= 3.0.3 - 18 Nov 2021 =
* Fixed : Revisions Queue empty on sites with a large number of published posts
* Compat : WooCommerce - Hide Product Variations, Linked Products tabs when editing a Product Revision
= 3.0.2 - 15 Nov 2021 =
* Compat : PublishPress Permissions - Revisions Submission permissions did not correctly adjust Edit Posts / Pages listing in some configurations (also requires Permissions 3.6.3)
* Compat : The Events Calendar - Revisions could not be submitted in Classic Editor
* Fixed : Classic Editor - Schedule button was incorrectly displayed (leading to failed scheduling attempt) if a single time element is changed followed by OK button
* Fixed : Scheduled Revisions could not be updated in Gutenberg editor
* Fixed : Admin Bar button "New Revision" was displayed even if Submitted Revisions are disabled
* Fixed : Revision Queue: bulk deletion did not reduce revision counts
* Fixed : Duplicate page selection dropdown in Quick Edit and other instances of wp_dropdown_pages()
* Fixed : Invalid page hierarchy and broken Pages admin if a past revision that was originally submitted through the Revisions plugin is restored
* Fixed : Revision Preview was missing "Approve" button caption if revision is of an unpublished post
* Change : Revisions Settings - clarify some captions
= 3.0.1 - 10 Nov 2021 =
* Fixed : Revisions created using Revisions 2.x were not listed in Revision Queue until plugin de/re-activation
* Fixed : Front Page setting was cleared at revision submission on some sites
* Fixed : Front Page setting dropdown in Settings > Reading included revisions
* Fixed : Classic Editor : Schedule Revisions could not be submitted
* Fixed : Classic Editor : Schedule button was displayed incorrectly while selecting a future date for scheduled revision
* Compat : Gutenberg plugin - Edit Revision screen crashed on update attempt
* API: Allow redirect to be disabled on revision creation
= 3.0 - 9 Nov 2021 =
* Feature : New revision submission mechanism: create an unsubmitted revision first instead of editing existing post. Edit revision directly, then submit for scheduling or publication.
* Change : Revisions UI in Post / Revision editor
* Feature : Admin Bar includes "New Revision" button
* Change : Revision Queue filter captions
* Compat : Permissions - revise_others_posts, revise_others_pages, etc. capabilties are equivalent to list_others capabilities in allowing uneditable items to be listed
* Change : Include upload_files capability in the Revisor role
= 2.6.3 - 11 Oct 2021 =
* Fixed : Classic Editor - Error submitting a pending or scheduled revision
= 2.6.2 - 7 Oct 2021 =
* Change : Maintenance queries run at plugin activation to convert version 3.0 revisions back to 2.6 encoding
* API : Support for WPML Translation Management support in Pro version
= 2.6.1 - 15 Jul 2021 =
* Fixed : Pending / Scheduled Revisions could become disassociated from main post due to third party plugin interactions
* Compat : Permissions - Specific Permissions were not applied for editing / approval of custom post types under some conditions
* Fixed : Revision Update triggered redirect back to Revision Queue even if "Confirmation redirect on Revision Update" setting disabled
* Fixed : Users without full editing capabilities could not submit a pending revision with a future date selection
* Fixed : Revision Previews were cached on some browsers
* Fixed : Preview of front page revisions did not trigger front page template display
* Fixed : Bulk Approval of revisions failed / caused PHP Notice on some sites due to post type not being registered early enough
* Fixed : Pending Revision checkbox default selection from 'revisionary_default_pending_revision' filter application did not trigger revision submission
* Lang : Revision Queue - Remove sample English translation "My Revisionz"
= 2.6 - 23 Jun 2021 =
* Fixed : Background fatal error on some sites on revision scheduling
* Fixed : Scheduled Page Revisions - If published page has a non-default template which was not changed in the revision, the Compare and Edit Revision screens indicated a change to default template. This change was not actually applied unless the stored revision was updated prior to publication.
* Feature : Option to send notifications on Revision Update
* Feature : Option to redirect to confirmation screen after Revision Update
* Compat : Custom Permalinks plugin
* API : New filters allow submission confirmation message to be customized: revisionary_submit_message_links, revisionary_submit_message, revisionary_schedule_message_links, revisionary_schedule_message
= 2.5.5 - 26 May 2021 =
* Compat : Google Web Stories - Loss of story data due to clearance of post_content_filtered column
* Fixed : Fatal error in post editor on sites that apply filter "rest_{$post_type}_collection_params" incorrectly (Uncaught ArgumentCountError: Too few arguments to function)
* Fixed : PHP Warning on rvy_is_full_editor() call under some configurations
* Change : Revision Queue - Standard link coloring (like Edit Posts)
= 2.5.4 - 6 May 2021 =
* Fixed : Database error on Revision approval - Unknown column 'filter' in 'field list' for query UPDATE `wp_posts` SET `post_author` =
* Compat : TablePress - Tables could not be updated by non-Administrators
= 2.5.3 - 6 Apr 2021 =
* Compat : WP Rest Cache - Revision submission from Gutenberg failed
* Compat : PublishPress Permissions - Edit Category / Term: Permissions metaboxes were not displayed
* Compat : PublishPress Permissions - Pending Revision Monitors group ineffective; notifications were sent to all Editors and Administrators (also requires PublishPress Permissions 3.5.1)
* Compat : Enable revisioning of non-public post types if they have type-specific capabilities defined
= 2.5.2 - 30 Mar 2021 =
* Fixed : Fatal error due to incorrect vendor library load request
= 2.5.1 - 30 Mar 2021 =
* Fixed : Revisors could not preview other users' pending revisions, even if they are listed in Revision Queue (Permissions integration requires 3.5.1)
* Fixed : Post Title changes were not applied at revision publication
* Fixed : Database error on revision publication, on some installations
* Fixed : Compare Revisions - uneven column widths with WordPress 5.7
* Feature : Option to update modified date on revision publication
* Compat : PublishPress - Custom Status dropdown was hidden in post editor
* Compat : Kinsta object cache - Revision submission using "Save as Revision" checkbox failed
* Compat : Kinsta object cache - Revision submission clears Featured Image from published post
= 2.5 - 4 Mar 2021 =
* Fixed : After a Pending Revision is published, Compare Revisions screen for past revisions did not order it correctly
* Fixed : Revisors could not access Compare Revisions screen unless PublishPress Permissions was active
* Fixed : Some attachment fields implemented by third party plugins were not saved to Pending Revisions
* Fixed : Revision submission - "submit another revision" link (following future date selection) led to submission failure on some sites
* Compat : Advanced Custom Fields - attachment image fields were cleared out of new revision
* Compat : REST API Cache - "Save as Revision" checkbox ineffective on some installations
* Compat : PublishPress - Editing a revision caused it to be converted to a non-revision draft
* Compat : PublishPress - Custom Status module interfered with Revisions scripts on Edit Revision screen
* Compat : PublishPress - Adding an Editorial Comment on the Edit Revision screen, then updating, caused revision to become inaccessible
* Compat : Some third party plugin interactions could cause Revision publication to fail, leaving published page unreadable
* Change : Display a Revisions link (for past revisions) in Classic Editor for Revisor
* Lang : Add Swedish translation
= 2.4.9 - 14 Jan 2021 =
* Compat : REST API Cache - REST caching failed for attachments
* Fixed : Non-public post types displayed ineffective preview link. Now suppress link or link to Compare Revisions screen instead.
* Fixed : Error loading Revisions > Settings page if nullstring license key is stored, on some installations
* Fixed : Deprecated jQuery event handlers
* Feature : Display notice to Revisor if they have already submitted a revision (in Gutenberg only if constant REVISIONARY_GUTEN_NOTICE defined)
* Change : Enable Compare Revisions link (for past revisions) in page editor for Revisor
= 2.4.8 - 17 Dec 2020 =
* Compat : WPML - Revision Queue was not filtered by WPML language selector
* Compat : WPML - Hide non-revisionable Languages settings in Revision editor
* Compat : TablePress - Tables could not be updated by non-Administrators
* Fixed : Revision Queue - PHP Notice if no revisions listed
= 2.4.7 - 15 Dec 2020 =
* Fixed : WP 5.6 - Pending Revision submission failed (since 2.4.6)
* Fixed : Compare Pending Revisions always credited assigned post author for Current Revision, now shows user who created the last published update. To revert to previous behavior, define constant RVY_LEGACY_COMPARE_REVISIONS_AUTHOR_DISPLAY.
* Change : Clarify captions for permissions-related checkboxes in Revisions > Settings > Revision Queue
* Compat : PublishPress Capabilities - organize Revisions capabilities into own area
= 2.4.6 - 8 Dec 2020 =
* Lang: Include a .pot file (translation template)
* Fixed : If no revisions are accessible to user, all revisions were listed in Revision Queue
* Fixed : Post deletion triggered revision submission redirect under some conditions
* Compat : REST API Cache plugin - "Save as Revision" checkbox was ineffective
* Compat : PublishPress Authors - revision submission failed under some conditions
= 2.4.5 - 30 Nov 2020 =
* Compat : WP Engine, Kinsta object cache - "Pending Revision" checkbox was ineffective
* Compat : PublishPress Permissions - Revision editing or deletion was improperly blocked under some configurations
* Fixed : Revision submission by Administrator or Editor caused corruption of published block content (by slash removal) on some installations
* Fixed : Edit Revision screen did not display Approve Revision button to users who cannot delete the revision
* Fixed : Revision Queue - other plugin / theme filters could cause all revisions to be listed when a requested published post has no accessible revisions
* Fixed : Revision Queue - filter links worked, but had original URL reconstructed incorrectly
* Fixed : Revision Queue - pagination links had badly formatted arguments if a filtering argument is active
* Fixed : Revisors had non-applicable elements hidden in post editor, but orphaned labels for those elements remained visible
* API : New filter 'revisionary_notify_publishers_eligible' to modify eligible "Publishers to Notify" when Email Notification is optional
* API : New filter 'revisionary_notify_publisher_default_ids' to modify default "Publishers to Notify" when Email Notification is optional
= 2.4.4 - 18 Nov 2020 =
* Fixed : Revision submission caused Post Thumbnail to be cleared from the published post
* Fixed : Revision submission by a Revisor caused corruption of published block content (by slash removal) on some installations
* Fixed : Compare Past Revisions - Editors did have "Preview / Restore" or "Manage" buttons
= 2.4.3 - 5 Nov 2020 =
* Compat : Polylang - language settings were not stored to revision (Fix also applies to other plugins using hidden taxonomies)
* Compat : Project Nami (Microsoft SQL Server / ODBC) - No confirmation redirect on revision submission
* Lang : Added .pot file
= 2.4.2 - 26 Oct 2020 =
* Compat : PublishPress Permissions - Users assigned Revise permissions for specific pages or categories could not compare Pending Revisions
* Compat : PublishPress Permissions Pro - With Status Control module active, Edit Revision screen had invalid "Workflow" button (also requires Permissions Pro 3.3.8)
* Compat : Public Post Preview - Author selector was hidden in post editor
* Compat : Public Post Preview - Make public post previews of published posts redirect to the published post
* Change : Revision Settings - Revision Queue section, includes "Compatibility Mode" setting to prevent revisions from being hidden from the queue in the case of plugin integration issues
* Fixed : "Prevent Revisors from editing others' revisions" setting was not applied
* Fixed : Error when Revision submission includes a template setting
* Fixed : Custom plugins path caused PHP error
* Fixed : Revison Queue - PHP Notice "Undefined variable: post_id" when URL includes published_post argument
* Feature : If Revisors are blocked from editing other users' drafts, those can now be included (unclickable) in Edit Pages if the list_others_pages capability is granted
* Feature : Support constant definitions REVISIONARY_DISABLE_SUBMISSION_REDIRECT, REVISIONARY_DISABLE_SCHEDULE_REDIRECT
* Feature : New filters "revisionary_do_submission_redirect", "revisionary_do_schedule_redirect"
= 2.4.1 - 9 Oct 2020 =
* Compat : PublishPress Permissions - On new post creation, Revisors get a Publish button instead of a Submit button. Publishing fails; the only way to submit successfully is Save Draft, then Submit for Review.
* Compat : PublishPress Permissions - Revisions were not listed in Queue under some configurations with PublishPress Permissions active
* Fixed : With pre-Publish checks enabled in Gutenberg, after first save "Pending Revision" checkbox was moved off of pre-Publish Panel
= 2.4 - 1 Oct 2020 =
* Fixed : Revisors and other limited editors had editor elements hidden when adding a new post, under some site configurations
* Fixed : Revision publication always set post publish date to current time. Now does only with enabled setting Revisions > Settings > Pending Revisions > Update Publish Date
* Fixed : Classic Editor - after Preview Changes is clicked, limited editors see "Submit Revision" button recaptioned to "Update"
* Compat : PublishPress Authors - Authors could not be changed on Edit Revision screen with Gutenberg editor if PublishPress is also active
* Compat : Gutenberg Ramp - Revision submission UI did not load for post types that have Gutenberg enabled
= 2.3.12 - 27 Aug 2020 =
* Fixed : WP 5.5 - Post previews did not display correctly for Revisors
* Fixed : Pending, Scheduled revisions not listed in Revision Queue following mirroring of posts database table from another installation (or possibly under other conditions)
* Fixed : Editorial Comments added on "Edit Revision" screen did not trigger email notification to post author or revision author
* Feature : Option to copy revision's editorial comments over to published post (at revision publication)
= 2.3.11 - 13 Aug 2020 =
* Compat : WP 5.5 - "Pending Revision" checkbox sometimes ineffective
* Compat : WP 5.5 - Posts with pending or scheduled revisions stored had misplaced links in Gutenberg editor sidebar
* Compat : WP 5.5 - With Classic Editor, javascript errors in post editor
* Compat : WP 5.5 - PHP warning on post edit (deprecated function escape_attribute)
* Compat : WP 5.5 - Edit Revision screen - Duplicate Preview link, misaligned
* Compat : WP 5.5 - Edit Revision screen - View / Approve link misaligned
* Fixed : "Has Revision" post state displayed for posts that have comments but no revisions (since 2.3.10)
* Fixed : Scheduled revisions were not published under some conditions (since 2.3.9)
* Fixed : In some conditions, fatal error on Plugins screen
= 2.3.10 - 10 Aug 2020 =
* Fixed : Revisions submitted without modifying tags had tags removed
* Feature : Edit Posts screen - display "Has Revision" as a post state after post title
= 2.3.9 - 6 Aug 2020 =
* Fixed : Featured Image was removed from pending revision at creation
* Fixed : Scheduled revision publication failed under some conditions, caused post to be unpublished
* Fixed : Scheduled revisions could not be published ahead of schedule using "Publish Now" link on preview (since 2.3.4)
* Lang : Add German translation
* API : New filter 'revisionary_apply_revision_data' to adjust standard revision fields prior to publication
= 2.3.8 - 30 Jul 2020 =
* Feature : Revision Queue - new bulk action to Unschedule selected revisions
* Lang : Add Spanish translation
* Fixed : Revisors could not preview changes prior to submitting a pending revision
* Fixed : Classic Editor plugin - when "Edit (Classic)" link is used, Revisors did not have Update button recaptioned to "Submit Revision"
* Fixed : API - revisionary_enabled_post_types filter was not fully effective
* Compat : Public Post Preview - support preview link generation on Edit Revision screen
= 2.3.6 - 10 Jun 2020 =
* Fixed : After revision submission, preview link was not always to latest revision
* Fixed : Preview button on editor screen loaded preview with invalid thumbnail under some conditions
* Fixed : When network-activated, Network Settings menu item loaded site-specific settings screen
= 2.3.5 - 29 May 2020 =
* Fixed : Compare link on Editor screen linked to Edit Posts screen instead of Compare Revisions
= 2.3.4 - 29 May 2020 =
* Fixed : Duplicate email notifications to users who have more than one WordPress role
* Change : Suppress email notification when an Administrator or Editor creates a pending revision, if constant REVISIONARY_LIMIT_ADMIN_NOTIFICATIONS is defined
* Compat : Relevanssi - Scheduled revisions were not published with Relevanssi active
* Fixed : Scheduled revision publication caused other scheduled revisions (for the same post) to be hidden from Revision Queue
* Fixed : has_revisions postmeta flag was not cleared when a post's last revision was deleted
* Fixed : Revision Queue - Search function did not work
* Fixed : Revision Queue link in Edit Posts / Edit Pages row was not removed after post's last pending or scheduled revision published or deleted
= 2.3.3 - 14 May 2020 =
* Compat : PublishPress Permissions - Fatal error on post creation
= 2.3.2 - 12 May 2020 =
* Fixed : Post meta flag "_rvy_has_revisions" was not cleared after last remaining pending / scheduled revision was published or deleted, affecting Revision Queue performance
* Fixed : Revision Queue listed uneditable revisions under some conditions
* Fixed : My Published Posts count was wrong under some conditions
* Fixed : Dashboard At a Glance link for Pending Post Revisions linked to Revision Queue without filtering display to Posts only
* Compat : PublishPress Permissions - suppress Permissions metaboxes on Edit Revision screen
* Fixed : Published post content cleared on pending revisions submission, on a minority of installations
= 2.2.4 - 6 Apr 2020 =
* Fixed : Possible fatal error loading Revisions screen on a small percentage of installations
= 2.2.3 - 3 Apr 2020 =
* Fixed : Classic Editor - Category and Post Tag revisions were not applied
= 2.2.2 - 2 Apr 2020 =
* Feature : Option to disable revision preview links for non-Administrators (to work around themes that force a 404 Not Found response)
* Fixed : Inline styles were stripped or modifield on scheduled revision publication
* Fixed : Possible fatal error loading Revisions screen on a small percentage of installations
* Fixed : PHP Notice for deprecated function contextual_help_list()
* Change : Standardize sanitization of database queries
* API: revisionary_enabled_post_types filter was not applied consistently
* Compat : CMS Tree Page View - Suppress Pending Revisions and Scheduled Revisions from Page Tree View
= 2.2.1 - 16 Mar 2020 =
* Fixed : Page Template was cleared on revision submission in some installations
* Fixed : Revision Queue - "Filter" link was ineffective in showing only revisions of the selected published post. This also applies to "View Revision Queue" link after revision creation.
* Fixed : Edit Revision - Move to Trash button did not work (and created new pending revision)
* Fixed : Duplicate email notifications for scheduled revision publication on some installations
* Fixed : Safeguard to prevent duplicate email notifications
* Feature : Plugin API - new filter 'revisionary_mail' allows adjustment to notification email address, title or message (or blockage of a particular email)
* Change : Pro top banner on Revisions screens
* Compat : New setting "Revision publication triggers API actions to mimic post update" causes save_post and transition_post_status actions to fire on revision publication
* Compat : Yoast SEO - Revision submission stripped accented characters and emojis out of FAQ block
* Compat : On revision publication, trigger 'transition_post_status' action, for plugins that use it
= 2.2 - 12 Feb 2020 =
* Feature : Email Notification - option to notify Editors and Administrators when a Pending Revision is approved
* Fixed : Block Editor - Custom Taxonomies, if unchanged, were not saved to revision. Publication of revision cleared custom taxonomies for published post.
* Fixed : Block Editor - Error setting Featured Image
* Fixed : Revisions submitted by Administrators or Editors using "Pending Revision" checkbox caused published post title and content to be cleared if a future publish date was also selected
* Compat : PublishPress Permissions Status Control - "Prevent Revisors from editing other users' drafts" setting also prevented other non-Editors from editing posts of a custom workflow status that uses custom capabilities (also requires PP Permissions Pro 2.9.1)
* Compat : Block data from some plugins had html formatting tags displayed as unicode character codes
* Fixed : Edit Revision screen - Date selector was displayed even if scheduled revisions feature disabled
* Fixed : Compare Pending Revisions - Non-administrators could not edit Scheduled Revisions
* Fixed : Compare Pending Revisions - for page slug change, original published slug was not displayed
* Fixed : 'revisionary_skip_taxonomies' filter triggered a database error
* Fixed : PHP Notice if third party code registers a post type without defining the edit_published capability
* Fixed : PHP Notices on revision submission notification
* Change : By default, enable "Prevent Revisors from viewing others'" setting
* Change : Apply possible workaround for Revision Queue capability issues on some sites
= 2.1.8 - 15 Jan 2020 =
* Fixed : Custom Post Types did not have Pending Revisions or Scheduled Revisions available (since 2.1.7)
* Lang : Correct textdomain on numerous translation calls
* Lang : Improve translation string construction
* Lang : Support translation of Revisor role name
* Lang : Updated language files
= 2.1.7 - 13 Jan 2020 =
* Fixed : Excessive resource usage with some caching solutions
* Fixed : Multisite - Super Administrators without a site role could not access Revision Queue
* Fixed : Classic Editor - After updating a revision, "View Post" message linked to published post instead of revision preview
* Feature : New filter 'revisionary_enabled_post_types', unset post types by key to disable PP Revisions involvement
= 2.1.6 - 23 Dec 2019 =
* Fixed : Edit Revision - Classic Editor "Approve" button ineffective
* Fixed : Edit Revision - Classic Editor "View / Approve" button loaded live preview (of unsaved changes) instead
* Compat : By default, prevent third party post query filtering on Revision Queue (to avoid non-display of Revisions)
* Compat : PressPermit Pro - Updating a saved revision caused it to be changed to a regular pending post
= 2.1.5 - 11 Dec 2019 =
* Compat : PressPermit Pro - Pending revision previews could be viewed by any user (including anonymous) if "Prevent Revisors from viewing others' revisions" disabled (since 2.1.4)
* Fixed : Contributors had other users' uneditable, unreadable revisions listed in Revision Queue
* Fixed : Revision Preview - Under some configurations, users with read-only access to revisions had no top bar in revision preview display
* Fixed : Revision Preview - Under some role configurations, users saw an ineffective "Publish" button in preview top bar
* Fixed : PHP warning for undefined index 'preview'
= 2.1.4 - 10 Dec 2019 =
* Fixed : Revision previews were not displayed to Editors under some configurations
* Feature : Separate settings for "Prevent Revisors from editing others'" and "Prevent Revisors from viewing others'"
= 2.1.3 - 6 Dec 2019 =
* Compat : Classic Editor plugin - View / Approve buttons missing on Edit Revision screen if Classic Editor active but settings default to Block Editor
* Compat : Classic Editor plugin - Javascript errors on Edit Post / Edit Revision screen if Classic Editor active but currently using Block Editor
* Compat : Thin Out Revisions plugin broke Preview / Approval buttons on Compare Pending Revisions screen
* Compat : Multiple Authors - Revision Queue "Post Author" links did not work for secondary authors
* Compat : Multiple Authors - Revision Queue "Post Author" links did not filter Revision Queue
* Compat : JReviews - Live preview from Edit Revision screen failed if JReviews plugin active
* Fixed : Preview Top Bar blocks admin bar dropdown menu if another fixed-position element on the page (other than #wpadminbar) has a z-index of 99999 or higher
= 2.1.2 - 4 Dec 2019 =
* Fixed : Scheduled Revisions were not published (since 2.1)
* Fixed : Edit Revision - Preview of unsaved revision did not work from Gutenberg
* Change : Edit Revision - Display "View / Approve" button if editor is unchanged from saved revision, otherwise "Preview" button for unsaved changes
* Fixed : Classic Editor - Preview caused "Update Revision" button to be recaptioned to "Save Draft"
* Feature : Support Post Slug revision
* Fixed : Other users' revisions were not listed in Revision Queue even if "Prevent Revisors from editing others' revisions" disabled
* Fixed : With "Prevent Revisors from editing others' revisions" setting enabled, Revisors and Authors could edit others' revisions by direct URL access
* Feature : Support list_others_revisions capability to grant read access to other users' revisions (applies if "Prevent Revisors from editing others' revisions" is enabled)
* Compat : PressPermit Pro - Revisors could not submit Beaver Builder revisions
* Compat : PressPermit Pro - Revision Exceptions ("Also these" category / taxonomy assignments) assigned to Authors were not applied correctly
* Compat : JReviews plugin
= 2.1.1 - 26 Nov 2019 =
* Compat : Multiple Authors - Fatal error on revision creation (since 2.1)
= 2.1 - 26 Nov 2019 =
* Feature : Bulk Approval / Publishing in Revision Queue
* Feature : Revision Edit: Approve Button on Editor screen
* Feature : Option for Approve, Edit buttons on Compare Revisions screen (instead of Preview button)
* Feature : Email Notification Buffer to avoid failures due to exceeding server send limits
* Fixed : Email Notification - For pending revision submission, submitter was misidentified on some sites
* Fixed : Revisors could restore previous revisions through manual URL access
* Fixed : Fatal error when WP_Privacy_Policy_Content::text_change_check() is triggered
* Fixed : "Pending Revision" checkbox was displayed in Gutenberg editor, even for unpublished posts
* Fixed : After clicking "Pending Revision" checkbox, unchecking did not prevent revision save
* Fixed : Revision Preview - unsaved changes to saved revision could not be previewed with WP 5.3
* Fixed : Revision Preview - top bar for edit / approval was not displayed on some sites
* Change : Revision Preview URL - Default to using published post slug with revision page_id argument, for better theme compatibility. Option to use Revision slug or ID only.
* Fixed : Edit Revision screen links to published post discarded customized slug
* Fixed : Classic Editor - "View / Approve" link from Edit Revision screen loaded wrong preview URL and no top bar display for approval
* Fixed : Classic Editor - No preview button was available to Revisors
* Fixed : Classic Editor - Invalid Revisions > Browse link displayed to Revisors
* Compat : Classic Editor plugin - with "Allow users to switch editors" enabled, non-default editor did not have correct javascript loaded for Revisions
* Compat : On themes that use a fixed position header, display preview top bar above header
* Compat : PressPermit Pro - revision preview could not be viewed by Contributors under some configurations
* Fixed : On standard Compare Revisions screen (for past revisions), Preview and Manage button links did not update with slider selection change
* Fixed : Pending, Schedule Revision notification - invalid preview link in some emails
* Fixed : Trashed revisions were not identified as revisions in Edit Posts listing
* Fixed : Trashed revisions were not deleted on parent post deletion
* Fixed : Trashed revisions showed an invalid comment count value in Edit Posts listing
* Fixed : PHP Warning in Gutenberg editor when editing is not being limited to revision submission
* Compat : Multiple Authors - Compare Pending Revisions screen showed revisor as original post author under some conditions
* Compat : Multiple Authors - Revision submission / approval caused published post author to be changed to revisor, under some conditions
* Compat : Plugin interaction caused published post permalink custom slug to be replaced with default permalink structure at revision publication, on some sites
* Change : Revision Queue - recaption "My Posts" to "My Published Posts"
= 2.0.12 - 29 Oct 2019 =
* Fixed : Fatal error on Post Preview
= 2.0.11 - 28 Oct 2019 =
* Fixed : Classic Editor - Post Preview showed last stored copy, not unsaved changes
* Fixed : Revision Preview top bar covered admin menu dropdown
* Fixed : Revision Edit - live preview showed revision author instead of published author (if Multiple Authors plugin not active)
= 2.0.10 - 25 Oct 2019 =
* Fixed : Post Preview showed last stored copy, not unsaved changes
* Fixed : Post Preview (to view unsaved changes) was not available when editing a revision
* Fixed : Revision Preview - Buttons were not clickable with some themes
* Fixed : Filter revisionary_default_pending_revision was not effective in Gutenberg (check Save as Revision checkbox by default)
* Compat : Multiple Authors - Incorrect author display in revision previews on some sites
* Compat : PressPermit - Database error on Revision Queue screen under some configurations
= 2.0.9 - 18 Oct 2019 =
* Fixed : Compare Pending Revisions screen - link redirected to Edit Posts screen for some post types
= 2.0.8 - 18 Oct 2019 =
* Change : PostMeta Failsafe: to avoid the possibility of accidental clearance, Featured Image removal is not revisioned, until further testing. API filter available for experimental usage with specified meta keys.
* Fixed : Featured Image, Page Template revisioning failed under some conditions
* Fixed : Scheduled Revisions created with Gutenberg stored selected terms to published post, previous terms to revision
* Fixed : Scheduled Revisions - If "Update Publish Date" enabled, 404 Not Found redirect after manually publishing a scheduled revision if the post type uses post date in permalink structure
* Fixed : Revision Preview - Buttons were not clickable with some themes
* Fixed : Settings - Disabling Pending or Scheduled Revisions did not remove UI from post editor
* Fixed : Settings - If Pending Revisions disabled, Revisor could still edit published posts
= 2.0.7 - 17 Oct 2019 =
* Fixed : Scheduled Revisions - published post tags and categories were stripped out on scheduled revision publication
* Fixed : Scheduled Revisions - manually publishing prior to scheduled time caused published post status to be set to Future (unpublished)
= 2.0.6 - 17 Oct 2019 =
* Fixed : Featured Image and Page Template revisions were not applied (but did work in PublishPress Revisions Pro)
* Fixed : Publishing a revision imported from Revisionary 1.x caused tags and categories to be stripped out
= 2.0.5 - 16 Oct 2019 =
* Fixed : Import script for Revisionary 1.x revisions did not run on plugin activation
* Fixed : Administrators, Editors and Authors were blocked from Quick Edit
* Compat : Multiple Authors plugin
* Fixed : Pending Revisions - Published post date was not updated even if "Update Publish Date" setting enabled
* Change : Pending Revision Notification - Include link to Revision Queue
* Fixed : Pending Revision Notification - If enabled for author only, email was sent with a blank title and message
* Fixed : Empty Revision Queue was displayed to Subscribers with no Revision capabilities
* Fixed : PHP notices on Revision Queue screen
= 2.0.4 - 9 Oct 2019 =
* Change : On installation over Revisionary 1.x, display a "heads up" notice about plugin name change, admin menu and Revision Queue
* Fixed : Classic Editor - Revision Preview did not always include top bar (for Edit / Compare / Publish) if PressPermit Pro active
* Fixed : Revision Preview - Edit url did not work on installations with non-conventional admin paths, due to hardcoded /wp-admin
* Fixed : Schedule Revision notifications sent redundantly under some conditions
* Change : On Revision Edit, recaption Preview button to "View" to clarify that it's a preview of the saved revision, not unsaved changes. (Future release will make it a true preview).
= 2.0.3 - 3 Oct 2019 =
* Fixed : Revisionary settings could not be changed
* Fixed : Pending / Scheduled Revisions were listed in Revision Queue even if feature disabled in Revisions > Settings
* Fixed : On post edit for revision, Revisors could not see the current or newly selected Featured Image
* Fixed : On revision edit, Administrators and Editors did not have Trash button available
* Fixed : Revisors could edit or delete their scheduled revisions
* Fixed : Scheduled revision publication did not work with "Asynchronous publishing" setting enabled
* Fixed : After revision publication reloading, the old revision preview returned "Not Found". Now redirects to published post and marks as "Current Revision"
* Fixed : PHP Notices throughout wp-admin when WP_DEBUG enabled
* Change : Revision Queue headline indicates when results are being filtered by post type, revision status, revision author or post author