forked from Yoast/wordpress-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3043 lines (2423 loc) · 180 KB
/
changelog.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
= Changelog archive =
This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
= 5.1.0 =
Release Date: July 25th, 2017
* Enhancements
* Adds the post-type and taxonomy identifiers on the titles and metas settings tab.
* Adds support for importing of Jetpack SEO data.
* Improves the readability feature for Dutch, English, French, German, Italian and Spanish.
* Adds a WordPress SEO Premium motivation box on Yoast SEO settings pages.
* Adds a WordPress SEO Premium motivation on the social tabs.
* Adds support for third party sitemaps providers to be registered and used.
* Changes the column titles in the taxonomy list table to icons.
* Adds a subheader on the notification dashboard to clarify problems and issues which are muted.
* Improves avatars on the credit page, props [Mike DeHart](https://github.com/mikedehart)
* Bugfixes
* Fixes a bug where `remove_meta_if_default` and `dont_save_meta_if_default` don't return the given input value as default.
* Fixes a performance issue related to calculating text link counts when saving a post.
* Fixes a typo in the readme.txt, props [Raymond Rutjes](https://github.com/rayrutjes)
= 5.0.2 =
Release Date: July 13th, 2017
* Only load babel polyfill if it hasn't been loaded by another plugin yet.
* Adds a feature toggle to disable the link counter tool & link columns.
* Fixes a compatibility issue with WordPress 4.6.
* Fixes an issue where the link columns would disappear after quick-editing a post.
= 5.0.1 =
Release Date: July 6th, 2017
* Fixes a fatal error that could occur when trying to save a post that has `<a>`-tags with invalid URLs in it.
= 5.0.0 =
Release Date: July 6th, 2017
* Bugfixes
* Fixes a bug where images via `https` were not working, props [Jannik Zschiesche](https://github.com/apfelbox).
* Fixes a bug where the whip notification can be shown multiple times.
* Enhancements
* Introduces a module that counts links in the content.
* Adds Flesch Reading for Italian.
* Changes 'page title' to 'seo title' in the snippet preview.
* Changes recommended maximum sentence length for Italian from 20 to 25 words, based on more in-depth research.
* Implements the extracted version of the Algolia Search which is now present in `yoast-components`.
* Adds a banner for the structured data course.
* Under the hood
* Introduces a database table to keep track of the linking structure. If the table cannot be created, a notification will be shown.
* When there are posts or pages to reindex, a notice will be shown.
= 4.9.0 =
Release Date: June 7th, 2017
* Bugfixes
* Fixes a bug where there were certain assessments missing when switching to cornerstone content.
* Fixes a bug where the configuration wizard button was visible for users who didn't have enough rights to access the configuration wizard.
* Fixes a bug where the column `ID` was ambiguous, causing an SQL error.
* Fixes a bug where the category URL in the sitemap was encoded twice.
* Fixes a bug where an old upgrade notice is not removed.
* Enhancements
* Removes the noodp advanced robots meta value as it is no longer used.
* Loads the translations only when the configuration wizard endpoint is called, instead of every time `rest_api_init` is called.
= 4.8.0 =
Release Date: May 23rd, 2017
* Bugfixes
* Fixes a bug where the tabs in the social and advanced metabox section are gone when keyword analysis has been disabled.
* Enhancements
* Optimizes the way the cornerstone flag is saved.
* Analyzes the content using cornerstone assessors when a post or page is cornerstone content.
= 4.7.1 =
Release Date: May 9th, 2017
* Bugfixes
* Fixes a bug where the analysis wouldn't work on Internet Explorer.
= 4.7.0 =
Release Date: May 2nd, 2017
* Enhancements
* Adds transition words for Italian.
* Adds a new check in the analysis for the presence of at least one internal link.
* Bugfixes
* Fixes a bug where the `_yst_is_cornerstone` meta value was not prefixed, causing some themes/plugins to output this meta value.
* Fixes a bug where style and script elements were parsed for the prominent words.
* Fixes a bug where the cursor pointer was in front of the metabox.
= 4.6.0 =
Release Date: April 11th, 2017
* Enhancements
* Improves a language string, props [Sören Wrede](https://github.com/Soean).
* Improves the configuration wizard with clear information about the configuration.
* Adds the ability to mark posts as cornerstone content.
* Bugfixes
* Fixes an issue in combination with WooCommerce 3.0 where the plugins would load incompatible select2 versions.
= 4.5.0 =
Release Date: March 21st, 2017
* Additions
* Adds a message about the PHP version for WordPress installations that run on PHP 5.2. The warning also has pointers on how to address this situation. [We have an article about why we are doing this on yoast.com](https://yoa.st/x6).
* Bugfixes
* Adds a check for the breadcrumbs-home option to prevent a blank entry being added to the crumbs array, props [codemonkeynorth](https://github.com/codemonkeynorth)
* Enhancements
* Throws a warning in the admin for the RS Head Cleaner plugin, because the plugin cloaks.
* Improves copy about Yoast SEO Premium benefits.
* Adds link to our knowledge base article about connecting your website to Google Search Console.
= 4.4.0 =
Release date: February 28th, 2017
* Bugfixes:
* Fixes a bug where a `span` tag wasn't closed correctly, props [lubobill1990](https://github.com/lubobill1990).
* Fixes a bug where there were deprecation warnings shown when an existing author was being updated.
* Fixes a bug where the user received an 'insufficient rights' error when the advanced settings are disabled, but an advanced page is visited.
* Enhancements:
* Moves the options to disable keyword and content analysis from the general tab to the features tab.
* Improves styling of tables so they are viewable on mobile.
* Changes the links into shortlinks for the extensions page, helpcenter, facebook settings and premium popup.
= 4.3.0 =
Release Date: February 14th, 2017
* Bugfixes
* Fixes the width of the readability column on post overview, props [rikayla](https://github.com/rikayla).
* Enhancements
* Improves feedback text for subheading too long assessment.
= 4.2.1 =
Release Date: February 2nd, 2017
* Bugfixes
* Fixes a fatal error "Call to undefined method yoast_i18n::set_api_url()". This error occurred with certain other plugins that also include the i18n-module.
* Fixes a bug where some strings wouldn't be translated.
* Makes the Yoast SEO menu top and first item visible in the responsive view.
* Fixes a bug where the yoast icon on the credits page wasn't displayed properly in some views.
* Enhancements:
* Improves the styling of the notification center.
* Improves the styling of the title separators.
= 4.2.0 =
Release Date: January 31st, 2017
* Bugfixes:
* Fixes a bug where the sitemaps were being invalidated too often.
* Fixes a bug where the 'meta keywords' meta box section stayed visible when switching to the readability tab.
* Enhancements:
* Moves translations from translate.yoast.com to translate.wordpress.org.
* Improves the styling of the featured image warning and sends an audible message for screen readers.
* Makes the left sidebar of the meta box responsive.
* Removes unused heading from the meta box.
* Improves responsiveness for settings pages.
= 4.1.0 =
Release Date: January 17th, 2017
* Bugfixes:
* Fixes a glitch in the notification center where a notification would be shown twice.
* Fixes a bug where the realtime analysis didn't work on term pages.
* Fixes a bug where the sitemap invalidation uses an expensive query to clean up old validators.
* Enhancements:
* Adds a mobile snippet preview.
* Adds a function that allows retrieving an option only when it's been autoloaded.
* Removes review banner from mobile, props [abhinavkumar940](https://github.com/abhinavkumar940).
* Adds labels to redirect checkboxes in the search console to improve accessibility.
= 4.0.2 =
Release Date: December 20th, 2016
* Bugfixes
* Fixes a bug where shortcodes would be kept in the content that would be analyzed, which would result in incorrect results.
* Fixes a bug where the user language would be used to analyze the content instead of the site language.
= 4.0.0 =
Release Date: December 13th, 2016
* Enhancements:
* License manager: Add a get_extension_url method to Yoast_Product to retrieve the URL where people can extend/upgrade their license.
* License manager: Add a set_extension_url method to Yoast_Product to set the URL where people can extend/upgrade their license.
* Updates the credits page.
* Improves plugin naming in translations.
* Improves translations by making texts more consistent.
* Displays the translations in the language chosen by the user in stead of using only the site language.
* Improves the styling of the banners.
* Adds passive voice for German.
* Adds more transition words for French.
* Improves feedback strings for the meta description length assessment.
* Improves matching of the keyword in the first paragraph.
* Improves the snippet preview to match the styling of googles snippet.
* Bugfixes:
* Fixes a compatibility bug with the onboarding wizard and Polylang, and possibly more plugins that prevented the configuration wizard from working properly.
* Fixes a bug where post format archives showed up in sitemap when disabled.
* Fixes a bug where an old update notice would not be removed.
* Fixes a bug where keywords with periods where not highlighted in the snippet.
* Fixes a bug where the title of the metabox wasn't displayed correctly.
= 3.9.0 =
Release Date: November 29nd, 2016
* Enhancements:
* Updates the banners on the admin pages.
* Improves accessibility by moving the Google Search Console reload button from the header.
* Allow for other plugins and themes to more easily add html namespaces through the new wpseo_html_namespaces filter.
* Prevent conflicts with other plugins/themes which also add html namespaces.
* Bugfixes:
* Adds a check to prevent a "Cannot read property 'body' of undefined" error with tinyMCE that occurred with Visual Composer and some themes.
* Fixes a bug that prevented bulk actions to work in the Google Search Console.
* Fixed incorrect timezone for zero offset case (Atlantic/Azores instead of UTC).
= 3.8.0 =
Release Date: November 8th, 2016
* Enhancements:
* Makes tooltips on tabs icons accessible.
* Adds check to prevent sitemap from having empty image entries.
* Improves screenreader text for the readability tab.
* Adds a toggle for author and date archives.
* Adds several improvements for readability and consistent styling.
* Bugfixes:
* Fixes a bug where the category picker would become slow with 1000+ categories, props [Ron Willemse](https://github.com/RonWillemse)
* Fixes a bug with VoiceOver on the readability and keyword tabs.
= 3.7.1 =
Release Date: October 20th, 2016
* Bugfixes:
* Fixes a bug where the configuration wizard couldn't go to the next step if PUT requests were disabled on the server.
= 3.7.0 =
Release Date: October 11th, 2016
* Enhancements:
* Includes a few design improvements in the analysis section of the metabox. Design is now more consistent.
* Makes sure author archives are disabled when a user confirms his site is single-author.
* The configuration wizard is now called "configuration wizard" consistently throughout the plugin.
* Makes sure the help center is now included on all Yoast SEO pages.
* Added a notification asking users to rate Yoast SEO on WordPress.org.
* Bugfixes:
* Fixes a bug where the metabox was taking up too much space on small screens.
* Fixes a bug where the marking for consecutive sentences beginning with the same word was off by one.
* Fixes a bug where the Google Search Console integration wasn't working well on multisite.
* Fixes a bug where the newsletter signup always did a http request, causing mixed content errors on https sites.
= 3.6.1 =
Release Date: October 3rd, 2016
* Bugfixes:
* Fixes a bug where the admin bar would still show advanced settings when the advanced settings were disabled.
= 3.6.0 =
Release Date: September 27th, 2016
* Enhancements:
* Introduces the installation wizard that enables an easy way of setting up Yoast SEO. The installation wizard enables you to:
- Newsletter signup.
- Specify the environment in which a site is running.
- Specify the type of a site.
- Specify a company or person for the metadata used in Google's Knowledge Graph.
- Specify social profiles.
- Specify post type visibility.
- Specify if you have multiple authors.
- Setup Google Search Console.
- Setup the title settings.
* The installation wizard replaces the tour.
* Adds a notification to the Yoast notification center to start the onboarding wizard.
* Adds a button on the general settings page to start the onboarding wizard.
* Adds a premium tab to the metabox.
* Introduces a feature toggles tab on the Yoast SEO dashboard where users can enable/disable certain features.
* New: Enable/disable the advanced settings pages.
* New: Enable/disable the Yoast SEO admin bar menu. Added after receiving feedback from multiple users who wanted this option.
* Moved: Enable/disable The OnPage.org integration.
* Removes the tour. With the help center available on every Yoast SEO page or section and the new installation wizard, there was no real usecase for the tour anymore.
* Bugfixes:
* Fixes sorting the table in sitemaps.
* Fixes a bug where keywords with a $ where not recognized.
= 3.5.0 =
Release Date: September 7th, 2016
* Enhancements:
* Adds Flesch Reading tests for Dutch and German.
* Added info about author links in theme to disable setting on archives settings page.
* Explicitly checks for public post type status when creating sitemap.
* Removes frequency and priority from sitemap, see release post for clarification.
* Improves sitemap "blocking files" notification.
* Improves sitemap generation for posts when dealing with a large number of posts.
* Improves reliability in some PHP configurations.
* Improves styling for notices below tabs.
* Adds @id fields to JSON LD output.
* Adds table headings and labels to the bulk editor.
* Improves the accessibility of the bulk editor.
* Prevented loading the network admin when not network active.
* Don't show keyword filter in post list when keyword analysis is disabled.
* Improves message for settings import.
* Adds translations for notification counts.
* Makes upload image buttons translatable.
* Improves alignment of form fields.
* Adds descriptions for breadcrumb and canonicals on category pages.
* Improves accessibility on plugin conflict notification links.
* Bugfixes:
* Fixes a bug where a new post with focus keyword would show up as a post without a keyword on the dashboard.
* Fixes a bug that would break rich term descriptions with large images.
* Fixes cache check in dashboard widget, which could cause unnecessary queries.
* No longer load toolbar styles when toolbar is disabled.
* Fixes a bug to prevent "cannot modify headers" notice on export.
* Fixes a bug to improve passive voice recognition.
* Fixes a bug to improve sentence detection.
* Fixes a bug that prevented the markings from working correctly.
* Fixes a bug where select2 would generate a 404 on a non-supported language.
* Fixes a bug where HTML attributes could be translated.
* Fixes a bug where the <code>og:image</code> tag would be omitted.
* Fixes a bug for canonicals for search pages with empty search queries.
= 3.4.2 =
Release Date: August 8th, 2016
* Bugfixes:
* Fixes a bug where apostrophes would be stripped from the focus keyword.
= 3.4.1 =
Release Date: August 2nd, 2016
* Bugfixes:
* Fixes a stored XSS issue in the Yoast SEO metabox. Thanks [Hammad Shamsi](https://twitter.com/hammadshamsii) for reporting and responsibly disclosing this issue.
= 3.4.0 =
Release Date: July 19th, 2016
* Enhancements:
* Adds readability checks for consecutive sentences beginning with the same word for the following languages:
* English, German, French, Spanish.
* Adds transition words check for German, French and Spanish.
* Adds transliterations for the following languages:
* Breton, Chamorro, Corsican, Kashubian, Welsh, Ewe
* Estonian, Basque, Fulah, Fijian, Arpitan, Friulian
* Frisian, Irish, Scottish Gaelic, Galician, Guarani
* Swiss German, Haitian Creole, Hawaiian, Croatian
* Georgian, Greenlandic, Kinyarwanda, Luxembourgish
* Limburgish, Lingala, Lithuanian, Malagasy, Macedonian
* Maori, Mirandese, Occitan, Oromo, Portuguese, Romansh Vallader
* Aromanian, Romanian, Slovak, Slovenian, Albanian
* Klingon (in Latin characters, not KLI PlqaD script yet)
* Hungarian, Sardinian, Silesian, Tahitian, Venetian, Walloon
* Improves the Russian transliteration.
* Improves the feedback strings of content checks.
* Adds a setting and a user option to disable the SEO analysis.
* Adds the readability score to the post and term overview.
* Disables the analysis marker buttons when switching from visual to text view in the editor.
* Accessibility enhancements:
* Improves the headings in the dashboard widget.
* Improves the headings hierarchy on the following pages:
* titles and metas
* user profile
* advanced settings
* social settings
* XML sitemap
* general settings
* Improves the headings hierarchy for dashboard alerts.
* Improves the debug information headings.
* Adds a legend for the title seperator on the titles and metas page.
* Improves the intro text of the social tabs.
* Improves consistency of buttons using WordPress styles.
* Adds a background to the YoastSEO issue counter to improve readability.
* Improves the focus style for the dismiss and restore buttons.
* Improves the redirect attachment warnings style by using the native WordPress notices style.
* Improves the links on the credit screen.
* Improves the release video iframe by adding a title.
* Improves the knowledge base results by making them focusable and operable with a keyboard.
* Improves the admin bar menu items by making them focusable and operable with a keyboard.
* Adds labels to the buttons of the knowledge base search for use with a screen reader.
* Adds label to the search field in the knowledge base for screen readers.
* Makes the knowledge base search button translatable.
* Improves the semantics of the knowledge base results.
* Improves the alignment of the icons in the metabox tab sections.
* Improve code to be consistent with WordPress standards, props [danielbachhuber](https://github.com/danielbachhuber).
* Bugfixes:
* Fixes a bug where non-ANSI characters would break the sitemap feature.
* Fixes a bug where MS Edge would not display the traffic light image in the help center properly.
* Fixes a bug where the style of the 'open article' button was overwritten and made unreadable.
* Fixes the link of the FAQ that linked to a non-existing page.
* Fixes a typo to make the KB search "Open" link translatable.
* Reintroduces the text length check for taxonomies.
* Fixes a bug where a 404 could be thrown when there was no locale set.
* Fixes a bug where in certain cases a yoastmark would leave traces in the text, these are now removed.
* Fixes a bug where the score bullet wouldn't be shown on the frontend.
* Fixes the generation of permalinks for new posts by ignoring the permalink sample and generating the permalink
from the posttitle, props [Robert Korulczyk](https://github.com/rob006).
* Fixes getting the incorrect primary category when getting the permalink, props [pawawat](https://github.com/pawawat).
= 3.3.4 =
Release Date: June 30th, 2016
* Fixed a bug in the 3.3.3 release that caused the release folder to not have a fix.
= 3.3.3 =
Release Date: June 30th, 2016
* Bugfixes:
* Fixes a bug where the focus keyword is not shown for posts created using WordPress SEO 2.x.
* Fixes a bug where changing the title in the bulk editor could be used to trigger JavaScript for the current user.
= 3.3.2 =
Release Date: June 21st, 2016
* Enhancements:
* Removes non-minified files. This makes the download a lot smaller which will result in less cases of an incomplete or failed download.
* Add setting and user option to disable the content analysis; The SEO analysis will still be present.
* Change the overall content analysis bullet to be more lenient in non-English languages. This means it will be easier to get a green bullet for non-English languages.
* Bugfixes:
* Fix issue where the settings export zip file could be read from the uploads folder after doing an export.
= 3.3.1 =
Release Date: June 15th, 2016
* Enhancements:
* Adds help center to google search console page when not connected to google search console.
* Adds video to the Yoast SEO dashboard to explain it.
* Ships the production version of React instead of the development version.
* Bugfixes
* Fixes a bug where the primary category wouldn't be in the permalink if `get_permalink` was called outside the loop.
* Fixes a compatibility issue where we set `$` to `jQuery`.
* Fixes a bug with redirects on a subsite in a multisite installation, props [nicholas-eden](https://github.com/nicholas-eden).
* Fixes a bug where invalid HTML would throw a warning.
* Fixes a bug where reading server variables using `filter_input` returns an empty result.
* Fixes a bug where the passive voice and transition words would be shown on non-english language
= 3.3.0 =
Release Date: June 14th, 2016
* Features:
* Added a dashboard under the SEO menu item and moved all persistent notifications to this dashboard.
* Added an indicator to the menu and admin bar about pending notifications and SEO problems.
* Splits the analysis into content and keyword analysis.
* Adds a ton of content feedback about the following properties:
* The length of subheadings.
* The length of text following a subheading.
* The length of paragraphs.
* The length of sentences.
* The presence of transition words.
* The presence of the passive voice.
* Adds a marker button for specific properties to mark these in the editor:
* The length of paragraphs.
* The length of sentences.
* The presence of passive voice.
* The presence of transition words.
* The presence of links with the focus keyword as link text.
* Adds slug transliteration for the following languages, this means that we now match with both the non-transliterated keyword and the transliterated keyword:
* Spanish, Polish, German, Nynorsk, Bokmål, Swedish, Finnish,
* Danish, Turkish, Latvian, Icelandic, Faroese, Czech, Russian,
* Esperanto, Afrikaans, Catalan, Asturian, Aragonese, Aymara,
* English, French, Italian, Dutch, Bambara.
* Adds a search box in the help center to search in the [Yoast knowledge base](https://kb.yoast.com).
* Enhancements:
* Adds missing alt tags to banners.
* Adds a 50.000 URL hard limit to the sitemaps, this is what google recommends.
* Moves social tab above settings tab in the metabox.
* Adds live updating to the score indicator in the admin bar on the post edit page.
* Optimize multiple sitemap cache clears by waiting until the end of the pageload to actual clear the cache.
* Improved title separator radio buttons accessibility.
* Removed Alexa verification from the plugin as it no longer works.
* Bugfixes:
* Fixes a bug where a quote inside an attribute in the XML sitemaps would cause to create invalid XML.
* Fixes a bug where using a custom posts table would not result in correct output in the XML sitemaps.
* Fixes an issue where canonical URLs didn't always correctly have a trailing slash, thanks you for your input [MatthewMi11er](https://github.com/MatthewMi11er).
* Fixes a bug where we didn't match a focus keyword correctly if it contained a slash.
* Fixes a bug where the content analysis would be executed too many times when typing in the snippet preview.
* Fixes a bug where the `wpseo_title` filter couldn't change the opengraph and twitter titles, props [Xavi Ivars](https://github.com/xavivars).
* Fixes a bug where the focus keyword wouldn't be saved when saving the post instantly after changing the focus keyword.
* Fixes a bug where retrieving terms in the breadcrumbs wouldn't be cached, props [Jonny Harris](https://github.com/spacedmonkey)
* Fixes a bug where the help center wasn't properly styled in Safari.
* Fixes an XSS issue, props [Hristo Pandjarov](https://twitter.com/pandjarov).
* Removed:
* Removes the ability to sort on the post score column, because the scores aren't meant to be sorted.
* Removes recalculation because there were too many
issues with integration missing that can only be added on the actual post edit admin page.
* Removes `json_encode` wrapper, it was only necessary for older WordPress versions.
= 3.2.5 =
Release date: May 6th, 2016
* Bugfixes:
* Fixes a bug in the text analysis when there are more images, the alt tags are not analysed as expected.
* Fixes a fatal when the BCMath component has been disabled in the host environment.
* Fixes a fatal in wp-admin when certain plugins which hide the login are activated.
* Fixes a warning in the sitemap index when no post types are shown and a last modified date is being requested.
* Adds missing capability checks in AJAX request responses.
= 3.2.4 =
Release date: April 28th, 2016
* Bugfixes:
* Fixes a regression where the post URL would be numerical when no post title was set.
* Fixes an issue that would cause notifications not to be dismissed even though they should be.
= 3.2.3 =
Release Date: April 21th, 2016
* Bugfixes:
* Fixes a bug where the update notification cannot be dismissed
* Fixes a bug where the notifications can be shown multiple times
= 3.2.2 =
Release Date: April 21th, 2016
* Bugfix:
* Fixes a bug where the text analysis was broken in certain languages in certain cases.
= 3.2.1 =
Release Date: April 20th, 2016
* Bugfix:
* Fixes bug where settings of the Advanced tabs "permalinks" and "rss" were no longer saved.
= 3.2.0 =
Release Date: April 20th, 2016
* Features:
* Adds an option to disable post format archives.
* Adds template function to retrieve the primary term. The functions are yoast_get_primary_term_id and yoast_get_primary_term.
* Enables primary term for every taxonomy by default.
* Adds a primary category replacement variable: `%%primary_category%%`.
* Adds a Yoast help center to every settings page with a screencast explaining that specific page.
* Introduces new help buttons in place of qtip, which makes these descriptions much more accessible.
* Enhancements:
* Adds pinterest icon to the pinterest settings tab.
* Clarifies the text on the pinterest settings tab.
* Improves searchability of select inputs by using select2.
* Adds filters to customize sitemaps' <urlset>, props [Mark Walker](https://github.com/mnwalker).
* Uses `wp_register_script` and `wp_register_style` on init so other plugins can customize our assets.
* Changes minimum text length content analysis check for terms to require 150 words instead of 300.
* Removes analyses from the term analysis that weren't applicable to terms.
* Improves code architecture of sitemaps.
* Moves the OnPage.org settings to the webmaster tab.
* Improves performance when importing or migrating posts, thanks [sun](https://github.com/sun).
* Adds caching to empty sitemaps.
* Adds parsing of shortcodes before recalculating all posts.
* Improves detection of static xml sitemaps.
* Makes sure external links in the metabox open in a new window, props [Borja Abad](https://github.com/mines).
* Makes the descriptions on the archives tab of the titles and meta's more clear.
* Removes noydir setting since Yahoo! directory doesn't exist anymore.
* Removes other tab from the import screen, these plugins have all been deprecated.
* Removes all settings to hide specific tags inside the head.
* Improves accessibility of add keyword modal.
* Improves accessibility of metabox.
* Switches all yoa.st links to be HTTPS.
* Removes Google+ specific post and term meta fields since Facebook and Google+ metadata were conflicting.
* Moves the replace vars help docs to the help center module on the titles and meta's settings page.
* Bugfixes:
* Fixes a bug where the breadcrumbs title field was hidden even though the theme supported breadcrumbs.
* Fixes a bug where underscores in like queries weren't correctly escaped, thanks [Konstantin Kovshenin](https://github.com/kovshenin) and [Damian Hodgkiss](https://github.com/damianhodgkiss)
* Fixes a bug where text inside a [caption] shortcode wouldn't be removed correctly in auto generated meta descriptions, props [Kevin Lisota](https://github.com/kevinlisota)
* Fixes a bug where a message to add headings to the text would only be shown if a keyword was set.
* Fixes a bug where a message to add links to the text would only be shown if a keyword was set.
* Fixes compatibility issues with plugins that included mootools or prototypejs.
* Fixes a bug where the 404 page didn't correctly have a noindex and a nofollow set.
* Fixes a bug where internal taxonomies would be shown in the sitemap exlusion settings.
* Fixes a bug in the activation and deactivation where we would execute our code for every network, props [Felix Arntz](https://github.com/felixarntz).
* Fixes a bug where the primary category wasn't taken into account when calling `get_permalink` on the frontend.
* Fixes a compatibility issue with MultilingualPress, props [Thorsten Frommen](https://github.com/tfrommen).
* Fixes compatibility issues with Easing Slider and WooCommerce Variation Swatches and Photos.
* Fixes a bug where a JavaScript template wasn't included when the dependent JavaScript was, props [Darren Ethier](https://github.com/nerrad).
* Fixes a bug where the descriptions for removing the stopwords and the ?replytocom were merged.
* Fixes a bug where the recommended Facebook image dimensions weren't the same as the Facebook documentation.
* Fixes a bug where the dashboard widget wasn't cached correctly, props [Marko Heijnen](https://github.com/markoheijnen)
* Fixes a bug where the sitemaps weren't cached correctly on 32 bit systems.
* Fixes an issue where multi term archives didn't have a noindex set.
* Fixes a bug where we would do an AJAX request on every keystroke in the focus keyword field.
* Fixes a bug where we would check for shortcodes on every keystroke in the content field.
* Fixes a bug where rewrite rules wouldn't be flushed correctly on plugin activation.
* Fixes a bug where the GlotPress banner wouldn't load on HTTPS sites.
= 3.1.2 =
Release Date: March 23rd, 2016
* Enhancements:
* Makes sure the permalink on the frontend also makes use of the primary category if one has been selected.
* Bugfixes:
* Fixes a compatibility issue with the upcoming WordPress 4.5, where the Yoast SEO metabox and columns were no longer shown on taxonomy and term edit pages.
* Fixes a bug where the default category that was shown in the breadcrumbs was no longer the most deeply nested one.
* Fixes a bug where the file editor could be accessed by non admin users. Thanks [Jörn Lund](https://github.com/mcguffin) for the patch!
* Fixes a JS error on the post edit page that was caused when the WP slugeditor wasn't present.
* Fixes an issue where our indexability check would fail on installs with WordFence that have the "block fake Google crawlers" setting enabled.
= 3.1.1 =
Release Date: March 8th, 2016
* Bugfixes:
* Fixes a bug where part of the Yoast SEO metabox was no longer translated.
* Fixes a bug where the post slug would be overwritten with the post ID in case a post was autosaved and did not have a title yet.
= 3.1 =
Release Date: March 1st, 2016
* Features:
* Added an interface to select a primary category for a post, which are used in the post's breadcrumbs and have a few other nice SEO advantages.
* Added SEO score column to the taxonomy overviews.
* Enhancements:
* Replaces all checkboxes and radio buttons on settings pages with styled toggles.
* Adds a new interface for the snippet preview which addresses most of the known UX issues:
* To clarify how the snippet preview can be edited, we've added an 'edit' button.
* Many users were looking for the "SEO title" and "Meta description" input fields. Those have been reintroduced and can be edited by clicking the edit button.
* We've gotten rid of the horribly inaccessible contenteditable elements and moved back to labeled input elements.
* The progress indicator for both SEO title and meta description has returned in the form of progress bars underneath the input elements.
* We've made a clear distinction between the snippet preview and the snippet editor and have tried to clearly signify which input fields affect which parts of the snippet preview.
* We've made sure both preview and snippet editor handle "%%" variables well. In the editor we show the variables and in the preview we render them.
* We've made sure templates that are set under "Titles & Metas" are well reflected in the snippet preview and editor. When they are set, they are shown as placeholder text in the input fields.
* The progress bars also take into account templates and "%%" variables, giving clearer indication if anything should still be added to the SEO title or meta description.
* We've reintroduced behavior where a (generated) example meta description is made grey in the snippet preview to indicate that it's not been set.
* Adds og:image:width and og:image:height metatags to ensure an image is properly rendered for a user the first time a page is shared on Facebook.
* Includes a few minor performance improvements for the content analysis.
* Slightly optimizes the way options are handled. We now only fetch the options we need.
* Makes sure SEO scores for taxonomies are also taken into account when recalculating the SEO scores.
* Updated the list of locales supported by Facebook.
* Makes sure the notification to see the latest changes only pops up on major and minor version and is dismissible even if JavaScript is broken.
* Corrected priority of gallery images in Twitter cards.
* Added filters to allow filtering term and post content before it is sent to the recalculation tool for analysis.
* Improved the way sitemaps are invalidated.
* Duplicate content prevention / Crawl budget improvement: We now hide XML sitemaps for internal WP taxonomies like link category, nav menu and post format.
* Removed all functionality related to Yahoo! directory, since it no longer exists...
* Makes sure the post type archive link for the "Post" post type is not shown in the breadcrumbs.
* Temporarily disabled all non-vital notifications until we come up with a more user-friendly way of dealing with them.
* Bugfixes:
* Fixes a bug where the date was no longer shown in the snippet preview even when the option to show it was selected under "Titles & Metas".
* Fixes a reported "property of non-object" notice that occured when no valid screen object was available. Thanks [Chris Jean](https://github.com/chrisbliss18) for the fix.
* Fixes a bug where Google Search Console would display last_crawled and last_received dates in the wrong format.
* Fixes a bug where the `wpseo_canonical` filter could still be overridden by an admin setting. This is no longer the case.
* Fixes shorthand date formats for Open Graph tags.
* Fixes a bug where calls to translate.yoast.com would fail because of issues with HTTPS.
* Fixes a bug where the content analysis would not work properly anymore when switching multiple times between "text" and "visual" in tinyMCE.
* Fixes a bug where the Yoast SEO metabox was no longer loaded on the Media edit page.
* Fixes an "invalid argument warning" in the options. Thanks [Melvin Tercan](https://github.com/melvinmt) for fixing.
* Fixes a bug where we were causing JS errors by hooking to erroneously on AjaxComplete. This solves multiple compatibility issues including the ones with "Advanced Custom Fields".
* Fixes a bug where saving a nav menu item would cause unnecessary pings to search engines, also resulting in timeouts and long load times for saving menu's. Thanks [Ben Constable](https://github.com/BenConstable) for providing a fix.
* Fixes memory issues caused by doing post counts with WP_Query. Thanks [Emre Erkan](https://github.com/karalamalar) for fixing.
* Fixes a bug where sitemap caches were not properly cleared for sites that use external object caching.
* Fixes a bug where stopwords were no longer stripped from the slug that was generated by WordPress.
= 3.0.7 =
Release Date: December 23rd, 2015
* Enhancements:
* Removes email notifications for OnPage.org indexability check. It caused more issues than it solved.
* Adds several UX improvements to the snippet editor, making it more clear it is editable.
= 3.0.6 =
Release Date: December 1st, 2015
* Bugfixes:
* Fixes the recalculate tool that was broken with the Localized Flesch Reading ease change...
= 3.0.5 =
Release Date: December 1st, 2015
* Enhancements:
* Made it possible to opt out from the OnPage.org indexability check.
* Contains a few small performance enhancements in the Content Analysis.
* Only includes Flesch Reading ease test when site language is set to English, since it doesn't really add value in other languages yet.
* Bugfixes:
* Fixes a lot of issues with dismissible notices. Thanks [Craig Pearson](https://github.com/craigpearson) for writing the patch!
* Fixes several issues with keyword recognition for keywords which contain punctuation.
* Fixes an issue where keywords containing diacritics were not recognized in alt tags.
= 3.0.4 =
Release Date: November 25th, 2015
* Enhancement: Made the "Analyze entire site" button have better color contrast and resemble JetPack. Thanks [WPExplorer](https://github.com/wpexplorer) for the contribution.
* Bugfixes:
* Fixes JS errors in combination with Give plugin, CMB2 Framework, ACF layout builder and any other plugin that replaces the editor with something else. Thanks a lot [Daniel Seripap](https://github.com/seripap) for fixing.
* Fixes JavaScript error on post types without 'editor' capability. Thanks [Aaron Hipple](https://github.com/aaronhipple) for the fix and [Zvonko Biškup](https://github.com/codeforest) for testing.
* Fixes a lot of text analysis issues for languages with non-latin scripts, including the "0% keyword density" issues.
* Fixes an issue where html tags were not stripped properly from taxonomy descriptions for custom taxonomies.
* Fixes possible "URI too long" errors when parsing shortcodes in the content before it is analyzed.
= 3.0.3 =
Release Date: November 19th, 2015
* Bugfixes:
* Fixes a bug where the snippet preview was broken.
= 3.0.2 =
Release Date: November 19th, 2015
* Bugfixes:
* Fixes a bug where disabling the visual editor caused our content analysis to break.
* Fixes a bug where the content analysis would break on installs that replace tinyMCE with ckEditor. Currently only supports the html editor.
* Fixes a bug where slug changes were not properly synchronized in the snippet preview.
* Fixes a bug where long slugs could be broken by wrongful synchronization with the snippet preview.
* Fixes a bug where digits were not analyzed well in the content, causing focus keywords or keyphrases with digits to no longer be matched.
* Fixes a bug where the url in the snippet preview was not in line with permalink settings. Fixed for permalinks containing the post name.
* Fixes a bug where focus keyphrases of more than two words would not be recognized properly in the content.
* Fixes a bug where the translation files were corrupted causing the translations to no longer work.
* Enhancements:
* Fixes caching problems. We've versioned file names for assets that have changed to circumvent caching strategies that consider preventing regular cache busting a good idea...
= 3.0.1 =
Release Date: November 18th, 2015
* Bugfixes:
* Fixes a bug where users where getting error notifications about how their site was not indexable when in fact no check had been performed yet.
* Fixes a few broken links to help docs about the OnPage.org integration.
* Fixes an edgecase where the indexability check would go wrong for sites that filter the home url.
* Fixes a bug where the admin email that was sent to report the current indexability status was not rendered as HTML.
= 3.0 =
Release Date: November 18th, 2015
* Features:
* Adds realtime content analysis to the Yoast SEO metabox for all post types and taxonomies.
* Adds a tool to recalculate all SEO scores using the new client side analysis.
* Adds a content analysis plugin for parsing shortcodes before the content is analyzed. This means the snippet preview will now take the rendered content of shortcodes into account.
* Adds a content analysis plugin for parsing replace vars before the content is analyzed, allowing templates set in the Yoast SEO admin to work everywhere.
* Adds a weekly check if the homepage is indexable (in collaboration with [OnPage.org](https://en.onpage.org/lp/yoast/)).
* Adds possibility to import titles, metas and settings from the WPSEO.de plugin.
* Adds possibility to set Facebook (Opengraph), Twitter and Google+ metadata for taxonomies.
* Enhancements:
* We've completely revised the UX of the Yoast SEO metabox. We've introduced multiple sections which in turn can contain one or more tabs.
* Makes the Yoast SEO metabox on the taxonomy edit page the same as on the post edit page.
* Makes sure the capability for the General Settings menu is also `wpseo_manage_options_capability`.
* Adds a fix to the tour allowing for multiple plugins to use WP pointers at the same time.
* Makes sure all Yoast SEO settings pages are also accessible through the WP admin bar.
* Bugfixes:
* Fixes a bug where the `og:image` would not be set, even when a default image was available.
* Fixes a bug where the links in the sitemap would 'randomly' change from https to http or the other way around (in very rare circumstances).
* Fixes a bug where it was not possible to upload different images for different social media in the post metabox.
* Fixes a bug where users would see the after-update notice, but were not allowed to visit the about page.
* Fixes a bug where we were not properly splitting taxonomy metadata when a shared taxonomy term got split through a Cron job, props [Daniel Homer](https://github.com/danielhomer).
* Other notable changes:
* Adds a JavaScript API for registering data modifications that is quite similar to `add_filter`/`apply_filters` in WordPress. Allows for filtering data before it is analyzed. See [YoastSEO.js](https://github.com/Yoast/YoastSEO.js).
* Adds a JavaScript API for adding content analysis tests, see [YoastSEO.js](https://github.com/Yoast/YoastSEO.js).
* Because we moved the entire content analysis to JavaScript, we had to remove the following PHP filters:
* `wpseo_pre_analysis_post_content`. Alternative: [Modifications API](https://github.com/Yoast/YoastSEO.js).
* `wpseo_metadesc_length`. Functionality removed.
* `wpseo_metadesc_length_reason`. Functionality removed.
* `wpseo_body_length_score`. Alternative: [Content Checks API](https://github.com/Yoast/YoastSEO.js).
* `wpseo_linkdex_results`. Alternative: [Content Checks API](https://github.com/Yoast/YoastSEO.js).
* `wpseo_snippet`. Functionality removed.
= 2.3.5 =
Release Date: September 16th, 2015
* Bugfixes:
* Fixes the Twitter image metatag that was invalidated after a recent API change by Twitter. Thanks [Andy Piper](https://github.com/andypiper) for notifying us.
* Removes all tests directories from the release. Props [Edward Beckett](https://github.com/EdwardBeckett) for reporting.
* Updated the minimum required version of WordPress to 4.0.
= 2.3.4 =
Release Date: August 6th, 2015
* Bugfixes:
* Fixes a bug where the focus keyword test in the Yoast SEO metabox was broken as a regression of removing the autocomplete functionality.
= 2.3.3 =
Release Date: August 6th, 2015
* Removes the autocomplete functionality from the focus keyword field in the Yoast SEO metabox because Google is shutting down its autocomplete API [as of August 10th](http://googlewebmastercentral.blogspot.nl/2015/07/update-on-autocomplete-api.html).
* Enhancements:
* Introduces a dismissible notice encouraging users to connect with Google Search Console.
* Improves the dashboard widget to only show posts which are actually editable by the current user.
* Makes the plugin conflict notices persistent and dismissible. Once dismissed, it will no longer be shown for the specific set of conflicting plugins the notice has been dismissed for.
* Contains a few textual improvements.
* Makes sure the counts are updated correctly and intuitively when marking a Search Console issue as fixed.
* Bugfixes:
* Fixes a bug where current_user_can was called before init, props [Claudio Sanches](https://github.com/claudiosmweb).
* Fixes a bug where the article:publisher metatag was also included on pages that were not of type 'article'.
* Fixes a bug where the link to the list of posts with the same focus keyword was broken for focus keywords containing a space.
* Fixes a bug where a h3 header was being closed with a h2 closing tag.
* Fixes a bug where the Google Search Console issues table was giving errors on installs running on PHP 5.2.
* Fixes a bug where the sitemap caches were no longer being cleared when running Yoast SEO in the upcoming 4.3 release of WordPress.
= 2.3.2 =
Release Date: July 23rd, 2015
* Bugfixes:
* Fixes a bug where non-admin users were no longer able to update their profile with Yoast SEO active.
* Fixes a bug where all labels in the Yoast SEO admin were bold.
= 2.3.1 =
Release Date: July 22nd, 2015
* Bugfixes:
* Makes sure authors and editors cannot submit advanced metadata on a post when the advanced tab in the metabox has been disabled for them. Thanks Peter Allor from IBM for finding and reporting this issue.
* Fixes a bug where upgrading to version 2.3 would occasionally cause WSOD's on both admin and frontend. We were unable to pinpoint the exact conflicting plugins and themes, but we are quite confident it was caused by us using, and others hooking into, WP_Query too early.
= 2.3 =
Release Date: July 21st, 2015
* Features:
* Adds full integration with Google Search Console (formerly: Google Webmaster Tools). It is now possible to see all errors from Google straight in your WordPress install. If you have [Yoast SEO Premium](https://yoast.com/wordpress/plugins/seo-premium/#utm_source=wordpress-seo-config&utm_medium=textlink&utm_campaign=changelog), you'll even be able to fix those errors by redirecting the broken urls.
* Adds a dashboard widget showing published posts' SEO scores. Thanks [Brandon Hubbard](https://github.com/bhubbard) for the idea!
* Adds a customizer panel for Yoast SEO Breadcrumbs if breadcrumbs are enabled or the active theme has declared theme support for it. Props again to [Brandon Hubbard](https://github.com/bhubbard) for his awesome contribution.
* Enhancements:
* Renames plugin from "WordPress SEO by Yoast" to "Yoast SEO".
* Adds a warning advising to change the tagline, if a site still has the default WordPress tagline "just another WordPress site".
* Changes the default columns visibility for the edit posts overview page. Only the SEO score column is now visible by default.
* Contains several en_US string improvements, including a fix for a typo in the word "typos"... Thanks [Gary Jones](https://github.com/GaryJones) for redacting!
* Adds a filter to allow filtering the content before analysis in the Twitter class, props [Pete Nelson](https://github.com/petenelson).
* Adds a link to our knowledge base on how to retrieve a Facebook admin user ID.
* Bugfixes:
* Fixes a bug where sitemaps for taxonomies with no eligible terms were still included and responded with 404 errors when visited.
* Fixes a bug where breadcrumbs were wrongly nested on archive paginations, props [Filippo Buratti](https://github.com/fburatti).
* Fixes a bug where the wrong separator was used after import/export.
* Fixes a bug where XML Sitemaps query invalidation caused other queries to fail as well.
* Fixes a bug where the wrong placeholder was being used for the search term string in the JSON+LD Search markup.
* Fixes a bug where the link to the newsletter signup in the tour was broken by uncommunicated changes in Mailchimp.
* Fixes a bug where the Edit Files settings page in the network admin was broken, props [Ajay D'Souza](https://github.com/ajaydsouza).
* Fixes a broken link in the advanced tab of the Yoast SEO metabox to the titles and meta's settings.
* Other notable changes:
* Removed the possibility to redirect a post in the advanced tab of the Yoast SEO metabox.
* Moved the option to include a post in sitemap from the advanced tab of the Yoast SEO metabox to the sitemap settings.
* Removed the option to configure sitemap priority in the advanced tab of the Yoast SEO metabox.
* Added multiple checks to prevent plugin compatibility issue between Yoast SEO and old versions of Google Analytics by Yoast.
* Updated the banners with new designs.
= 2.2.1 =
Release Date: June 11th, 2015
* Makes sure users can close the tour by circumventing possible JavaScript caching issues that might occur.
= 2.2 =
Release Date: June 10th, 2015
* Enhancements:
* Contains several accessibility improvements, including 'for' attributes for labels and several links to explanatory articles.
* Adds support for creating partial sitemaps with WP CLI, props [Lars Schenk](https://github.com/larsschenk).
* Add Google's mobile friendly test to the SEO toolbar, props [Brandon Hubbard](https://github.com/bhubbard).
* Makes sure slugs are not being stripped if the remaining slug is less than 3 characters, props [andyexeter](https://github.com/andyexeter).
* Shows an activation error when dependencies were not installed properly with composer.
* Added a filter to allow the RSS footer to be dynamically shown/hidden, props [Hugh Lashbrooke](https://github.com/hlashbrooke).
* Added many translator comments to help translators more easily get the context.
* Made sure Open Graph article tags are added separately, following up on the Open Graph specification.
* Adds recommended image sizes per Social network in the social tab of the SEO metabox.
* Removes the tracking functionality.
* Shows a dismissible notice with a link to the about page that is shown after every update. The user is no longer being redirected and only has to dismiss the notice once for all sites (in case of multisite).
* Adds a link to the about page to the general tab of the settings dashboard.
* Makes the tour dismissible on user level.
* Adds Twitter profile to JSON LD output.
* Twitter profile input field now also accepts full url and automatically strips it down to just the username.
* Only adds the JSON LD output to the frontpage, since it's not needed on other pages.
* Makes all Yoast SEO notices dismissible.
* Bugfixes:
* Fixes a bug where the widgets were removed from every XML file. This is now only the case for the sitemaps.
* Fixes a bug where validation errors were shown for the wrong variables in the titles and metas settings.
* Fixes a bug where the SEO toolbar was broken.
* Fixes a few typos, props [Gary Jones](https://github.com/GaryJones).
* Fixes a bug where links in tooltips were not impossible to click.
* Fixes a broken link to the permalinks section of the advanced settings, props [Michael Nordmeyer](https://github.com/michaelnordmeyer).
* Fixes settings import on multisite.
* Fixes a bug where the sitemap could contain datetimes in the wrong timezone.
* Fixes a bug where the wrong Facebook user ID was added to the fb:admins meta tag. Adding FB admin user id is now a manual process.
* Fixed Open Graph and Twitter cards on static posts pages
* Fixes a bug where sitemap cache was not always cleared after saving the Yoast SEO settings.
* Security:
* Fixes a possible XSS vulnerability in the snippet preview. Thanks [Charles Neill](https://twitter.com/ccneill) and [Mazen Gamal](https://twitter.com/mazengamal) for discovering and responsibly disclosing this issue.
= 2.1.1 =
Release Date: April 21st, 2015
* Bugfixes:
* Fixes a bug where the JSON+LD output was outputted twice when company or person info wasn't set.
* Fixes a compatibility issue with Video SEO and WooCommerce SEO add-ons causing WSOD on the frontend for video's and WooCommerce products.
* Fixes a compatibility issue with BBPress caused by hooking `current_user_can` too early.
= 2.1 =
Release Date: April 20th, 2015
* Features:
* Added support for [website name JSON+LD markup](https://developers.google.com/structured-data/site-name).
* Enhancements:
* Makes sure Twitter cards are by default enabled since they don't need to be validated anymore by Twitter.
* Removes the Twitter url meta tag, since Twitter no longer uses it.
* Shows a validation error when a user selects a featured image for a post that is smaller than 200x200 pixels.
* Shows a validation error when a user tries to use shortcodes in the titles and meta's settings page that are incompatible with the type of content those titles and meta's are associated with.
* Makes sure no taxonomy metadata is lost with the upcoming 4.2 version of WordPress.
* Upgraded to Facebook Graph API 3.0 for fetching Facebook user ID's straight from Facebook.
* Made the plugin conflict notices more user friendly, explaining better which piece of functionality might be impacted, offering a link to the corresponding settings and a button to deactivate the conflicting plugin.
* Bugfixes:
* Fixes a bug where the sitemaps were no longer being served from WP transient cache.
* Fixes a bug where breadcrumbs weren't nested properly.
* Fixes a possible "headers already sent" error in the sitemaps.
* Fixes a notice for the homepage URL in post type sitemaps.
* Fixes an "undefined index" notice on the sitemaps.
* Fixes an "undefined index" notice in the breadcrumbs.
* Fixes a bug where translations were not loaded when used as MU-plugin.
* Fixes a JS error that was raised when editing post-types without a TinyMCE editor.
* Security:
* Fixes a possible XSS vulnerability. Thanks [Johannes Schmitt](https://github.com/schmittjoh) from [Scrutinizer CI](https://scrutinizer-ci.com/) for discovering and responsibly disclosing this issue.