changelog.txt 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861
  1. == Changelog ==
  2. = 6.4.2 =
  3. * Release date: August 10, 2018
  4. * Release post: https://wp.me/p1moTy-9pL
  5. **Bug fixes**
  6. Comments: We fixed an error that broke functionality of Social Login for comments.
  7. = 6.4.1 =
  8. * Release date: August 8, 2018
  9. * Release post: https://wp.me/p1moTy-9pc
  10. **Bug fixes**
  11. Comments: We fixed an error that broke functionality of nested comments.
  12. = 6.4 =
  13. * Release date: August 7, 2018
  14. * Release post: https://wp.me/p1moTy-9md
  15. **Enhancements**
  16. * Connection: Updated connect splash screen with new content.
  17. * Sharing: Sharing section in wp-admin will now redirect to Calypso instead.
  18. * Docs: Added documentation for retrieving provision status of a site.
  19. * Shortcodes: Added oEmbed support for flat.io.
  20. * Widgets: Added `jetpack_top_posts_widget_layout` filter that allows you to create a custom display layout for the Top posts widget.
  21. * Privacy tools: Identify the data export/erasure callbacks for Feedback posts using associative keys, to better match the convention in Core.
  22. * Privacy tools: Added the `grunion_contact_form_delete_feedback_post` filter hook to allow specific Feedback posts to be bypassed during data erasure requests, similar to the `wp_anonymize_comment` filter in Core.
  23. * Contact Fork: Disabled random table optimizations on core tables.
  24. **Improved compatibility**
  25. * AMP: Improved AMP compatibility for Comments iframe.
  26. * General: The SEO Framework is no longer a conflicting Open Graph plugin and is now better compatible with Jetpack.
  27. **Bug fixes**
  28. * Shortcodes: Removed extra black bars from YouTube embeds as controls are inside the container now.
  29. * Simple Payments: Fixed the custom post type bug that affected Simple Payments widget for 2 year subscriptions.
  30. * Simple Payments: Fixed site failure which happens on Multisite installation with Simple Payments widget.
  31. * Simple Payments: Fixed syntax and misc compatibility issues with Simple Payments widget on PHP 5.2.
  32. * Simple Payments: Added warning for admin users if Simple Payments is not enabled but there are products published on pages/posts as a widget.
  33. * Lazy Images: Fixed an issue with images not loading while updating quantity in WooCommerce shopping cart.
  34. * Lazy Images: Fixed centered images that do not crop properly when no JavaScript is enabled.
  35. * General: Fixed auto scrolling to top when following the Quick Tour buttons.
  36. * General: Removed ability to set custom name for Site Identity section.
  37. * General: Added advanced control capabilities to image extraction from posts.
  38. = 6.3.3 =
  39. * Release date: July 30, 2018
  40. * Release post: https://wp.me/p1moTy-9n0
  41. **Facebook API Maintenance**
  42. On the 1st of August, 2018 Facebook sunsets its API allowing to post updates to your Profile Page. Only the API allowing to post to Facebook Pages will remain. This required several changes to Jetpack that we are presenting in this release:
  43. * Publicize: making sure we are handling existing connections gracefully.
  44. * Publicize: using logo font instead of images to make the UI up to date and mobile ready.
  45. * Publicize: removing the ability to select Facebook Profile connections in the UI.
  46. **Bug fixes**
  47. * General: properly handle Jetpack connection owner transition process.
  48. = 6.3.2 =
  49. * Release date: July 4, 2018
  50. * Release post: https://wp.me/p1moTy-96E
  51. **Bug fixes**
  52. * Simple Payment: Fix compatibility issues with PHP versions 5.3 and below
  53. = 6.3 =
  54. * Release date: July 3, 2018
  55. * Release post: https://wp.me/p1moTy-8ag
  56. **Major Enhancements**
  57. * Simple Payment: Added Simple Payment Products as Widgets, with the option to manage them via the Customizer.
  58. **Enhancements**
  59. * Connection: Added a new connect splash screen content.
  60. * Jetpack Dashboard: We removed the labels reading 'PAID' in order to introduce a better way to remark paid features.
  61. * General: Added support to display geo-location data added to posts and pages with Calypso.
  62. **Improved compatibility**
  63. * Protect: We solved an issue related to interaction with bbPress when trying to log in via a bbPress login widget. You would get redirected a few times to log in again after solving the math puzzle.
  64. **Bug fixes**
  65. * Comments: Implemented Core WordPress' Comment Cookie Consent Checkbox in Jetpack Comments.
  66. * General: We solved an issue that arised when using the Front End Editor feature plugin. A fatal error wass thrown due to us assuming the `enter_title_here` filter would only run within wp-admin.
  67. * General: Fixed a compatibility problem between WordPress TinyMCE and Jetpack Markdown when visiting the WordPress Dashboard.
  68. * Lazy Images: Fixed behaviour for when JavaScript is disabled.
  69. * Markdown: We fixed the naming of the class used for code blocks that specify a language.
  70. * Simple Payments: Fixed an error when the user had published Simple Payment Products but their Professional Subscription had expired.
  71. * Sitemap: We fixed the format of the date shown for videos on the video sitemap.
  72. * Stats: We fixed the width of the Stats page for wide screens.
  73. = 6.2.1 =
  74. * Release date: June 8, 2018
  75. * Release post: https://wp.me/p1moTy-8am
  76. **Bug fixes**
  77. * AMP: We fixed the rendering of the stats pixel for legacy, non-paired, non-canonical AMP pages.
  78. * Shortcodes: Fixed a fatal coming form the VR shortcode when using the Gutenberg editor in the frontend.
  79. = 6.2 =
  80. * Release date: June 5, 2018
  81. * Release post: https://wp.me/p1moTy-88v
  82. **Major Enhancements**
  83. * Shortcodes: Added Gutenberg block for the [vr] shortcode.
  84. **Enhancements**
  85. * AMP: Allow Jetpack features to work on AMP pages, and prevent Jetpack features from rendering to the front end at all.
  86. * Content Options: We now exclude Custom Post Types like Portfolio and Testimonial when we toggle content/excerpt via the Blog Display option in the customizer.
  87. * Cookies & Consent Widget: Added a "top" option for the cookie widget position. The existing bottom of the screen position is the default.
  88. * Tiled Galleries: use Photon if active when a Tiled Gallery links to media file.
  89. **Improved compatibility**
  90. * Widgets: Deprecated the use of Widget IDs in the Twitter Timeline Widget given that Twitter deprecates Widget IDs on July, 27th 2018.
  91. **Bug fixes**
  92. * Contact Form: Fixed an issue with undefined variables and a warning being logged when submitting the Contact Form.
  93. * Contact Form: Fixed scrolling/height for very large contact forms.
  94. * Widgets: Fixed Cookies & Consent Widget's bottom margin for themes that set a specific margin for forms.
  95. * Related Posts: Made it not try to fetch related posts for an unpublished post.
  96. * Sharing: Fixed an issue that resulted in wrong URLs for sharing on WhatsApp.
  97. * Sharing: Fixed the way we check if Akismet is active and has a valid key by caching the result of the verification.
  98. * Shortcodes: Fixed the Facebook shortcode in wp-admin.
  99. * Widget Visibility: Fixed styling for MS Edge.
  100. * Widgets: Removed .widget class from Cookies and Consent widget styles since .widget is not used in every theme.
  101. = 6.1.1 =
  102. * Release date: May 22, 2018
  103. * Release post: https://wp.me/p1moTy-85t
  104. **Enhancements**
  105. * Ads: Added new setting for Banner consent expiration. Added new filter jetpack_disable_eu_cookie_law_widget, which can be used to disable the banner.
  106. * Ads: Added a new personalized-ads-consent cookie for ads-enabled sites.
  107. * Ads: Added requirement and notice, and button-click opt-in for ads module users.
  108. * Ads: When a user site has a Privacy Policy page set (introduced in 4.9.6), we now default to using that privacy policy as a custom policy URL.
  109. * GDPR: A new warning is displayed while configuring an instance of the EU Cookie Law widget: "Caution: The default policy URL only covers cookies set by Jetpack. If you're running other plugins, custom cookies, or third-party tracking technologies, you should create and link to your own cookie statement."
  110. * GDPR: Added Feedback data (i.e., Contact Form Submissions) to the Personal Data exported and/or erased by the latest version of WordPress core.
  111. **Bug fixes**
  112. * Ads: We updated Ads behaviour to not show unless the visitor is on the main query within the loop.
  113. * General: We fixed a bug that resulted in an alert box showing for sites set to languages deriving from main ones.
  114. * Lazy Images: Fixed a bug where images would disappear when scrolling.
  115. * Sharing: make sure JS files can be loaded on development sites.
  116. * Sharing: Added check for validating Akismet key before allowing sharing by email.
  117. * WooCommerce Analytics: Fixed PHP warning when attemping to get a list of plugins.
  118. = 6.1 =
  119. * Release date: May 1, 2018
  120. * Release post: https://wp.me/p1moTy-7Sj
  121. **Major Enhancements**
  122. * WordAds: Introduced shortcode for inline Ad placement.
  123. * WordAds: Added support for the ads.txt file.
  124. **Enhancements**
  125. * Dashboard: We improved the styles of status numbers so it doesn't look like floating.
  126. * JSON API: Added support for Google My Business integration available on WordPress.com.
  127. * Masterbar: We removed the Next Steps link from the Account sidebar.
  128. * Publicize: Let the user know that we are going to send emails to subscribers and publicize to the different accounts.
  129. * Settings: Added "Privacy Information" links to each Jetpack module/feature card.
  130. * Shortcodes: Mixcloud shortcode now uses oEmbed.
  131. * Stats: Added a new filter jetpack_honor_dnt_header_for_stats, which if enabled would not track stats for visitors with DNT enabled.
  132. * Sync: Removed requirement for gzencode.
  133. * Widgets: always load script via HTTPS for Gravatar Hovercards.
  134. **Improved compatibility**
  135. * Social Icons Widget: Improved support on screen reader text for themes that do not provide support out of the box.
  136. * Sharing: Removed the sharing and like display functionality from Cart, Checkout, and Account WooCommerce pages.
  137. **Bug fixes**
  138. * Admin Page: We fixed the internationalization of the plans page.
  139. * Ads: We fixed a problem that impeded Premium Plan customers to activate Google Analytics.
  140. * Auto Updates: We fixed a warning being thrown due to a bad concatenation of strings.
  141. * General: Fixed a warning that was being logged due to attempting to use in_array() over a variable that didn't always contain an array.
  142. * General: Fixed Warning: count(): Parameter must be an array or an object that implements Countable showing on PHP 7.x.
  143. * JSON API: Fixed internationalization on embed endpoint.
  144. * Theme Tools: Show featured images in WooCommerce pages when Display on blog and archives is turned off for Themes that support this feature.
  145. * Publicize: Avoid adding Publicize post meta when a post transitions to publish and it is not a publicize-able post type.
  146. * Settings: Fixed the icon representing the minimum plan needed for SEO and Google Analytics features.
  147. * Slideshow: Fixed an invalid argument supplied for foreach() warning.
  148. * SSO: We fixed the name of a filter which contained a typo before. The filter is now named: `jetpack_sso_auth_cookie_expiration`.
  149. * SSO: Fixed some cases where we were not handling secure cookies for sites running over https.
  150. * Sync: Fixed Warning: Invalid argument supplied for foreach().
  151. * Sync: Fixed Warning: Warning: json_encode(): recursion detected.
  152. * WooCommerce Analytics: fixed broken Remove From Cart link.
  153. = 6.0 =
  154. * Release date: April 3, 2018
  155. * Release post: https://wp.me/p1moTy-7xM
  156. **Major Enhancements**
  157. * Admin Page: Introduced a new Privacy admin page linked at the bottom of the Jetpack dashboard.
  158. * Admin Page: Introduced a Privacy toggle that allows the user to disable event tracking.
  159. * Widgets: Added new Social Icons widget and deprecated old Social Media Icons widget.
  160. **Enhancements**
  161. * Activity Log: Started syncing comment untrashed and comment unspammed events.
  162. * Admin Page: Added inline module settings for plan welcome page.
  163. * Admin Page: Removed Javascript patterns previously used in the Admin Page that should improve performance lightly (bind pattern).
  164. * Admin Page: Made Jetpack Monitor setting management easier by adding a simple toggle.
  165. * Admin Page: Moved the button for closing the Jumpstart modal closer to the dialog so it's more visible.
  166. * Admin Page: Updated the "install and activate" link in the Backups card to be a functional link matching the "Set up" button.
  167. * Admin Page: Updated notices style to be more accessible.
  168. * Admin Page: We now show a link to see all plans on small screens.
  169. * Admin Page: Settings in Jetpack dashboard now feature contextual help and a link to learn more about it.
  170. * Ads: Added site id to head meta.
  171. * Comments: Improved accessibility of comments form by adding title attributes.
  172. * Connect: Removed account creation links from below the Set Up Jetpack buttons.
  173. * General: Show correct available status in Jetpack modules list if module is not supported by current plan.
  174. * General: Removed holiday snow module.
  175. * General: Return error in wp-cli if activating a module that is not supported by the current plan.
  176. * Google Translate Widget: Made sure the widget is responsive by default.
  177. * JITM: We now allow specifying that a jitm can be opened in a new window, or the same window.
  178. * JITM: We now don't use all caps for buttons text.
  179. * Likes: Removed Likes from Jumpstart.
  180. * Likes/Sharing: Moved metabox in post editor to the right side for a better fit.
  181. * Masterbar: Made the Sign Out link in the Master always log you out from WordPress.com.
  182. * Publicize: Made styling of Publicize more consistent with wp-admin.
  183. * Protect: Started blocking XML RPC requests when they get marked as blocked by Protect.
  184. * Search: Made the Search widget available whether or not Extra Sidebar Widgets is enabled.
  185. * SEO Tools: Removed SEO Tools from Jumpstart
  186. * Shortcodes: We now load Twitters widget.js over https.
  187. * Subscriptions: We've made it a better experience if you try to subscribe to a site you are already subscribed to.
  188. * Sync: Stopped syncing personal data coming from WooCommerce orders.
  189. * VideoPress: Default to grid view when linking to upload videos
  190. * Warm Welcome: Added Search to the features listed on the Warm Welcome dialog for Professional Plan.
  191. * Widgets: Added rel=noopener attribute to links in the Display WordPress Posts widget if set to open in a new window.
  192. **Improved compatibility**
  193. * bbPress: Markdown support added for bbPress CPTs.
  194. * PHP 7.1: Fixed an error coming from one of our json-api endpoints.
  195. **Bug fixes**
  196. * Admin Page: Fixed Dashboard connection card from showing text that overflows the card.
  197. * Admin Page: Fixed directory separator character used when displaying the site URL on the disconnect dialog.
  198. * Admin Page: Fixed an issue by which clicking the back button on a page visited after the Admin Page would result in the Admin Page being rendered with cached data.
  199. * Admin Page: Don't show a Set Up button when searching for modules that are inactive in Jetpack Settings page. The Set Up button is meant for paid features coming from plugins.
  200. * Admin Page: Make it clear when tracking begins in the connetion dialog.
  201. * Admin Page: Hide the date range tabs when the initial dialog is shown.
  202. * Admin Page: Fixed the positioning of popovers in the Jetpack Settings page.
  203. * Admin Page: Fixed a bug with the Ads settings toggle.
  204. * Admin Page: Fixed a display issue for the custom user capability "jetpack_connect".
  205. * Admin Page: Made sure translations are properly applied to several phrases.
  206. * Connection Banner: Updated style to better fit wide screens.
  207. * Connection Banner: Added illustration SVGs.
  208. * Contact Form: Fixed width style of input for Website address.
  209. * Google Analytics: fix PHP notice on search pages.
  210. * Infinite Scroll: Fixed issues where the first was being duplicated on scroll.
  211. * Likes: Made manually enabled likes remain being likeable if Likes are enabled for all posts
  212. * Masterbar: Fixed a javascript error that would pop up with the Grammarly extension enabled on Chrome macOS.
  213. * Search: Added default values for the Search widget so it can be added from the Customizer.
  214. * Settings: Fixed overflow/overlap when there are many ignored phrases in spelling options.
  215. * Settings: Updated SEO/analytics links to avoid unnecessary redirects.
  216. * Stats: Fixed column spacing styling issues in WP Dashboard box for Jetpack stats.
  217. * VaultPress: Remove menu item that links nowhere when Rewind is enabled.
  218. * Widgets: Fixed issue with custom URL choice and selective refresh in the EU Cookie Law widget.
  219. * WooCommerce Analytics: Fixed PHP warning coming from str_replace usage.
  220. * WooCommerce Analytics: Started tracking all possible ways to add a product to a cart.
  221. == 5.9 ==
  222. * Release date: March 6, 2018
  223. * Release post: https://wp.me/p1moTy-7mW
  224. **Major Enhancements**
  225. * WooCommerce Analytics: Added a new module for WooCommerce analytics that will use Jetpack's analytics functionality to help you track activity on your WooCommerce store.
  226. * Custom Content Types: Added support for excerpts on Testimonial and Portfolio.
  227. **Enhancements**
  228. * Activity Log: Improved the way we show failed login attempts in Jetpack's Activity Log.
  229. * Admin Page: We now hide settings for Lazy Images and Photon in the Admin page when the modules are not enabled due to being filtered out by jetpack_get_available_modules.
  230. * Admin Page: Now we only show the dismissal button in Apps card of the Jetpack Dashboard for admin users.
  231. * Build: Added a pre-commit hook for linting the Jetpack Admin Page source code. This aids in finding common syntax and style problems before having to wait for automated tests to run.
  232. * JSON API: We removed an obsolete endpoint for updating invites.
  233. * Onboarding: Added the ability to configure the country for a business address the using the Onboarding functionality of Jetpack.
  234. * Onboarding: Added the ability to enable the stats module when using the Onboarding functionality.
  235. * Onboarding: We now delete the onboarding token when the site gets connected.
  236. * Jetpack Start: Updated scripts for partners allowing to pass a tracking ID when provisioning or cancelling a plan which will help in debugging.
  237. * Jetpack Start: Improved the documentation for partners so they're now able to get them right on the Jetpack's Github repository under the docs/partners directory.
  238. * Plans: Correctly forward the client IP address for currency localization.
  239. * Plans: Updated the copy-text on Jetpack's Admin page for plans to be more concise on the features of each plan.
  240. * REST API: Added a plans endpoint to Jetpack's REST API to better handle the features of each Jetpack plan internally.
  241. * Search Implicitly activate Jetpack Search when attempting to add the Jetpack Search widget.
  242. * Search: Updated the Jetpack Search settings card to be more helpful in setting up the widget.
  243. * Search: We made the "Add Jetpack Search Widget" link in the Search module settings card open the widgets section of the customizer.
  244. * Search: Move any active search widgets to the inactive list if you disable the search module.
  245. * Search: Only log mysql and ES query times that are less than 60 seconds. There are some outliers that mess up our stats.
  246. * Sync: Improved the way widget titles are synchronized to WordPress.com servers when widgets are saved or updated.
  247. * Twitter Cards: Added new jetpack_twitter_image_default filter to allow themes and plugins to customize twitter:image when no suitable image is found automatically.
  248. * We updated the way we handle Jetpack's green color in out stylesheets for better compatibility with Jetpack's new logo.
  249. **Improved compatibility**
  250. * Admin Page: Jetpack's Admin Page javascript code is now fully compatible with React 16.
  251. * JSON API: Updated the modules endpoint Jetpack's JSON API to reply with a new property `override` that indicates if a module was either enabled or disabled by a filter.
  252. * Lazy Images: Updated the library used as IntersectionObserver for Lazy Images. We now use the W3C IntersectionObserver polyfill.
  253. * Lazy Images: Jetpack now allows the lazy images module to skip images with the skip-lazy css class or any given class of your choice by using the jetpack_lazy_images_blacklisted_classes filter.
  254. * Masterbar: Updated the sign out button behaviour of the Masterbar to not sign you out of WordPress.com when you sign out of your site for regular Jetpack sites.
  255. * REST API: Updated the modules endpoint in Jetpack's REST API to be aware of modules that have been filtered through option_jetpack_active_modules allowing for better compatibility with custom Jetpack installation where the administrator decides to filter out specific Jetpack modules.
  256. * Sync: Added the jetpack_sync_action_before_enqueue action that's done when anything gets enqueued before being synchronized to WordPress.com servers.
  257. **Bug fixes**
  258. * Admin Page: Removed all linting warnings for the JS code of the Admin page. These were only shown in development builds.
  259. * Connect: Fixed an issue that sometimes resulted in a notice being shown about another user already having connected a Jetpack site when attempting to connect your site to WordPress.com
  260. * General: Added suppress_filters param to get_posts / get_children function calls.
  261. * Markdown: Updated WordAds code to not use create_function which is getting deprecated in PHP 7.2.
  262. * Sync: Fixed a problem in Jetpack Sync code when trying to get property of non-object in the post syncing file.
  263. * Sync: Stopped synchronizing the sitemap post types to WordPress.com servers as it was an issue given the size of these.
  264. * Tracks events: Track events are logged now only if the user has accepted ToS and not just if Jetpack is connected.
  265. * Widget Visibility: Added a decodeEntities function in widget-conditions.js to handle entity decoding for the minor conditions dropdown.
  266. * WordAds: Updated WordAds code to not use create_function which is getting deprecated in PHP 7.2.
  267. = 5.8 =
  268. * Release date: February 6, 2018
  269. * Release post: https://wp.me/p1moTy-731
  270. **Major Enhancements**
  271. * [Lazy Images](https://jetpack.com/support/lazy-images/): after a Beta
  272. period, you can now enable this new feature from Jetpack > Settings in your
  273. dashboard.
  274. * [Elasticsearch-powered
  275. search](https://jetpack.com/features/design/elasticsearch-powered-search/):
  276. also out of Beta! We've improved the way data is indexed behind the scenes,
  277. and made changes to the Search widget and its filters. (Elasticsearch is a
  278. trademark of Elasticsearch BV, registered in the U.S. and in other countries.)
  279. **Enhancements**
  280. * Comment moderation tools: moderation emails now point to WordPress.com when
  281. using the `edit_links_calypso_redirect` option.
  282. * Custom CSS: add CSS Grid Layout support.
  283. * Dashboard: update list of features available in Paid plans.
  284. * Dashboard: improve the display of notices inside the Jetpack dashboard.
  285. * Dashboard: update content displayed in the Jetpack dashboard when not
  286. connected to WordPress.com.
  287. * Development mode: improve the display of the development notice.
  288. * General: add a new filter, `jetpack_active_modules`, allowing site owners to
  289. filter the list of active modules.
  290. * Notices: add rel tags to notice links to avoid issues when links open in a
  291. new window.
  292. * Onboarding: add functionality for saving Business Address in the Contact
  293. Info widget.
  294. * Onboarding: save site type during site setup process.
  295. * Onboarding: enable loading of specific modules when using the Onboarding
  296. process.
  297. * Post Images: allow passing size when searching for images in HTML.
  298. * REST API: update the plugin installation process to use a new library.
  299. * REST API: allow changing the number of posts displayed in the RSS feed, and
  300. whether feeds display full text or a summary.
  301. * REST API: simplify our invites endpoint.
  302. * Sharing: make sure the Whatsapp button works on mobile and on desktop.
  303. * Sharing: add new filter, `wp_sharing_email_send_post_subject`, to allow
  304. modifying the email sharing subject line.
  305. * Shortcodes: update the GettyImages shortcode to use the new format required
  306. by GettyImages.
  307. * Site Settings: add support for site language and timezone settings.
  308. * Sync: improve synchronization of user actions, theme and plugin edits /
  309. updates, post status, updates on Multisite networks, Protect events, and
  310. WooCommerce's meta data.
  311. * WordAds: enable the Ads in the header by default.
  312. * WordAds: add filters so site owners can control the display of the ads via
  313. code as well.
  314. **Improved compatibility**
  315. * Lazy Images: fix issues with the Gazette theme.
  316. * Open Graph: add Open Graph Metabox to the list of conflicting plugins.
  317. * Masterbar: fix incompatibility with BeaverBuilder plugin.
  318. * PHP 7.2: fix issues when running Jetpack with PHP 7.2.
  319. **Bug fixes**
  320. * Carousel: fix PHP Notice with images using custom meta.
  321. * Dashboard: make sure all links to WordPress.com point to the right site's
  322. settings on WordPress.com.
  323. * Dashboard: update links to the plugin interface on WordPress.com to load the
  324. full plugin management page.
  325. * General: fix images shown in the dashboard when Jetpack is installed in a
  326. directory different than `jetpack`.
  327. * Lazy Images: make sure Lazy Load can be triggered even when images are added
  328. to the content very late.
  329. * Stats: make sure the Stats script is XHTML compliant.
  330. * Widgets: Mailchimp - avoid conflicts with jQuery UI.
  331. = 5.7.1 =
  332. * Release date: January 16, 2018
  333. * Release post: https://wp.me/p1moTy-7aS
  334. **Bug Fixes**
  335. * Protect: Fixed the math problem fallback for logging into Multisite installations.
  336. * Settings: Made sure that the Security tab is no longer constantly updating the displayed information.
  337. = 5.7 =
  338. * Release date: January 2, 2018
  339. * Release post: https://wp.me/p1moTy-6FR
  340. **Enhancements**
  341. * Added ability to create revisions of Portfolio Projects.
  342. * Users hosting their sites with our Pressable partner who have Rewind access can now jump from the new Activity card in the Jetpack dashboard to the Activity Log in WordPress.com and restore or download backups for the site.
  343. * Comments: Edit links for comments in the frontend can redirect to calypso if the Jetpack option `edit_links_calypso_redirect` is enabled.
  344. * Protect: Updated the styling of the Protect page for recovering access to your site when you're locked out of it.
  345. * Search: Improved the UI for customizing the Search widget.
  346. **Improved compatibility**
  347. * Comments: Updated our filtering behavior for Jetpack comments so other plugins appending html to the comments section are able to do it instead of being filtered out by Jetpack.
  348. * Widgets: We updated Goodreads URLs to support https schema.
  349. * Masterbar: We now hide the Masterbar settings card in Jetpack’s Admin Page for sites that are set to always show the Masterbar.
  350. * Lazy Images: Added a callback for processing image attributes array when attempting to lazy load images are loaded via `wp_get_attachment_image`.
  351. * Search: Added hooks to the search filters widget so that other plugins/themes can hook in and change its output.
  352. **Bug fixes**
  353. * REST API: Added a check for avoiding a fatal error when attempting to include Akismet class files in case the Akismet plugin files are present but the permissions on the files there are set to be not readable
  354. * Markdown: Fixed bug where code inside shortcodes wasn't correctly restored from the hash.
  355. * Search: Fixed the link that acts as a month and year filter removal toggle.
  356. = 5.6.1 =
  357. * Release date: December 14, 2017
  358. * Release post: https://wp.me/p1moTy-6Jk
  359. **Security Improvements**
  360. * Contact Forms: Hardened security in Contact Form processing.
  361. **Enhancements**
  362. * Sharing: Bumped the character limit to 280 when sharing a post to Twitter.
  363. **Bug fixes**
  364. * Widget Visibility: Fixed a bug that disabled "saving" the widget when removing a Widget Visibility rule.
  365. = 5.6 =
  366. * Release date: December 5, 2017
  367. * Release post: https://wp.me/p1moTy-6zt
  368. **Major Enhancements**
  369. * Google Analytics: Add support for universal analytics for WooCommerce.
  370. * Performance: minify all JavaScript files used in the plugin.
  371. * Performance: add new Lazy Images module.
  372. * Protect: add new mechanism allowing you to send yourself an email with a
  373. link to the form when you are locked out of your site.
  374. **Enhancements**
  375. * Custom CSS: add new set of font properties that can be used in the CSS
  376. editor.
  377. * Photon: do not remove `width` and `height` attributes from image tags when
  378. known.
  379. * Sitemaps: add CLI commands to purge and built the sitemaps.
  380. * Sitemaps: only display the reporter log success messages if
  381. `JETPACK_DEV_DEBUG` is defined.
  382. * WordPress.com API: add new endpoints to allow for better comment management
  383. in third party interfaces like WordPress.com.
  384. * WordPress.com Toolbar: prevent dns prefetching for logged out users.
  385. **Improved compatibility**
  386. * Stats: remove function deprecated in PHP 7.2.
  387. **Bug fixes**
  388. * Comment Likes: make sure Like text is properly translated.
  389. * General: only load stats code when necessary.
  390. * Related Posts: allow site owners to exclude multiple blog posts from the
  391. list of Related Posts.
  392. * Sharing: remove inline JavaScript used in the email sharing form.
  393. * Search: Maintain ordering of the search filters in the widget.
  394. * Sync: avoid PHP notices during the synchronization process.
  395. = 5.5.1 =
  396. * Release date: November 21, 2017
  397. * Release post: https://wp.me/p1moTy-6Bd
  398. **Bug fixes**
  399. * In Jetpack 5.5 we made some changes that created errors if you were using other plugins that added custom links to the Plugins menu. This is now fixed.
  400. * We have fixed a problem that did not allow to upload plugins using API requests.
  401. * Open Graph links in post headers are no longer invalid in some special cases.
  402. * We fixed warnings happening when syncing users with WordPress.com.
  403. * We updated the way the Google+ button is loaded to match changes made by Google, to ensure the button is always displayed properly.
  404. * We fixed conflicts between Jetpack's Responsive Videos and the updates made to Video players in WordPress 4.9.
  405. * We updated Publicize's message length to match Twitter's new 280 character limit.
  406. = 5.5 =
  407. * Release date: November 7, 2017
  408. * Release post: https://wp.me/p1moTy-6rk
  409. **Major Enhancements**
  410. * Jetpack is now fully compatible with WordPress's [new Gallery Widget](https://make.wordpress.org/core/2017/09/25/introducing-the-gallery-widget/). Your old Gallery widgets powered by Jetpack will switch to the new Widget when you update to WordPress 4.9.
  411. **Enhancements**
  412. * We have improved the performance when loading the Jetpack Settings in the dashboard by optimizing the number of calls made when loading the page.
  413. * We have updated the plugin to do a better job of cleaning up after itself whenever you decide to remove Jetpack from your site.
  414. * We made some changes to reduce the number of connection issues that may happen on a site when switching from HTTP to HTTPs.
  415. * We made some performance improvements to the Jetpack dashboard interface, to make sure your options and settings are loaded faster there.
  416. * Error messages are also better in the Jetpack Dashboard; whenever you can't update settings, Jetpack will provide you with more information about why.
  417. * We improved the Jetpack update process to make sure updating Jetpack does not stress your database during it, even on high-traffic sites.
  418. * The next version of WordPress, 4.9, will be released very soon and will include [a lot of changes to its code editors](https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/). Jetpack's Custom CSS will be fully compatible with the new editors and their syntax highlighting feature.
  419. * We also made changes to make sure Jetpack was fully compatible with the [role and capability changes](https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/) in WordPress 4.9.
  420. * We have made some performance improvements to the Carousel feature.
  421. * Contact Form: do not process shortcodes in widgets when WordPress itself does, starting in 4.9.
  422. * Contact Form: we have improved the "website" field to display better error messages when you don't supply a URL. We have also improved the look of the date picker for the date field.
  423. * Contact Form: avoid duplicate slashes when loading editor style.
  424. * Masterbar: update the "Plugins" menu item to match the updated design on WordPress.com.
  425. * Open Graph: do not display images smaller than Facebook's required size.
  426. * Sharing: use Google's minified libraries to improve performance when loading Google buttons.
  427. * Sharing: update Open Graph Image tags appearing on the home page to offer better alternatives based on your site settings in Appearance > Customize.
  428. * We improved the way sitemaps are built so they do not consume too much memory when they are generated.
  429. * WP.me Shorlinks: those links will now always use HTTPS.
  430. * Spellchecker: we improved the admin interface to make it more clear when adding ignored phrases and saving them.
  431. * Subscriptions: we added a filter so third party developers can track comment subscription activations.
  432. * Sync: synchronize plugin action links to add that information to WordPress.com.
  433. * Sync: improvements to better track theme and widget changes.
  434. * VideoPress: we removed Jetpack version locking for directly embedded VideoPress videos to ensure all users receive the newest version of the player.
  435. * We added a new filter (`jetpack_google_translate_widget_layout`) to the Google Translate Widget to allow you to change its layout.
  436. * WordPress.com REST API: improve comment management for all roles, including post authors.
  437. * WordPress.com REST API: allow site owners to manage comments on attachment pages from WordPress.com.
  438. * WordPress.com REST API: improve the response from the API when WordPress' autoupdates are disabled.
  439. **Improved compatibility**
  440. * You can now use Jetpack's contact form and Yoast SEO's Focus keywords on the same page without any issues in the editor.
  441. * Top Posts Widget: avoid Fatal Errors when the widget is used on a site using WPML, and when a popular post cannot be found by WPML.
  442. * Sync: add more Custom Post Types from third-party plugins to the list of things we do not synchronize with WordPress.com, to improve sync performance.
  443. * Sharing: since [Press This is now a plugin and not part of WordPress itself](https://make.wordpress.org/core/2017/11/02/press-this-in-4-9/), we removed the Press This sharing button if you are not using the plugin.
  444. **Bug fixes**
  445. * We now avoid displaying notices to user roles that cannot benefit or act based on the info in the notices.
  446. * Gravatar Hovercards: avoid PHP Notices when the user info is an object.
  447. * Infinite Scroll: avoid PHP notices when a site customizes galleries thanks to the `post_gallery` filter.
  448. * Mailchimp: make sure subscription forms can still be embedded in posts and pages.
  449. * Mailchimp: do not require the use of the shortcodes feature to use the Mailchimp widget.
  450. * Mailchimp: fix issue where Mailchimp form code could not be added to the Mailchimp widget.
  451. * Masterbar: avoid JavaScript errors by always loading jQuery.
  452. * Post By Email: do not display any content in the email address field if no email address has ever been set before.
  453. * Publicize: avoid errors when DOMDocument is not available.
  454. * Publicize: we now hide the feature activation toggle if you are not allowed to manage Jetpack features.
  455. * Search: make sure module cannot be activated when the site does not use a Plan.
  456. * SEO Tools: do not output any custom meta tags if another SEO plugin is already active.
  457. * Sharing: make sure Twitter Cards can be displayed even when a post does not include a title.
  458. * Sharing: fix alignment of sharing buttons in the admin preview when using custom sharing buttons.
  459. * Sitemaps: wait a minute before to generate sitemaps when the feature is activated, to avoid performance issues.
  460. * Sync: avoid synchronization issues on Multisite networks using custom domains.
  461. * Top Posts Widget: display the default title when it is set to empty.
  462. * Milestone Widget: make sure the widget is displayed properly and can easily be translated into other languages.
  463. * Verification Tools: avoid notices when saving changes on a Multisite network admin page.
  464. * VideoPress: avoid missing file warning in the editor when using an RTL language.
  465. * Upcoming events Widget: avoid PHP notices on sites using a custom timezone setting.
  466. * WordPress.com REST API: avoid errors when installing plugins via the WordPress.com API.
  467. = 5.4 =
  468. * Release date: October 3, 2017
  469. * Release post: http://wp.me/p1moTy-67V
  470. **Major Enhancements**
  471. * Multiple improvements to the connection process, to allow more people to use the Jetpack plugin, even on very specific server configurations.
  472. * Add a new Welcome screen to guide site owners after they have purchased a Jetpack plan.
  473. **Enhancements**
  474. * Add Schema.org markup to the Contact Info Widget.
  475. * Add a new "Date" field to the Contact Form.
  476. * Do not show any update notices when in [development mode](http://jetpack.com/support/development-mode).
  477. * Improve our documentation to help contributors set up a unit testing environment.
  478. * Avoid conflicts between Jetpack's Infinite Scroll and other Infinite Scroll plugins.
  479. * Improvements to the WordPress.com REST API to avoid issues when interacting with your site's categories and tags on WordPress.com.
  480. * Allow third party plugin and theme authors to add new menu items to the WordPress.com toolbar.
  481. * Improve the Content Options panel displayed in the Customizer with certain themes.
  482. * Add architecture for the Jetpack Search feature, available for Jetpack Professional users.
  483. * Simple Payments: improve the display of the payment items when used on your site.
  484. * Ensure a proper display of the Recipe shortcode on sites using an RTL language.
  485. * Improve the display of the Facebook posts, images, and all other Facebook embeds in your posts.
  486. * Synchronize the author information for all published posts.
  487. * Record how Jetpack was discovered and activated to better understand how site owners first discover Jetpack.
  488. * Improve the display and options offered with the Milestone Widget.
  489. **Bug fixes**
  490. * We fixed layout issues appearing in the admin interface for IE11 users.
  491. * Comment Form: avoid whitespace sometimes appearing below the form with some themes.
  492. * Contact Form: avoid errors in the post editor on sites using RTL languages.
  493. * Toolbar: always display the Toolbar when it's active, regardless of other admin bar settings.
  494. * Widget Visibility: make sure rules are correctly migrated from the old Jetpack image widget to the new WordPress Image Widget.
  495. * Avoid errors showing that Jetpack is out of date on WordPress.com, when running a Multisite network.
  496. * WP CLI: avoid warnings when using the `wp jetpack protect whitelist list` command to list the whitelisted IP addresses in the Protect feature.
  497. * Avoid displaying raw HTML in the Stats Configuration screen.
  498. * Comment edits are reflected properly in wordpress.com.
  499. = 5.3 =
  500. * Release date: September 5, 2017
  501. * Release post: http://wp.me/p1moTy-5Xv
  502. **Major Enhancements**
  503. * Full PHP 7.1 compatibility.
  504. * It's now possible to preview your site within WordPress.com.
  505. **Enhancements**
  506. * The Ads feature now gives you more options and control over the ads displayed on your site.
  507. * Increased performance in the admin by cutting back on unnecessary requests.
  508. * Loading comment avatars from Facebook and Twitter through a more secure https.
  509. * Admin UI is much friendlier on initial activation when there are no stats to display.
  510. * You're now able to stop VideoPress from looping a video during autoplay through the shortcode.
  511. * Made some optimizations to the Jetpack connection process which means connecting your site more is more reliable.
  512. * The EU Cookie Law widget got some styling improvements and looks better in any theme.
  513. * There's a new Jetpack CLI command to allow testing of the Jetpack connection.
  514. * Added the Likes and Monitor features to our recommended features list, making it easier to activate for new sites.
  515. * Improvements made that makes sure we have the most up-to-date version of your site when managing from WordPress.com.
  516. * Added a link to view your Comments in the WordPress.com toolbar.
  517. * Lots of minor design improvements to the Jetpack admin area.
  518. * We've found a few places where we were able to optimize the loading of css files.
  519. * Removed the Omnisearch feature.
  520. **Bug fixes**
  521. * Fixed compatibility issues with plugins using TinyMCE.
  522. * Contact Form submission emails have been fixed for sites hosted on SiteGround.
  523. * Updating WordPress.com themes will no longer have any problems.
  524. * The Sitemaps feature will no longer error with posts/images with special characters in the title.
  525. * There are no more conflicts with the ACF plugin when adding a new custom field.
  526. * Fixed a bug that would cause some plugins to throw warnings with the Shortcode feature.
  527. * We're no longer loading a font on the front-end for the Likes feature, which will also have some performance benefits.
  528. * The Jetpack admin UI had some bugs that were causing some features to not display the correct active status, which are squashed now.
  529. * Cleaned up our markup to avoid XHTML validation errors.
  530. * Brought back a filter for the Widget Visibility feature that was accidentally removed.
  531. * Managing your comments and comment authors more reliable from WordPress.com.
  532. = 5.2.1 =
  533. * Release date: August 2, 2017
  534. * Release post: https://jetpack.com/?p=22686
  535. **Bug fixes**
  536. * Solves an issue that caused widgets to lose their content when saved in WP Admin or Customizer.
  537. = 5.2 =
  538. * Release date: August 1, 2017
  539. * Release post: https://jetpack.com/?p=22509
  540. **Major Enhancements**
  541. * Contact Forms now sports a fancy new interface that allows you to visually compose your form in the editor.
  542. * We have a new and slick way to showcase and explain the features we recommend to activate to new users.
  543. **Enhancements**
  544. * Reduced 500kb from plugin zip file, which means faster updates.
  545. * Refactored and reduced code for Comment Likes so it's faster and lighter.
  546. **Bug fixes**
  547. * An inconsistency experienced in WordPress.com dashboard when Related Posts settings were set in the local site's WP Admin is now fixed.
  548. * Fixed a 404 when loading Open Sans font from a stylesheet plus now it's only enqueued if it will be used.
  549. * Solve PHP warnings when Image widget wasn't migrated.
  550. = 5.1 =
  551. * Release date: July 5th, 2017
  552. * Release post: https://jetpack.com/?p=20888
  553. **Major Enhancements**
  554. * You and your readers can now show appreciation to particularly clever comments with the new Comment Likes feature.
  555. **Enhancements**
  556. * Quickly visit your current site's front-end directly from the Masterbar's new "View Site" item.
  557. * Site data fetch from /me/sites REST API endpoint now includes `blog_public` in the list of returned options.
  558. * The Flickr widget now automatically displays images in a grid if there's enough room.
  559. * E-mail sharing is now disabled by default unless it's explicitly enabled by a filter or Akismet is active.
  560. **Compatibility Improvements**
  561. * Updated instructions in Flickr widget to reflect recent changes to the Flickr UI.
  562. **Bug fixes**
  563. * EU Cookie Law Banner cookie no longer cached.
  564. * WP Admin menu can now be accessed in mobile when Masterbar is displayed.
  565. * We now sync the `order_id` for `order_items` in older WooCommerce versions.
  566. * UI now handles VaultPress connection or registration problems gracefully.
  567. * Photon now works correctly with images uploaded before WordPress 2.7.
  568. = 5.0 =
  569. * Release date: June 6th, 2017
  570. * Release post: http://wp.me/p1moTy-5hK
  571. **Enhancements**
  572. * Several changes to the Jetpack dashboard and notices: alignment tweaks, code refactor, text simplification, and more.
  573. * Changes to the communication layer between your site and WordPress.com, to improve performance and allow you to do more to manage your site from WordPress.com.
  574. * Social menu gets icons for Etsy, Meetup, 500px, and Goodreads.
  575. * Jetpack data sync now better supports WordPress updates, themes changes, widgets, and multisite networks.
  576. * Video is updated to be fully compatible with the upcoming Media Widget.
  577. * Force secure WordPress.com API requests for request body, remove deprecated stats methods, and add new endpoints for post listing and user invitations.
  578. * Jetpack's Command Line tools can now output information about the primary Jetpack site owner. Try `wp jetpack status`!
  579. * Custom CSS now supports the `animation-fill-mode`, `fill`, and `stroke` properties.
  580. * Remove the "Menus" item from the WordPress.com toolbar for parity with the toolbar on WordPress.com.
  581. * Improve the display of the Omnisearch results page on sites using an RTL language.
  582. * Trim any white space when adding new email address in the Contact Info Widget.
  583. * Improve the look of your recipes in search engine result pages, when you use the Recipe shortcode.
  584. **Compatibility Improvements**
  585. * Improve the connection process for end users and hosts.
  586. * Improve compatibility of Jetpack data sync with WooCommerce and Pet Manager plugins.
  587. * Make sure Jetpack's SEO Tools don't conflict with other SEO plugins that may already be active on the site, like Yoast SEO or All In One SEO Pack.
  588. **Bug Fixes**
  589. * Add a "Set Up" button when a Personal plan is purchased, but VaultPress isn't active yet.
  590. * When the Ads feature is active, do not display Ads in RSS feeds.
  591. * Comments do not use Photon for Facebook and Twitter avatars and now avoid non-secure warnings when submitting comments on a HTTP site in Safari.
  592. * Contact form emails are now sent in a way that ensures they are correctly rendered as HTML.
  593. * Properly print the full list of modules when using the sync command in Jetpack's Command Line Interface (CLI).
  594. * Avoid errors when reordering a lot of Restaurant menu items at once.
  595. * Add a mechanism to detect broken connection states and resolve them.
  596. * Autosaves can now be restored as Markdown.
  597. * Photon no longer conflicts with Facebook's CDN, local images, and plugins that customize reponsive images.
  598. * Avoid potential PHP notice in Publicize.
  599. * Fix bad jQuery selector in Presentations shortcode.
  600. * Avoid fatal errors for Social Links on sites running PHP 7.1.
  601. * Properly escape button attribute in spellchecker.
  602. * Avoid PHP notices for stats on some sites when user roles are not attributed properly.
  603. * No longer attempt to sync options that do not exist and avoid fatal errors when de/activating plugins.
  604. * Avoid errors when Social Menu functions have already been defined in the theme or in another plugin.
  605. * VideoPress media items now always return their unique ID, and do not trigger any PHP notice.
  606. * Fix style of the EU Cookie Law Widget on themes with specific positioning.
  607. * Use correct time constant to define an hour in Upcoming Events Widget.
  608. * Avoid HTML encoding issues in sitemaps.
  609. = 4.9 =
  610. * Release date: May 2nd, 2017
  611. * Release post: http://wp.me/p1moTy-4Rl
  612. **Major Enhancements**
  613. * New "EU Cookie Law Banner", Flickr, and "Internet Defense League" widgets.
  614. **Slightly Less Exciting Enhancements**
  615. * Success notices are automatically dismissed after a short period.
  616. * Removed unused code from "My Jetpack" interface and deprecated an XML-RPC method.
  617. * Contact Form now adds display names to email addresses in the `To` header.
  618. * Added an updated multiple unit tests increasing code coverage.
  619. * Development mode now also shows module list.
  620. * Updated the list of locales available in Jetpack.
  621. * Plugin auto-updates only triggered from WordPress.com and now trigger WordPress' maintenance mode.
  622. **Performance Improvements**
  623. * Record comment content modifications and moderation events to make sure comments are always up to date on WordPress.com.
  624. * Sync post deletions, changes to sidebar, user events (addition, removal, and update) and theme installation.
  625. * We now distinguish between a new and an updated attachment.
  626. * Sync plugin and theme names when a related event is triggered including theme updates.
  627. **Compatibility Improvements**
  628. * Protect avoid conflicts with other plugins hooking into the log in form.
  629. * Contact Form not auto-activated when Ninja Forms is active.
  630. * WordPess.com REST API now allows `HTTP PUT` requests.
  631. **Bug Fixes**
  632. * Fixed wording in Post By Email button when no email address has been generated.
  633. * Fixed a notice in the subscription widget in PHP 7.1
  634. * Properly display VaultPress notices in the Jetpack dashboard.
  635. * VideoPress now included in search results for "video" and fixed positioning of search icon on mobile screens.
  636. * Protect supports IPv6 addresses properly.
  637. * Dashboard avoids API requests being cached on some hosts and avoids errors when Spellchecker is inactive.
  638. * Contact Form message content type is now set properly to restore compatibility with email plugins.
  639. * Ads not displayed in the portfolio projects custom content type.
  640. * Display all sites available in a network, even on large multisite installations.
  641. * Featured Image is always used in tweets posted via Publicize.
  642. * Avoid fatal errors when the exclusion parameter in Related Posts is not a string.
  643. * Allow the removal of all custom title settings in the SEO feature.
  644. * Make sure images are not distorted when Tiled Galleries uses Photon.
  645. * Avoid PHP warnings and errors in the Stats dashboard on Multisite.
  646. * Avoid errors when the Jetpack plugin is deleted.
  647. = 4.8.2 =
  648. * Release date: April 7th, 2017
  649. * Release post: http://wp.me/p1moTy-4P0
  650. **Bug Fixes**
  651. * Fixed a bug that prevented activating/deactivating of some features in PHP versions below 5.4.
  652. * Removed an unused function that was also incompatible with PHP versions below 5.4.
  653. * Fixed a bug that was causing a blank Jetpack admin area.
  654. = 4.8.1 =
  655. * Release date: April 5th, 2017
  656. * Release post: http://wp.me/p1moTy-4N5
  657. **Bug Fixes**
  658. * An incompatibility with PHP versions lower than 5.4 was introduced in the last release, causing a fatal error and we've immediately fixed this.
  659. * Sitemaps: Some plugins were relying on a function that was removed in the last release, which has been fixed.
  660. * General: Clicking on the info icon in the settings area will no longer jump to the top of the page.
  661. * General: The Anti-spam card will always display the correct status in the Jetpack dashboard.
  662. = 4.8 =
  663. * Release date: April 4th, 2017
  664. * Release post: http://wp.me/p1moTy-4gA
  665. **Major Enhancements**
  666. * Easier to navigate Jetpack's feature settings in your dashboard and WordPress.com.
  667. * New WordPress.com Toolbar provides quick access to site management, stats, and other services.
  668. * New MailChimp Subscribe Popup widget.
  669. * Sitemaps are faster and now support sites with a very large amount of posts.
  670. * Contact Form now has a plain-text alternative and better avoids spam filters.
  671. * Debug form includes extra information to better prioritize your support requests.
  672. * Photon can now be used within the dashboard, and supports bbPress topics and replies.
  673. **Slightly Less Exciting Enhancements**
  674. * Improved previously confusing wording in Stats dashboard, and Featured Content options.
  675. * You can now embed Apple Keynotes straight from icloud.com in your posts and pages.
  676. * Changed Infinite Scroll button text on taxonomy page and added a new filter to short-circuit the `is_last_batch()` method.
  677. * Open Graph now uses transients to save image IDs.
  678. * You can now use full URLs in the Social Media Icons widget.
  679. * Milestone widget now allows custom links to open in a new window.
  680. * VideoPress videos can be used as headers in themes that support it, like Twenty Seventeen.
  681. * Extracted the timezone offset method from the Upcoming Events widget so it can be used by other features.
  682. **Performance Improvements**
  683. * Database load is reduced during updates on large sites with multiple servers by retaining hashes for current and current-1 versions.
  684. * Disk storage is reduced on large multisite networks by storing the `jetpack_file_data` option in the `wp_sitemeta` table.
  685. * Jetpack plan data now uses the WordPress.com REST API.
  686. * Slovakian language files now rely on WordPress.org's language packs.
  687. **Accessibility Improvements**
  688. * Improved post details clipping for better screen reader support.
  689. * Updated custom language packs for multiple languages.
  690. **Security Improvements**
  691. * We now avoid path disclosure via cookies in PHP error messages.
  692. **Compatibility Improvements**
  693. * Removed deprecated functions `get_theme` and `get_current_theme`.
  694. * Publicize now works with third-party plugins like WP Recipe Maker.
  695. * Open Graph Meta Tags are now enabled when you use the "Head, Footer and Post Injections" plugin.
  696. * Better support for WooCommerce data sync and backup.
  697. * We now also sync the `sync_via_cron` setting, the user's chosen language, and WP Super Cache's globals and constants.
  698. * We no longer sync post types from the WordPress Automatic Plugin and RSS AutoPilot to avoid synchronization issues.
  699. * Sync settings can now be edited from the WordPress.com REST API to better troubleshoot sync issues.
  700. **Bug Fixes**
  701. * Gravatar is always displayed in Settings.
  702. * Submenu items always use relative links.
  703. * Contact Form avoids PHP notices when using the form in a Text widget.
  704. * Content Options now correctly displays single characters word count on sites with multibyte languages.
  705. * Administrator area translations fixed for several languages.
  706. * Added proper support for Formal/Informal translation versions for languages that support them.
  707. * Site Icons are always used as fallback Open Graph Image tags.
  708. * Protect removes port number when server returns a port alongside a stored IP address.
  709. * Filters ensure that more than 1,024 posts can be excluded from Related Posts.
  710. * When the email is already subscribed we now show the correct notification in the subscription form.
  711. * When using the Email sharing button, we now avoid syntax errors due to unexpected characters in the from name.
  712. * Remove deprecated `jetpack_publicize_post` action.
  713. * VideoPress now avoids PHP Notices when fetching video information.
  714. * Instagram base URL now uses `www` in the Social Media Icons widget.
  715. * All values entered in Facebook Page Plugin widget settings are now escaped.
  716. * Widget Visibility now avoids memory issues on sites with a lot of registered users.
  717. = 4.7.1 =
  718. * Release date: March 14th, 2017
  719. * Release post: http://wp.me/p1moTy-48Y
  720. **Bug Fixes**
  721. * Carousel: avoid javascript errors that may cause issues with Slideshows or Tiled Galleries.
  722. * Markdown: always enable Markdown for posts whenever the module is active.
  723. * Sharing: make sure that sharing buttons open in a small pop-up instead of a separate window.
  724. * SSO: Avoid token or nonce errors when trying to log in to your site via the Secure Sign On option.
  725. * VideoPress: add in the ability to get video thumbnails from the WordPress.com REST API.
  726. * Widgets: improve rendering of the Image Widget via Photon.
  727. * Widget Visibility: avoid empty widget visibility rules after updating to Jetpack 4.7.
  728. * Widget Visibility: restore the option to make widgets appear on archive pages of different Custom Post Types.
  729. * Widget Visibility: migrate widget visibility settings to the new major Page rule for Custom Post Types.
  730. * Widget Visibility: add missing CSS for widget visibility settings on sites using an RTL language.
  731. = 4.7 =
  732. * Release date: March 7th, 2017
  733. * Release post: http://wp.me/p1moTy-46L
  734. **Enhancements**
  735. * Quickly jump to post specific stats on WordPress.com with a new link.
  736. * We've added more information to our debug tools to improve your support experience.
  737. * New HTML5 versions of our house ads are out.
  738. * Display custom copyright EXIF information in the Carousel with this new filter.
  739. * We've highlighted the ability to export Contact Form feedback as it was being overlooked.
  740. * If you have images on WordPress.com we're going to skip using Photon when the images include resize parameters.
  741. * It is now possible to use the Sharing filter to customize the emails sent from the Email Sharing button.
  742. * We've updated the library powering the Print link in the Recipe shortcode.
  743. * Customize the speed and display of your slideshows with new Slideshow shortcode filters.
  744. * The Twitch.tv shortcode now uses Twitch's new embedded player.
  745. * Social Menus now come with the option to use SVG icons.
  746. * Customize the content of the Display Posts Widget with a new filter.
  747. * We've added a new email field to the Contact Info Widget.
  748. * The Image and the Text widgets now use Photon if it is enabled.
  749. * The WordPress.com REST API got several updates including using `register_rest_route()` consistently for registering, new date and time format settings, a filter for theme info results, new links and endpoints, and more.
  750. * We cleaned up the Google+ Shortcode JS library and added a way to filter the SlideShare shortcode.
  751. **Performance Improvements**
  752. * Experience better performance with single page load caching of the media summary.
  753. * We made some improvements to avoid slow queries on sites with thousands of images.
  754. * The Top Posts widget now utilizes an endpoint from the WP.com REST API improving performance.
  755. * Improve development mode performance by only calling `site_url()` once.
  756. * We rewrote the way major/minor rules lists are generated to save bandwidth, and memory for sites using Widget Visibility.
  757. * We've removed sync options that weren't needed to save memory during the sync process.
  758. **Accessibility**
  759. * We've improved the highlight of the stats range for a better visual experience and to make it consistent with other areas of the dashboard.
  760. * Added a missing label to one of the fields in the Email sharing dialog.
  761. * We've enabled keyboard focus styling in the new admin interface.
  762. * Increased padding to sharing buttons on mobile to avoid usability issues.
  763. * We've replaced Widget Visibility text labels with icons to improve usability on smaller devices.
  764. **Slightly Less Exciting Enhancements:**
  765. * We've added a filter to allow you to remove the Comment Form title.
  766. * The Development Mode notice got an update to include all possible options to activate Development mode.
  767. * Jetpack registration function got an update and cleanup.
  768. * A notice displayed to WooCommerce store owners now detects when WooCommerce Services is installed, but not active.
  769. * We've removed the Holiday Snow settings until you need them.
  770. * Improved Infinite Scroll settings to reduce confusion.
  771. * The HTML classes `infinite-scroll` and `neverending` are now applied using JS instead of PHP.
  772. * We've updated the support link appearing when you're locked out of your site.
  773. * New Unit Tests were added to make sure Publicize doesn't break when making changes to the Publicize process.
  774. * We've added a sync filter to allow customizing timeout.
  775. * The Top Posts widget now supports non-square image sizes.
  776. * Added the Video GUID to the media API endpoint.
  777. **Improved Compatibility**
  778. * Fixed some W3C validation errors in Comments.
  779. * Infinite Scroll now works beautifully with the Twenty Seventeen Theme.
  780. * Translate new terms easier with an improvement to the translator comments.
  781. * We switched to use Core functions to retrieve the list of sites in a multisite network for more accurate results.
  782. * We added Product visibility to post meta whitelist, for better control of products displayed in Related Posts.
  783. * We no longer sync specific post meta data added by Postman or WP RSS Multi Importer to avoid performance issues during the sync process.
  784. * We're now avoiding conflicts with plugins adding the core Video upload library to the post editor.
  785. * Removed deprecated compatibility code for older versions of WordPress.
  786. * We had some Shortcode conflicts with WordPress Post embeds, but that's been fixed.
  787. **Bug Fixes**
  788. * The Carousel `jp_carousel_load_for_images_linked_to_file` filter wasn't working well with Photon, this has been fixed.
  789. * Carousel is now working well when loaded from infinite scroll.
  790. * We removed double slashes from file paths in the Contact Form to avoid errors in specific server environments.
  791. * Fixed a problem where CSS was being stripped when migrating from Jetpack's Custom CSS to Core's CSS editor.
  792. * Our Debug Tool is now reporting the correct URL when WordPress lives in a subdirectory.
  793. * Found and fixed a PHP error when uninstalling Jetpack.
  794. * Infinite Scroll is no longer buggy when displaying the last page, and is more compatible with certain themes that were returning posts when there were none left to show.
  795. * We're now skipping Photon for .ashx files.
  796. * The Twitter character counter in Publicize got a fix to display info correctly.
  797. * Related Posts are now displaying correctly for everyone, and we brought back the `jetpack_sharing_headline_html` filter.
  798. * We've improved Sharing to render custom sharing services correctly, include Open Graph Meta Tags, and avoid JavaScript errors when jQuery is enqueued in the footer.
  799. * Synchronization scheduling issues have been resolved.
  800. * We're now trimming spaces in URLs for Image and Display Posts Widgets.
  801. * Widget Visibility wasn't playing nice on taxonomy pages, this is no longer the case.
  802. * The WordPress.com REST API received a couple of fixes to remove PHP errors when editing via the WordPress.com interface, authentication errors when using third-party apps, and permission errors when trying to preview edited posts in the WordPress.com editor.
  803. = 4.6 =
  804. * Release date: February 7, 2017
  805. * Release post: http://wp.me/p1moTy-40g
  806. **New Features and Improvements**
  807. * Enable Google Analytics without touching a line of code with this new Jetpack feature.
  808. **Performance Improvements**
  809. * We've updated all outbound links to use HTTPS to improve performance and security.
  810. * Photon now leverages a new WordPress core function to improve performance a bit.
  811. **Enhancements**
  812. * Keep an eye out for a note from WooCommerce on how your e-commerce store may benefit from our new USPS and CanadaPost shipping functionality.
  813. * We've added an error message if Publicize isn't functioning as it should be.
  814. * The Twitter Widget timeline now displays the tweet limit count as 20, prior to this it appeared to have no limit.
  815. **Slightly Less Exciting Enhancements:**
  816. * In an effort to help us better understand features that are being used, Twitter's timeline widget and Twitter's shortcodes now pass Jetpack's partner ID.
  817. * We've added new API endpoints allowing us to enable translation auto-updates and pull post rows and metadata for backups.
  818. * We're now retrieving all feature settings in the readable `/settings` endpoint.
  819. **Improved Compatibility**
  820. * We've eliminated some notices and warnings when using Jetpack on a server running PHP 7.1 or on servers where `print_r()` is disabled.
  821. * Photon now avoids PHP notices when your site is using plugins that do srcset CDN replacement.
  822. * When the sharing options appear to be incorrect due to site configuration issues we force it to retrieve the right options avoiding potential fatal errors.
  823. * We've added some shortcode CSS and widget class names prefixes to avoid conflicts with other plugins.
  824. **Bug Fixes**
  825. * Some sites were using illegal multibyte characters and failing to sync posts, this has been fixed.
  826. * IE11 was giving our admin layout a bit of a problem but we rectified that.
  827. * There were some PHP notices popping up when a site has no posts so we got rid of them.
  828. * The new Jetpack Ads feature will auto disable itself if your Jetpack plan doesn't support the feature.
  829. * We fixed a few PHP notices and warnings related to the Custom CSS feature.
  830. * The connection banner's "dismiss" icon was giving us a little trouble, but we got it fixed right up.
  831. * The Likes feature was showing a PHP notice when there was no $post object, this has been fixed.
  832. * We've brought back the Twitter Widget "noscrollbar" option.
  833. * We're now forcing only Photon URLs to HTTPS as your custom CDN URLs may use a different protocol.
  834. * If a Publicize connection is not shared with all users on the site, do not trigger Publicize for the other users.
  835. * Publicize was having trouble working with scheduled posts, this should be fixed now.
  836. * SSO may not have been displaying the login form when using JSON API authorization. Sorry about that, we've fixed it.
  837. * We've eliminated some PHP notices that were showing with some Shortcodes.
  838. * There was a Top Posts Widget image size issue when using list layouts, but is no longer causing issues.
  839. * We fixed some notices and warnings when updating data from the WordPress.com central interface.
  840. = 4.5 =
  841. * Release date: January 17, 2017
  842. * Release post: http://wp.me/p1moTy-3Kc
  843. This release introduces a brand-new module, Jetpack Ads, a brand-new VideoPress feature, and a lot of new shortcodes and widgets.
  844. **Exciting New Features and Improvements:**
  845. * Generate revenue from your site with an all-new WordAds feature, which when enabled displays high-quality ads for your visitors.
  846. * Today we are proud to release a fully redesigned VideoPress interface for easy uploading, management, and add-free playback of your fantastic videos now fully integrated with your Jetpack Premium or Professional plans.
  847. * Spice up your sidebar with new widgets that display blog stats, author info, "Follow my blog" buttons, and even an event countdown.
  848. * Embed your amazing 360° photos with the VR shortcode
  849. * Link your visitors to your Tumblr or Twitch pages using the new icons in the Social Media Icons Widget.
  850. **Enhancements**
  851. * Use the beautiful Jetpack carousel feature to display single images.
  852. * Turn on and update Related Posts right from the Customizer.
  853. * Customize the output of the Related Posts headline using a new filter.
  854. **Performance and Security Improvements:**
  855. * Your Custom CSS will now be served in a separate stylesheet when it is more than 2,000 characters.
  856. * Your Stats queries are now always being made over HTTPS.
  857. * Holiday Snow files now load in the footer, but rest assured the snow still falls from above.
  858. * We have improved Jetpack's synchronization process to support more plugins and use less resources.
  859. * The jQuery Cycle script used by slideshow galleries is now minified, resulting in faster loading times.
  860. **Slightly Less Exciting Enhancements:**
  861. * The JSON API now allows updating translations and alternative theme installation methods.
  862. * Public Custom Post Types are now automatically available via the WordPress.com REST API.
  863. * We've added a token-based authentication mechanism to the REST API in order for the site to be able to receive authenticated requests from WordPress.com.
  864. * Use `sync` commands in Jetpack's WP CLI.
  865. * You can now set the value for options directly in the Contact Form shortcode.
  866. * Updated some verbiage around IP Whitelisting on the Protect settings screen.
  867. * Custom sharing buttons got some new variables.
  868. * RIP blip.tv — we've removed your shortcode.
  869. * Improved Image and Display Posts Widget settings to provide more explanation and better error messages.
  870. * We've added a few new Content Options to the Customizer for supported themes.
  871. * Improved the Facebook Widget to avoid confusion when editing width and height settings.
  872. * Added and improved a few shortcodes.
  873. **Improved Compatibility:**
  874. * If your server is misconfigured and we can't get an IP address we're going to deactivate Protect and send you a notice so you're in the loop.
  875. * The WPML compatibility file wasn't loading at the right time, but we've fixed that.
  876. * We've improved compatibility with tools like Cavalcade to avoid stuck Cron jobs.
  877. * Some selected WooCommerce data (order items and order item meta) are now syncing to WordPress.com.
  878. **Bug Fixes**
  879. * You'll notice numerous design improvements to the Jetpack UI.
  880. * Accessibility is important to us so we've made some improvements there.
  881. * Missing attachments in the Carousel were causing an infinite loop, but we've corrected that.
  882. * Eliminated a PHP Notice when running the CLI `wp jetpack` command.
  883. * PHP warnings in the Restaurant Menu Post type have seen their last day with us.
  884. * Fixed a bug that displayed the wrong connected user for up to 24 hours after they disconnected.
  885. * Removed a deprecated function to prevent notices when using Infinite Scroll in the Customizer.
  886. * Long titles in Jetpack widgets weren't looking so great, so we cleaned them up.
  887. * Before now you weren't able to create a child category from WordPress.com. Now you can!
  888. * Rogue colons were showing up in the related posts area on sites with the Twenty Fourteen and Twenty Sixteen themes.
  889. * Fixed a ReCaptcha error on the Email sharing button.
  890. * Confirmed Instagram embeds actually load when using Infinite Scroll.
  891. * Site Icons now display on the WordPress.com site management interface.
  892. * Set a default time limit of 30 seconds when sending sync requests via Cron.
  893. * Synchronized supported shortcodes on a site.
  894. * Fixed an issue where empty categories weren't showing with the Widget Visibility feature dropdown.
  895. * Fixed various little bugs when working with multiple widgets in the Customizer and in the Widgets admin screen.
  896. * Added a Translate Widget default title in case you haven't defined one.
  897. * The Top Posts Widget now avoids layout issues when using the Grid layout while displaying a post without an image.
  898. = 4.4.2 =
  899. * Release date: December 6, 2016
  900. * Release post: http://wp.me/p1moTy-3JR
  901. This release improves Jetpack compatibility with WordPress 4.7.
  902. **Compatibility changes**
  903. * Custom CSS: Made the Custom CSS feature of Jetpack compatible with the CSS Customizer editor in WordPress 4.7.
  904. * Sync: improved compatibility with the wp-missed-schedule plugin.
  905. **Bug fixes**
  906. * Featured Content: made sure there is no infinite loop when removing the featured tag from the tag list.
  907. * Admin: made sure help tabs are not being hidden.
  908. * Admin: made At a Glance page work nicely when there is no backup data yet.
  909. * Sync: now making sure that needed classes are loaded, preventing errors.
  910. * Sync: cleared out unneeded scheduled jobs.
  911. = 4.4.1 =
  912. * Release date: November 22, 2016
  913. * Release post: http://wp.me/p1moTy-3JR
  914. **Bug Fixes**
  915. * Fixed an issue where some users with slower servers would get an error on
  916. the Jetpack dashboard when `WP_DEBUG` was enabled.
  917. * Fixed an issue where users on a Jetpack Professional plan who were paying
  918. monthly (as opposed to annually) wouldn’t be able to enable SEO Tools.
  919. = 4.4 =
  920. * Release date: November 21, 2016
  921. * Release post: http://wp.me/p5U9nj-2Ow
  922. **Enhancements**
  923. * Additional unit tests have been added to improve Jetpack's development process and stability.
  924. * Custom post types have been added to the WP REST API output.
  925. * Many of the screenshots throughout the plugin have been replaced by SVGs in order to make Jetpack smaller.
  926. * New endpoints have been added to allow the installation of plugin and theme zip files via the API.
  927. * Twelve new filters to make Jetpack more extensible! See: http://wp.me/p5U9nj-2Ow.
  928. * New widget: "Google Translate" to allow users to translate your site into their own language.
  929. * New widget: "My Community" where you can see who recently interacted with your site.
  930. * One of the biggest issues facing Jetpack users for years now has been difficulties in moving sites from one domain name to another. This update makes strides towards improving that process.
  931. * Photon now uses HTTPS by default. Secure all the things!
  932. * There are now helpful hints throughout the admin interface to make Jetpack easier to use.
  933. * We now allow you to embed pins, boards and profiles from Pinterest.
  934. * We've added a new feature: SEO Tools, available to Jetpack Professional subscribers. You can read more about our plans here: https://jetpack.com/features/
  935. * We've made numerous improvements to the data sync process.
  936. **Bug Fixes:**
  937. * Fixed link to Akismet settings.
  938. * Improved compatibility between Infinite Scroll and WPML.
  939. * Move email notification settings back with the other email settings in the Discussion Settings.
  940. * Various minor performance/compatibility fixes.
  941. = 4.3.2 =
  942. * Release date: October 13, 2016
  943. **Enhancements**
  944. * Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.
  945. * We've stopped counting carousel views in stats by default, you can use the `jetpack_enable_carousel_stats` filter to enable counting them again.
  946. * Stats are now responding faster.
  947. * There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.
  948. * Markdown now has a CSS class on footnotes.
  949. **Improved Compatibility:**
  950. * We've improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.
  951. **Bug Fixes:**
  952. * Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.
  953. * We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.
  954. * We found an unused option in Gravatar Hovercard settings and removed it.
  955. * The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.
  956. * The permissions check for plugin information retrieval was fixed as well.
  957. * Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.
  958. * We removed some warnings that were occurring when translations didn't exist by adding a fallback.
  959. * We've added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.
  960. * Sync was running into issues so we've limited dequeue time to 1/3 of PHP's max execution time, which has unclogged the problem.
  961. * We're now sending full and incremental queues separately so that a failure in one doesn't block the other.
  962. * There was a JavaScript enqueuing error with our Sharing feature that has been repaired.
  963. * The Top Posts widget now includes the ability to list attachment (media) pages.
  964. * We weren't building CPT links correctly resulting in bad navigation, which is now fixed.
  965. * We removed the form legend for default Tiled Gallery settings as it doesn't relate.
  966. * With shortcodes we now return early from processing them if no string is passed, as they are required.
  967. = 4.3.1 =
  968. * Release date: September 8, 2016
  969. **Support Enhancements**
  970. * We're now syncing data about hosts so that we can provide better support
  971. when needed.
  972. * Minor update to inline docs to match version numbers.
  973. **Bug Fixes:**
  974. * Admin Page: fix error when Admin Page resources could not be fetched with
  975. `wp_remote_get` due to unique host configurations.
  976. * Admin Page: fix error when Post By Email could not be enabled when the
  977. browser's dev console was enabled.
  978. * Admin Page: make sure all translated strings are encoded properly.
  979. * Admin Page: only use POST requests for updating the state of Jetpack, to
  980. avoid issues on servers not allowing PUT requests.
  981. * Admin Page: search icon no longer overlaps the global notices.
  982. * Admin Page: make sure that non-admins can also modify Spellchecking
  983. settings.
  984. * Admin Page: check that a json language file like jetpack-en_US.json is
  985. readable before loading its contents and thus avoid a PHP warning.
  986. * General: Improve random number generation for compatibility with more hosts.
  987. * General: Add deprecated PHP file (class.jetpack-landing-page.php) back as an
  988. empty file, to avoid generating fatal errors on sites with aggressive caching.
  989. * General: Ensure concatenated CSS is generated for RTL languages.
  990. * Security: Ensure that all options are included on the security tab.
  991. * Stats: fix display for sites with pretty permalinks disabled.
  992. * Subscriptions: ensure that no email is sent when updating a published post.
  993. * Sync: To improve performance, add snapTW to the list of post meta data that
  994. won't be synchronized for each post.
  995. * Sync: do not schedule a full sync after each import.
  996. * Verification Tools: in the Settings card, use appropriate link for each
  997. service.
  998. = 4.3 =
  999. * Release date: September 6th, 2016
  1000. **Exciting Performance and UI Improvements:**
  1001. * We have launched the all new React powered interface, a year in the making,
  1002. designed to give you better control of your favorite Jetpack features.
  1003. = 4.2.2 =
  1004. * Release date: August 19th, 2016
  1005. **Bug Fixes:**
  1006. * We fixed the code which displays the Facebook share count to accomodate
  1007. Facebook's new data structure.
  1008. * We fixed an issue which caused PHP notices to get logged for users of the
  1009. Twenty Fourteen theme.
  1010. * We fixed an issue with the Minileven mobile theme which was preventing it
  1011. from loading.
  1012. * Improved Sync performance.
  1013. * Increase security by sanitizing a URL used in the SSO process.
  1014. = 4.2.1 =
  1015. * Release date: August 17th, 2016
  1016. **Bug Fixes:**
  1017. * We fixed a conflict between Jetpack and W3 Total Cache.
  1018. * We fixed some issues with Publicize and Custom Post Types.
  1019. * Very large Multisite networks with lots of users can now be synchronized
  1020. with WordPress.com.
  1021. * We improved the synchronization process between your site and WordPress.com.
  1022. = 4.2 =
  1023. * Release date: August 10th, 2016
  1024. **Performance Enhancements:**
  1025. * We’ve improved Jetpack’s performance by making calls to the database more
  1026. efficient; essentially, Jetpack is doing less on each page load, making things
  1027. faster. #4281, #4316
  1028. * We’ve ensured that every feature uses information that is up to date by
  1029. completely refactoring the way information was synchronized between your site
  1030. and WordPress.com.
  1031. * We've improved the way Jetpack queries for information about features, which
  1032. results in less overall queries.
  1033. **Exciting Feature and UI Improvements:**
  1034. * We now track your visitor views of Carousel images in stats.
  1035. * You can now customize advanced typographic settings like ligatures in the
  1036. Custom CSS editor with new support for the `font-feature-settings` property.
  1037. * We’ve improved the experience when you don’t actually have enough posts to
  1038. Infinitely Scroll.
  1039. * Our Contact Info Widget allows you to enter a Google Maps API Key which is
  1040. now required by Google if you want to display a map.
  1041. **Security:**
  1042. * We’re continuing our efforts to harden Jetpack security, by implementing the
  1043. `hash_equals()` function to avoid timing attacks when comparing strings. We
  1044. also improved security on CSVs exported from your contact form.
  1045. **Slightly Less Exciting Feature Improvements:**
  1046. * The Cartodb shortcode has been changed to match the new product name, Carto.
  1047. * The YouTube shortcode now uses the content width defined by the theme when
  1048. available, even if an embed size was defined in an old version of WordPress.
  1049. * Breadcrumbs now support hierarchical post types and taxonomies.
  1050. * We’ve added the Portfolio Post Type to the WordPress.com REST API whitelist.
  1051. * There are a few new parameters for the Dailymotion shortcode.
  1052. **Improved Compatibility:**
  1053. * We now work well with WP Stagecoach staging sites, so you should not see any
  1054. future impact on production sites.
  1055. * We had some PHP notices popping up in the WooCommerce plugin wizard screen,
  1056. these are gone.
  1057. **Bug Fixes:**
  1058. * We stopped loading compatibility stylesheets on the default theme's singular
  1059. views for Infinite Scroll.
  1060. * Debug tests forwarded through the contact form in the Jetpack Debug menu are
  1061. now successfully sent to the support team.
  1062. * We’ve removed the PHP notices you might have seen when moderating comments.
  1063. * There are no longer PHP notices cropping up when publishing via Cron.
  1064. * We’ve fixed the official Sharing buttons so they now line up just right.
  1065. * The PHP warnings of Sitemaps stylesheets have been eliminated.
  1066. * We’ve done away with the warnings that appeared when Tonesque processes a
  1067. file which claims to be one filetype, but is actually another.
  1068. * We’ve exterminated PHP notices that appeared when using Random Redirect, as
  1069. well as when the author wasn't set.
  1070. = 4.1.1 =
  1071. * Release date: July 7th, 2016
  1072. **Bug Fixes:**
  1073. * SSO: Use high-resolution Gravatar images on the log-in form on Retina
  1074. devices.
  1075. * Publicize: improve reliability of Publicize when publishing new posts.
  1076. = 4.1 =
  1077. * Release date: July 6th, 2016
  1078. * Release Post: http://wp.me/p1moTy-3jd
  1079. **Performance Enhancements:**
  1080. * Carousel no longer loads full-size images in the previous and next previews,
  1081. increasing the speed and performance of slideshows.
  1082. * We’ve improved Jetpack’s performance by making calls to the database more
  1083. efficient; essentially, Jetpack is doing less on each page load, making things
  1084. faster.
  1085. * We’ve improved Photon dev mode, eliminating unnecessary attempts to sync
  1086. images.
  1087. **Exciting Feature and UI Improvements:**
  1088. * A new look: SSO, redesigned and refactored, provides a new and improved
  1089. experience.
  1090. * Tracking made simple: quickly view the number of unread feedback submissions
  1091. in your sidebar.
  1092. * Getting support just got easier! Access improved self-help tools in the
  1093. Jetpack Debug menu.
  1094. * Greater control over Infinite Scroll: pause and resume Infinite Scroll with
  1095. two new JavaScript methods.
  1096. * Improved Sharing: we’ve swapped image icons for icon fonts and added
  1097. Telegram and WhatsApp buttons.
  1098. * Untappd shortcode: now you can sip and share your favorite craft brews.
  1099. Cheers!
  1100. * Recipes, revamped: we’ve added new recipe shortcodes and options to create
  1101. more detailed recipes.
  1102. * Improved Gallery Widgets now use Photon to resize and serve images.
  1103. **Security:**
  1104. * We’re continuing our efforts to harden Jetpack security by implementing the
  1105. `hash_equals()` function in an effort to avoid timing attacks when comparing
  1106. strings.
  1107. * We’ve made it easier to use SSL connections on ports `80` and `443`,
  1108. improving our ability to communicate with an increased number of secure
  1109. websites.
  1110. * You will now receive a warning for any failed attempts when connecting your
  1111. website via SSL.
  1112. **Slightly Less Exciting Feature Improvements:**
  1113. * Updated the Infinite Scroll settings verbiage, which was a bit confusing.
  1114. * Removed Jetpack Audio Shortcode, which is no longer in use.
  1115. * Redesigned Jetpack banner notices to match core notification styles.
  1116. * Added an icon on a connected Jetpack user’s profile page, next to their
  1117. name.
  1118. * Added the ability to edit Portfolio custom-post-type options in the
  1119. Customizer.
  1120. * Added a new filter called `jetpack_publicize_capability` which allows you to
  1121. override user role restrictions for Publicize.
  1122. * Improved the connection process between Jetpack and WordPress.com making it
  1123. easier to start using Manage.
  1124. * Updated the Top Posts Widget so you can use and display posts that are older
  1125. than 10 days.
  1126. * Updated the Twitter Timeline Widget to support updates made by Twitter.
  1127. * Improved the VideoPress Shortcode modal.
  1128. * Updated VideoPress, which now defaults to HTML5 videos when the `freedom`
  1129. shortcode parameter is in use.
  1130. * Improved how Jetpack syncs by removing mock options.
  1131. * Updated the naming convention for feedback posts.
  1132. * Updated several JSON API endpoints to match WordPress.com endpoints, added
  1133. support for custom taxonomies, and enabled trash as a valid status for the
  1134. post update endpoint.
  1135. **Improved Compatibility:**
  1136. * A community member found and fixed a compatibility issue with our Open Graph
  1137. Meta Tags and Bitly’s older plugin -- we now check to make sure we don’t
  1138. create conflicts.
  1139. * We’ve fixed a rare scenario where an error would occur when other plugins or
  1140. sites were using the `JETPACK__GLOTPRESS_LOCALES_PATH` constant.
  1141. **Bug Fixes:**
  1142. * Comment avatars are now retrieved in a manner more consistent with the login
  1143. avatar, improving consistency and eliminating the possibility of a future bug.
  1144. * We eliminated PHP notices that were appearing when Custom Content Types were
  1145. defined without labels or sections.
  1146. * PHP memory limits were reached in rare cases when a website had thousands of
  1147. revisions of their Custom CSS. The issue is fixed -- happy editing!
  1148. * jQuery deprecated the `size()` function -- as a result, we’ve stopped using
  1149. it as well.
  1150. * A PHP notice popped up when plugins were updated from the WordPress.com
  1151. plugin management interface -- these notices will no longer appear.
  1152. * We fixed a bug where Photon wasn’t providing the original size for images
  1153. that were being used outside of the post content.
  1154. * We eliminated the PHP notices that displayed when posts with slideshows were
  1155. added to a sitemap.
  1156. * We fixed an error that was showing up in Sitemaps when a website permalink
  1157. structure used `index.php`.
  1158. * We eliminated JavaScript errors that displayed when tiled galleries were
  1159. viewed.
  1160. * We fixed an issue where image dimensions weren’t properly saved when added
  1161. to a new widget.
  1162. * Since Google Maps API keys are now required to use maps, we’ve updated the
  1163. Contact Info Widget to allow site owners to set up their keys.
  1164. * We fixed a bug where multiple `display` properties weren’t able to be saved
  1165. in Custom CSS.
  1166. = 4.0.4 =
  1167. Release date: June 20th, 2016
  1168. Release Post: http://wp.me/p1moTy-3eT
  1169. Security:
  1170. * Post By Email: Added an additional layer of security to prevent unauthorized
  1171. changes to Post By Email settings.
  1172. * Likes: Fixed an XSS vulnerability in the Likes module.
  1173. * REST API/Contact Form: We've eliminated unauthenticated access to Feedback
  1174. posts.
  1175. Feature Improvements:
  1176. * Customizing Protect: We've increased Protect’s response time and added a new
  1177. filter, `jetpack_protect_connect_timeout`, reducing the likelihood of seeing
  1178. the fall back form.
  1179. * Connection Process: Your site url and icon are displayed on the Jetpack
  1180. connection screens to help improve communication.
  1181. * Jetpack for Multisite: It’s now easier to manage your Jetpack connections on
  1182. the network admin screen.
  1183. * Photon Responsive Image Improvements: We’re now auto-generating new scrset
  1184. options, improving how images served from Photon are handled.
  1185. * Developing on Kinsta: A new constant has been added to improve developing
  1186. with Jetpack on a staging environment hosted with Kinsta.
  1187. Jetpack UI Improvements:
  1188. * Better Access to Our Support Team: We wanted to make it easier for you to
  1189. get help so we added a contact form in the admin that links directly to our
  1190. Jetpack Support Team.
  1191. Improved Compatibility:
  1192. * We’ve stopped adding Open Graph Meta tags if you’re using the SEO Framework
  1193. plugin.
  1194. * Having both GlotPress and Jetpack active at the same time was causing
  1195. errors, we’ve eliminated them.
  1196. Bug Fixes:
  1197. * Fixed the handling of special characters like ampersands in Carousel Titles
  1198. and Descriptions.
  1199. * When visitors tried to view a Carousel image with a hash in the URL, a
  1200. JavaScript error would occur; we’ve fixed that.
  1201. * Jetpack Comment form fields now use the default language you’ve set for
  1202. WordPress, previously the verbiage was always in English.
  1203. * Custom CSS wasn’t handling slashes and quotes properly; we’ve squashed that
  1204. bug.
  1205. * There were some rare cases where PHP notices were popping up when a Contact
  1206. Form was submitted. These instances have been identified and eliminated.
  1207. * We’ve replaced a bit of code with a Jetpack native function to fix a bug
  1208. that was breaking things during an API request for available updates.
  1209. * We accidentally removed the ability for Open Graph to select images from
  1210. slideshows, it’s up and running again.
  1211. * There was an issue where Open Graph meta tags weren’t being set when your
  1212. homepage is a “Static Front Page”, it’s working again.
  1213. * In rare cases when developers were customizing Photon they were seeing a PHP
  1214. notice when arguments were passed as a string rather than an array. This has
  1215. been fixed.
  1216. * We’ve fixed an issue where Protect’s backup math form wasn’t showing on
  1217. custom front end login forms.
  1218. * When setting up WooCommerce you might have seen a Related Posts notice which
  1219. didn’t belong. We’ve eliminated them.
  1220. * If you’ve been using our sharing tool with unofficial sharing buttons you
  1221. might have noticed your sharing numbers were missing. They’re now back.
  1222. * In unique situations where special characters were used in sitemap
  1223. stylesheets an error would occur; that has been remedied.
  1224. * We’ve fixed a problem with mismatching HTML tags in our Spelling and Grammar
  1225. feature.
  1226. * We’ve ensured that the `jetpack_disable_twitter_cards` filter actually
  1227. removes Twitter cards.
  1228. * We’ve fixed some JavaScript errors that would crop up if you were editing a
  1229. custom-post-type post that didn’t support the core media editor — say that 10
  1230. times fast.
  1231. * We had some JavaScript errors when you were using the customizer to modify
  1232. widgets. They are no longer with us.
  1233. = 4.0.3 =
  1234. Release date: May 26th, 2016
  1235. Release Post: http://wp.me/p1moTy-3hm
  1236. * Important security update. Please upgrade immediately.
  1237. = 4.0.2 =
  1238. Release date: April 21st, 2016
  1239. Bug Fix:
  1240. * Addresses an issue where Jetpack 4.0 caused a fatal error on sites with
  1241. specific configurations.
  1242. = 4.0 =
  1243. Release date: April 20th, 2016
  1244. Release Post: http://wp.me/p1moTy-3dL
  1245. Performance Enhancements:
  1246. * Protect: the routine that verifies your site is protected from brute-force
  1247. attacks got some love and is more efficient.
  1248. * Contact Forms: cleaning the database of spam form submission records is more
  1249. efficient.
  1250. Feature Improvements:
  1251. * VideoPress: edit your VideoPress shortcode in the editor with a fancy new
  1252. modal options window.
  1253. * Custom Content Types are now classier: a new CSS class on Testimonial
  1254. featured images — has-testimonial-thumbnail — allows you to customize Jetpack
  1255. custom post types as you see fit.
  1256. * Sharing: social icons are now placed under the "add to cart” singular
  1257. product views in WooCommerce, making it easier for customers to share your
  1258. products on social media.
  1259. * Theme Tools: search engines will now have an easier time knowing what page
  1260. they are on, and how that page relates to the other pages in your site
  1261. hierarchy with improved schema.org microdata for breadcrumbs.
  1262. * Widget Visibility: now you can select widgets and when to show or hide them
  1263. right from custom post type single and archive views.
  1264. Jetpack UI Improvements:
  1265. * What’s in it for me? We’ve done a better job explaining the benefits of
  1266. Jetpack and connecting it to WordPress.com.
  1267. * Shortcodes: handy links to shortcode documentation convey the types of media
  1268. you can quickly and safely embed.
  1269. * Widgets: As of WordPress 4.5, Jetpack widgets now refresh in the customizer
  1270. without making you refresh the entire page. Live previews, yes indeed.
  1271. Bug Fixes:
  1272. * Comments: we fixed a mistake where a comment subscription checkbox appeared
  1273. on custom post types — despite the fact you couldn’t actually subscribe to
  1274. those types of comments. Our bad.
  1275. * Contact Forms: we fixed a bug where the telephone field (which can only be
  1276. added manually) rendered incorrectly — breaking some forms in the process.
  1277. * General: we blocked direct access to the Jetpack_IXR_Client class which
  1278. caused fatal PHP errors in some server setups.
  1279. * Shortcodes: we removed the frameborder attribute in the YouTube embed code.
  1280. It was deprecated in HTML 5.
  1281. * Unminified responsive-videos.min.js in order to address a false positive
  1282. virus alert in ClamAV. Expect it to be re-minified in 4.0.3 once we resolve
  1283. the issue with ClamAV.
  1284. = 3.9.6 =
  1285. Release date: March 31st, 2016
  1286. Release Post: http://wp.me/p1moTy-3bz
  1287. Bug fix: Shortcodes: fixed incorrect Vimeo embed logic.
  1288. = 3.9.5 =
  1289. Release date: March 31st, 2016
  1290. Release Post: http://wp.me/p1moTy-3bz
  1291. This release features several WordPress 4.5 compatibility changes that make
  1292. several Jetpack features work properly in the Customizer view. Big thanks to
  1293. @westonruter for contributing the code!
  1294. Other enhancements and bug fixes:
  1295. * Contact Form: no longer calling the datepicker method if it's not available.
  1296. * SSO: settings checkboxes now honor filters and constants that restrict
  1297. certain sign-in modes.
  1298. * Shortcodes: fixed a problem with Gist fetching.
  1299. * Shortcodes: fixed invalid HTML5 markup in YouTube embed code.
  1300. * Shortcodes: made the Vimeo links work properly in case of multiple mixed
  1301. uses in one post.
  1302. = 3.9.4 =
  1303. Release date: March 10th, 2016
  1304. Release post: http://wp.me/p1moTy-396
  1305. Bug fix: Shortcodes: Addresses an issue with embedded Vimeo content
  1306. = 3.9.3 =
  1307. Release date: March 9th, 2016
  1308. Release post: http://wp.me/p1moTy-396
  1309. Featured:
  1310. * Site Logo now supports Custom Logo - a theme tool to be introduced in
  1311. WordPress 4.5.
  1312. Enhancements:
  1313. * Carousel: Made the full size image URL use a Photon URL if enabled.
  1314. * Comments: Removed an unnecessary redirect by always connecting via HTTPS.
  1315. * General: Added new actions that fire before automatic updates.
  1316. * Infinite Scroll: Introduced a later filter for settings.
  1317. * Infinite Scroll: Removed code that is now redundant due to WordPress Core.
  1318. * Markdown: Removed deprecated markup from the output.
  1319. * Publicize: Improved handling of featured images in posts.
  1320. * Shortcodes: Added houzz.com support.
  1321. * Sitemaps: Added a language attribute to the news sitemap.
  1322. * Sitemaps: Improved the image retrieval mechanism for posts.
  1323. * Widgets: Added new filters in the Top Posts Widget code.
  1324. * Widgets: Cleaned up the CSS for the Subscription widget.
  1325. Bug Fixes:
  1326. * Comments: No longer reloading the page on clicking the reply button.
  1327. * Contact Forms: Fixed a fatal error on missing metadata.
  1328. * Contact Forms: Fixed message formatting for plaintext email clients.
  1329. * Shortcodes: Fixed dimensions of Vimeo embeds in certain cases.
  1330. * Shortcodes: Fixed warnings and allowed shorter style Vimeo embeds.
  1331. * Shortcodes: Removed alignment markup from feeds for YouTube embeds.
  1332. * Sitemaps: Made URLs display properly according to the permalink structure.
  1333. * Stats: Fixed non-XHTML-valid markup.
  1334. * Widgets: No longer showing errors when adding new instances of the Display
  1335. Post Widget.
  1336. = 3.9.2 =
  1337. Release date: February 25th, 2016
  1338. Release post: http://wp.me/p1moTy-2Ei
  1339. Maintenance and Security Release
  1340. Featured:
  1341. * Beautiful Math: fix XSS vulnerability when parsing LaTeX markup within HTML
  1342. elements.
  1343. * Contact Form: do not save private site credentials in post meta. Thanks to
  1344. @visualdatasolutions.
  1345. Enhancements:
  1346. * Contact Info: Added two hooks for adding arbitrary information to the
  1347. widget.
  1348. * Development: Added new possibilities for REST API debugging.
  1349. * Embeds: Added Codepen embeds support.
  1350. * Embeds: Added Sketchfab embeds support.
  1351. * I18n: Added support for translation packages for the Finnish language.
  1352. * Markdown: Added a filter to enable skipping processing of developer supplied
  1353. patterns.
  1354. * Related Posts: Added a filter to change heading markup.
  1355. * Staging: Added a constant to force staging mode.
  1356. * Staging: Added a notice to make staging mode more obvious.
  1357. * Top Posts Widget: Added a new `[jetpack_top_posts_widget]` shortcode.
  1358. Bug Fixes:
  1359. * Custom Post Types: Nova: Fixed a JavaScript bug on adding multiple items.
  1360. * Embeds: Allowing embeds from Instagram with a www in an URL.
  1361. * General: Fixed untranslated module names on the Settings screen.
  1362. * General: Improved module descriptions and fixed misleading or broken links
  1363. in descriptions.
  1364. * General: No more notices on module deprecation on older installations.
  1365. * General: Only showing one prompt to enable Photon when uploading several new
  1366. images.
  1367. * Multisite: Fixed a problem with site lists for older WordPress
  1368. installations.
  1369. * OpenGraph: Fixed a bug to properly fallback to a WordPress Site Icon image.
  1370. * Photon: Improve performance for images over a secure connection.
  1371. * Photon: No longer including links from data attributes.
  1372. * Publicize: Fixed problems for en_AU and en_CA locales with Facebook.
  1373. * Related Posts: Fixed a notice on certain requests.
  1374. * Site Logo: It's no longer possible to choose a non-image.
  1375. * Widget Visibility: No longer confusing page IDs and titles in certain cases.
  1376. = 3.9.1 =
  1377. Release date: January 21st, 2016
  1378. Bug Fixes:
  1379. * General: Addresses a namespacing issue which was causing conflicts on some
  1380. hosting providers.
  1381. * Sitemaps: Added MSM-Sitemap to the list of plugins which, if installed, will
  1382. prevent Jetpack Sitemaps from being used
  1383. = 3.9 =
  1384. Release date: January 20th, 2016
  1385. Release Post: http://wp.me/p1moTy-29R
  1386. Featured:
  1387. * New sharing button: let users share your content using Skype.
  1388. * New "Social Menu" theme tool that uses Genericons to display Social Links.
  1389. * Sitemap support for better search engine indexing.
  1390. Enhancements:
  1391. * Contact Form: Added a new filter that allows you to change the "Required"
  1392. text.
  1393. * General: Hidden archived sites in multisite site list.
  1394. * General: Removed several function calls that would be deprecated in
  1395. WordPress 4.5.
  1396. * Infinite Scroll: Added a new filter to check if Infinite Scroll has been
  1397. triggered.
  1398. * Likes: Added a conditional to ensure WordPress 4.5 compatibility.
  1399. * Photon: Improved compatibility with responsive images feature added in
  1400. WordPress 4.4.
  1401. * Photon: Now enabled by default on sites using HTTPS.
  1402. * REST API: Extended the ability to manage users from WordPress.com.
  1403. * REST API: Increased the performance of the plugin update endpoint.
  1404. * Responsive Videos: Centering videos when they are wrapped in a centered
  1405. paragraph.
  1406. * Sharing: Added a new filter to customize the default OpenGraph description.
  1407. * Shortcodes: Added Wistia oEmbed support.
  1408. * Shortcodes: Bandcamp: Added support for new attributes for tracks approved
  1409. by artists.
  1410. * Shortcodes: Improved Medium path format recognition.
  1411. * Slideshow: Improved compatibility with older IE versions.
  1412. * Staging: Improved staging environment detection.
  1413. * Widgets: Added "width" option to the Facebook Page widget.
  1414. * Widgets: Added size parameters to tags in Top Posts to avoid warnings.
  1415. * Widgets: Introduced major performance and stability improvements to the
  1416. Display Posts Widget.
  1417. * Widgets: Refactored to remove deprecated code patterns.
  1418. Bug Fixes:
  1419. * AtD: Fixed replacing emojis with images in the text editor in Chrome.
  1420. * AtD: Made pre tags be excluded from spell-checking.
  1421. * CPT: Not registering Nova if it is already registered.
  1422. * Carousel: Fixed a bug where full size images were not always served by
  1423. Photon.
  1424. * Carousel: Reverted a change that broke direct link to carousel image.
  1425. * Contact Form: Fixed a CSV export bug with multiple choice questions.
  1426. * Contact Form: Fixed notices when creating feedback entries without a contact
  1427. form.
  1428. * General: Fixed a scrolling bug on modal window closing.
  1429. * Infinite Scroll: Disabled in the Customizer when previewing a non-active
  1430. theme.
  1431. * Publicize: Fixed notices appearing with bbPress or BuddyPress installed.
  1432. * Publicize: Showing options only to users that can change them.
  1433. * Related Posts: Fixed incorrect URLs generated for posts.
  1434. * Responsive Videos: Fixed warnings in debug mode.
  1435. * Shortcodes: Bandcamp: Fixed a problem with large track IDs.
  1436. * Shortcodes: Fixed a problem with dynamic Gist embeds.
  1437. * Stats: Fixed dashboard widget resize problem.
  1438. * Widgets: Added a fallback to English US when a locale isn't supported by
  1439. Facebook.
  1440. * Widgets: Fixed layout for Twenty Sixteen.
  1441. = 3.8.2 =
  1442. Release date: December 17th, 2015
  1443. Release post: http://wp.me/p1moTy-26v
  1444. Jetpack 3.8.2 is here to squash a few annoying bugs.
  1445. Bug Fixes:
  1446. * Photon: Fixed a bug where some custom thumbnail image sizes weren't being
  1447. sized properly.
  1448. * Shortcodes: Fixed an incompatibility with how WordPress renders the YouTube
  1449. shortcode.
  1450. * Shortcodes: Tightened up security in the Wufoo shortcode.
  1451. * Image Widget: Now shows the caption.
  1452. * Fixed typos in inline docs.
  1453. * Very minor fixes to: Carousel, Publicize, Google+, and Infinite Scroll.
  1454. = 3.8.1 =
  1455. Release date: December 1st, 2015
  1456. Release post: http://wp.me/p1moTy-23V
  1457. Jetpack 3.8.1 is here and is fully compatible with WordPress 4.4.
  1458. Featured:
  1459. * Photon + Responsive Images FTW.
  1460. * Fully compatible with Twenty Sixteen.
  1461. * More accessibility enhancements.
  1462. * Dropped some weight by optimizing Jetpack's plugin images.
  1463. Enhancements:
  1464. * Comments: filter to allow disabling comments per post type.
  1465. Bug Fixes:
  1466. * Carousel: Stop page from scrolling to top when Carousel is closed.
  1467. * Carousel: Browser compatibility fixes with older version of IE.
  1468. * Markdown: Fixed a bug that would strip markdown when saving in "Quick Edit"
  1469. mode.
  1470. * Single Sign On: Fixed login always redirecting to the admin dashboard.
  1471. * Subscriptions: Filter to allow per-post emails fixed for use in themes.
  1472. = 3.8.0 =
  1473. Release date: November 4th, 2015
  1474. Release post: http://wp.me/p1moTy-1VN
  1475. We're happy to introduce Jetpack 3.8, which has significant contributions from
  1476. the Jetpack community. Read more about it here: http://wp.me/p1moTy-1VN
  1477. Feature enhancements:
  1478. * New Google+ Badge Widget. Display your profile, page, or community Google+
  1479. badge.
  1480. * New twitch.tv shortcode embeds. Display a Twitch.tv stream in your posts.
  1481. * Accessibility enhancements.
  1482. * A handful of new filters to allow further customization of Jetpack.
  1483. Other enhancements:
  1484. * Carousel: Added support to retrieve image dimensions from an image url.
  1485. * Carousel: Simpler algorithm to detect shutter speeds.
  1486. * Contact Form: New "Checkbox with Multiple Items" field available in the
  1487. Contact Form.
  1488. * Contact Form: Allow pre-filling form fields with URL parameters.
  1489. * Contact Form: Better styling of the emailed form responses.
  1490. * Performance: Replaced some custom-built functions with core's native
  1491. functions.
  1492. * Related Posts: New filter to add post classes to post's container class.
  1493. * Sharing: New filter to choose if sharing meta box should be shown.
  1494. * Sharing: New filter to allow sharing button markup to be editable.
  1495. * Sharing: New filter to allow you to specify a custom Facebook app ID.
  1496. * Social Media Icons Widget: Added option for YouTube username as well as
  1497. Channel ID.
  1498. * Social Media Icons Widget: Added Google+ icon.
  1499. * Social Media Icons Widget: New filter to allow you to add your own social
  1500. media icons and links.
  1501. * Subscriptions: Better errors to your visitors if their subscription sign-up
  1502. fails.
  1503. * Subscriptions: Removed "widget" class from Subs shortcode form.
  1504. Bug fixes:
  1505. * Carousel: Fixed browser back/forward button behavior.
  1506. * Contact Form: Allow the email field to be set to empty when building form in
  1507. post editor.
  1508. * Facebook Likebox Widget: Fixed an issue where some languages were not
  1509. translating.
  1510. * Facebook Likebox Widget: Return a language when none found.
  1511. * General: Fixed some minor styling issues in the Jetpack admin areas.
  1512. * General: Add missing parameter to the_title filter call.
  1513. * General: Prevent scrolling of body when the Jetpack admin modals are opened.
  1514. * General: Update doc to reflect that Open Graph filter
  1515. jetpack_enable_opengraph has been deprecated in favor of
  1516. jetpack_enable_open_graph.
  1517. * Infinite Scroll: Fixed an error that sometimes occurred that would stop
  1518. posts from loading.
  1519. * JSON API: Fixed some undefined notices when publishing a post with the API.
  1520. * Open Graph: Fixed bug where facebook description content was sometimes being
  1521. polluted by a filter.
  1522. * Sharing: Use full SSL Pinterest url instead of protocol relative.
  1523. * Sharing: Fixed plus signs appearing in tweets shared from iOS.
  1524. * Shortcodes: Prefer HTTPS for video embeds to avoid mixed content warnings.
  1525. * Subscriptions Widget: Fix HTML Validation error.
  1526. * Theme Tools: Check oEmbeds for the presence of a video before adding the
  1527. responsive videos filter.
  1528. * Tiled Galleries: Add image alt attribute if there is a title set. This was
  1529. breaking some screen reader functionality.
  1530. = 3.7.2 =
  1531. Release date: September 29th, 2015
  1532. Release Post: http://wp.me/p1moTy-1LB
  1533. * Bug Fix: REST API: Fixed an error when saving drafts and publishing posts
  1534. = 3.7.1 =
  1535. Release date: September 28th, 2015
  1536. Release Post: http://wp.me/p1moTy-1LB
  1537. * Enhancement: General: Added inline documentation for various filters and
  1538. functions
  1539. * Enhancement: General: Added custom capabilities for module management on
  1540. multi-site installs
  1541. * Enhancement: General: Cleaned up old changelog entries from readme
  1542. * Enhancement: General: Cleaned up unused i18n textdomains
  1543. * Enhancement: General: Updated the new settings page to look better in
  1544. various translations
  1545. * Enhancement: REST API: Added new endpoints to manage users
  1546. * Enhancement: Sharing: Updated the Google logo
  1547. * Bug Fix: Carousel: Page scroll no longer disappears after closing the
  1548. carousel
  1549. * Bug Fix: Contact Form: Fields are sent and displayed in the correct order
  1550. * Bug Fix: Contact Form: No longer showing a notice on AJAX actions in
  1551. feedback lists
  1552. * Bug Fix: Contact Form: Made using more than two notification emails possible
  1553. * Bug Fix: Contact Form: Mitigate a potential stored XSS vulnerability. Thanks
  1554. to Marc-Alexandre Montpas (Sucuri)
  1555. * Bug Fix: General: Mitigate a potential information disclosure. Thanks to
  1556. Jaime Delgado Horna
  1557. * Bug Fix: General: Fixed a locale error in the notifications popout
  1558. * Bug Fix: General: Fixed a possible fatal error in the client area
  1559. * Bug Fix: General: Fixed compatibility issues with certain use cases
  1560. * Bug Fix: General: Disabled connection warnings for multisites with domain
  1561. mapping
  1562. * Bug Fix: General: Updated translations for correct link display in admin
  1563. notices
  1564. * Bug Fix: REST API: Fixed a fatal error in one of the endpoints
  1565. * Bug Fix: Sharing: Fixed OpenGraph tags for Instagram embeds
  1566. * Bug Fix: Sharing: Fixed compatibility issues with bbPress
  1567. * Bug Fix: Widget Visibility: Fixed a fatal error in case of a missing tag
  1568. = 3.7.0 =
  1569. Release date: September 9th, 2015
  1570. Release Post: http://wp.me/p1moTy-1JB
  1571. Feature Enhancements:
  1572. * New admin page interface to easily configure Jetpack
  1573. * Added staging site support for testing a connected Jetpack site
  1574. Additional changes:
  1575. * Enhancement: CLI: Added a possibility to change all options with
  1576. confirmation for some of them
  1577. * Enhancement: Gallery: Added filters to allow new gallery types to be
  1578. declared
  1579. * Enhancement: General: Added inline documentation for actions, filters, etc.
  1580. * Enhancement: General: Changed class variable declarations keyword from var
  1581. to public
  1582. * Enhancement: General: Made the Settings page module toggle buttons more
  1583. accessible
  1584. * Enhancement: General: The admin bar now loads new notifications popout
  1585. * Enhancement: General: Renamed some modules to avoid redundant prefixes
  1586. * Enhancement: General: Switched to the WordPress Core's spinner image
  1587. * Enhancement: General: Updated the bot list
  1588. * Enhancement: Manage: Added the ability to activate a network-wide plugin on
  1589. a single site from WordPress.com
  1590. * Enhancement: Photon: Added a way to check image URLs against custom domains
  1591. * Enhancement: Photon: Added prompts on the media upload page telling the user
  1592. about Photon
  1593. * Enhancement: Publicize: Added width and height values to OpenGraph tags for
  1594. default images
  1595. * Enhancement: Related Posts: Added a filter to allow disabling nofollow
  1596. * Enhancement: REST API: Added new API endpoints to extend API functionality
  1597. * Enhancement: REST API: Added new fields to existing API endpoints
  1598. * Enhancement: Sharing: Added a possibility to opt-out of sharing for a single
  1599. post
  1600. * Enhancement: Sharing: Added bbPress support
  1601. * Enhancement: Sharing: Added more configuration to the Likes modal
  1602. * Enhancement: Sharing: Made the reddit button open a new tab
  1603. * Enhancement: Sharing: Removed unused files
  1604. * Enhancement: Shortcodes: Added auto embed option inside comments
  1605. * Enhancement: Shortcodes: Added autohide parameter to the YouTube shortcode
  1606. * Enhancement: Subscriptions: added an action that triggers at the end of the
  1607. subscription process
  1608. * Enhancement: VideoPress: Videos are now embedded using a new player
  1609. * Enhancement: Widget Visibility: Added parent page logic
  1610. * Enhancement: Widget Visibility: Added support for split terms
  1611. * Enhancement: Widgets: Added actions to the Social Media widget
  1612. * Enhancement: Widgets: Switched the Display Posts widget to the new API
  1613. version
  1614. * Bug Fix: General: Fixed scrolling to top after modal window closing
  1615. * Bug Fix: Infinite Scroll: Added a check for cases when output buffering is
  1616. disabled
  1617. * Bug Fix: Infinite Scroll: Added translation to the copyright message
  1618. * Bug Fix: Manage: Fixed automatic update synchronization on WordPress
  1619. multisite network admin
  1620. * Bug Fix: Manage: Redirects back to WordPress.com are allowed from the
  1621. customizer view
  1622. * Bug Fix: Media: Fixed duplicate images bug in the Media Extractor
  1623. * Bug Fix: Publicize: Made it possible to remove previously set message
  1624. * Bug Fix: Sharing: Added a thumbnail image to OpenGraph tags on pages with
  1625. DailyMotion embeds
  1626. * Bug Fix: Sharing: Fixed Twitter Cards tags escaping
  1627. * Bug Fix: Sharing: Made OpenGraph tags for title and description use proper
  1628. punctuation
  1629. * Bug Fix: Sharing: Made sure Likes can be disabled on the front page
  1630. * Bug Fix: Shortcodes: Fixed Facebook embeds by placing the scipt in the
  1631. footer
  1632. * Bug Fix: Shortcodes: Fixed PollDaddy shortcode issues over SSL connections
  1633. * Bug Fix: Shortcodes: Made responsive video wrappers only wrap video embeds
  1634. * Bug Fix: Shortcodes: Made SoundCloud accept percents for dimensions
  1635. * Bug Fix: Social Links: Fixed a possible conflict with another class
  1636. * Bug Fix: Stats: Made sure the Stats URL is always escaped properly
  1637. = 3.6.1 =
  1638. Release Date: July 24, 2015
  1639. * Enhancement: Fully compatible with upcoming WordPress 4.3
  1640. * Enhancement: Site Icon: Start to deprecate Site Icon in favor of Core's
  1641. version (if available)
  1642. * Bug Fix: Subscriptions: You can now use more than one Subscription form on a
  1643. single page
  1644. * Bug Fix: Quieted PHP notices and warnings with the JSON API, Display Posts
  1645. Widget and Gallery Widget (slideshow mode)
  1646. * Bug Fix: Correct permissions check for connection panel
  1647. * Hardening: Increase permissions checks
  1648. = 3.6 =
  1649. Release Date: July 6th, 2015
  1650. Release Post: http://wp.me/p1moTy-1ua
  1651. Feature Enhancements:
  1652. * CLI: Add a number of Jetpack CLI improvements: see
  1653. http://jetpack.com/support/jetpack-cli
  1654. * New Jetpack admin page for connection management
  1655. * New Social Media Icons widget
  1656. * FB Like Box: A visual refresh of the Facebook likebox widget
  1657. * Protect: When your IP is blocked, use a math captcha as a fallback instead
  1658. of a complete block
  1659. Additional changes:
  1660. * Enhancement: Custom CSS: Add more Flexbox support and other enhancements
  1661. * Enhancement: Extra Sidebar Widgets: Top Posts Widget: Choose what Post Types
  1662. to display
  1663. * Enhancement: General: Save on some requests! print CSS inline when there
  1664. isn't much of it
  1665. * Enhancement: Likes: Likes can now be shown on all post types
  1666. * Enhancement: Minileven: Add Featured Image to Gallery Post Format and Pages
  1667. * Enhancement: Mobile Theme: Add div wrapping View Mobile Site link to allow
  1668. for easier CSS customizations
  1669. * Enhancement: Omnisearch: Link to edit post in titles
  1670. * Enhancement: Protect: Learn Trusted Headers locally and cache blocks
  1671. properly
  1672. * Enhancement: REST API: Add locale support
  1673. * Enhancement: Sharing: Retire StumbleUpon
  1674. * Enhancement: Sharing: Upgrade to reCAPTCHA 2.0 for Email Sharing
  1675. * Enhancement: Shortcode Embeds: Add Mesh oembed support
  1676. * Enhancement: Shortcode Embeds: New Wufoo Shortcode from WordPress.com
  1677. * Enhancement: Shortcode Embeds: Mixcloud: handle accented characters in URLs
  1678. * Enhancement: Site Logo: Adding itemprops to support logo schema.
  1679. * Enhancement: Slideshow Gallery: New parameters *size* and *autostart*
  1680. * Enhancement: Slideshow Gallery: Use more reliable CSS for resizing instead
  1681. of js
  1682. * Enhancement: Stats: No longer track stats for preview pages
  1683. * Enhancement: Tiled Gallery: Improve the shapes and distributions of shapes
  1684. in the Tiled Gallery, based on observations for its usage.
  1685. * Enhancement: Protect: Whitelist for multisite globally and locally
  1686. * Enhancement: Sharing: LinkedIn always uses https for share counts. (saved
  1687. extra http request)
  1688. * Bug Fix: Carousel: Jetpack Carousel now supports HTML5 gallery
  1689. * Bug Fix: Extra Sidebar Widgets: Choose Images button works in accessibility
  1690. mode
  1691. * Bug Fix: General: Fix: Cannot remove hooks from filter
  1692. 'jetpack_get_available_modules'
  1693. * Bug Fix: Infinite Scroll: Check that search terms exist before matching
  1694. against post title. fixes #2075
  1695. * Bug Fix: Likes: Never double show on search results
  1696. * Bug Fix: Notifications: Notifications didn't load on wp-admin/network pages
  1697. * Bug Fix: Sharing: Fix Facebook share button not showing for Australian &
  1698. Canadian locale
  1699. * Bug Fix: Shortcode Embed: Slideshare Shortcode now fixed
  1700. * Bug Fix: SSO: Hide login no matter what when using the filter to do so
  1701. * Bug Fix: Subs Widget: Don't hide email input if submit failed
  1702. * Bug Fix: Tiled Gallery: Show columns setting for Thumbnail Grid when Tiled
  1703. Mosaic galleries are the default
  1704. * Bug Fix: Twitter Cards: Remove deprecated card types
  1705. = 3.5.3 =
  1706. Release Date: May 6th, 2015
  1707. * Security Hardening: Remove Genericons example.html file.
  1708. = 3.5.2 =
  1709. Release Date: May 5th, 2015
  1710. * Bug Fix: Sharing: Changes Facebook share count endpoint
  1711. = 3.5.1 =
  1712. Release Date: May 5th, 2015
  1713. * Enhancement: Sharing: Changes Facebook share count method per Facebook API
  1714. change
  1715. * Enhancement: General: Remove .po files to reduce plugin size
  1716. * Bug Fix: General: Remove identity crisis notification
  1717. * Bug Fix: Subscriptions: Correct required input validation
  1718. * Security hardening
  1719. = 3.5 =
  1720. Release Date: April 23rd, 2015
  1721. Release Post: http://wp.me/p1moTy-1jF
  1722. Jetpack 3.5 introduces the ability to manage your site's menus directly from
  1723. WordPress.com and several bug fixes and enhancements. This upgrade is
  1724. recommended for all users.
  1725. * Enhancement: General: Change security reporting to use a transient instead
  1726. of option to reduce backup load
  1727. * Enhancement: General: Improve module search
  1728. * Enhancement: JSON API: Allow users to manage menus through WordPress.com
  1729. * Enhancement: Sharing: Reduce spam through email sharing
  1730. * Bug Fix: Custom CSS: Improve recall of CSS revisions
  1731. * Bug Fix: Extra Sidebar Widgets: Change class name for Contact Info widget
  1732. * Bug Fix: Extra Sidebar Widgets: Fix errors when adding widgets via the
  1733. customizer
  1734. * Bug Fix: Extra Sidebar Widgets: Fix PHP notices in RSS widget
  1735. * Bug Fix: General: Fix redirect loop on activation
  1736. * Bug Fix: General: Styling fixes
  1737. * Bug Fix: Protect: Add IP translation fallback when inet_pton is not
  1738. available
  1739. * Bug Fix: Protect: Always allow login from local IDs
  1740. * Bug Fix: Protect: Sanitize displayed IP after block
  1741. * Bug Fix: Publicize: Prevent generating Facebook profile links for app-scoped
  1742. user IDs
  1743. * Bug Fix: Subscriptions: Improve error handling
  1744. * Bug Fix: Theme Tools: Include breadcrumb code
  1745. * Misc: Extra Sidebar Widgets: Remove Readmill Widget
  1746. = 3.4.3 =
  1747. Release Date: April 20th, 2015
  1748. Release Post: http://wp.me/p1moTy-1jb
  1749. * Security hardening.
  1750. = 3.4.2 =
  1751. Release Date: April 19th, 2015
  1752. Release Post: http://wp.me/p1moTy-1j6
  1753. * Bug Fix: Contact info widget namespacing
  1754. * Bug Fix: Javascript errors on wp-admin due to stats display code
  1755. * Bug Fix: Potential fatal error from improperly called function
  1756. * Bug Fix: Potential fatal error when protect servers are unreachable for
  1757. WordPress Multisite
  1758. = 3.4.1 =
  1759. Release Date: March 19th, 2015
  1760. * Bug Fix: General: Modules not displaying properly in non-English installs
  1761. * Bug Fix: Manage: Some installs showing a transient fatal error
  1762. * Bug Fix: Protect: Protect module not auto-activating for users who upgrade
  1763. * Bug Fix: Omnisearch: Some installs not properly reporting WP version number,
  1764. causing Omnisearch error
  1765. * Bug Fix: Stats: Top posts/pages widget not loading
  1766. * Bug Fix: Contact Info Widget: Fix conflict with Avada theme
  1767. = 3.4 =
  1768. Release Date: March 18th, 2015
  1769. Release Post: http://wp.me/p1moTy-1fU
  1770. * Enhancement: Config Settings: provide a notification for users that update
  1771. features settings
  1772. * Enhancement: Config Settings: provide a notification for users that update
  1773. features settings
  1774. * Enhancement: Contact Form: Use the predefined $title variable in the anchor
  1775. tag in grunion contact form button
  1776. * Enhancement: Contact Form: Use the predefined $title variable in the anchor
  1777. tag in the button on admin
  1778. * Enhancement: Custom Content Type: Add all Custom Post Types to Omnisearch
  1779. * Enhancement: Custom Content Type: Add option to add Testimonial Custom
  1780. Content Type in admin
  1781. * Enhancement: Custom Content Type: bring consistency between the portfolio
  1782. and testimonial shared codebase
  1783. * Enhancement: Custom Content Type: code cleanup
  1784. * Enhancement: Custom Content Type: register namespaced 'jetpack_portfolio'
  1785. shortcode/use a prefix for shortcode for Portfolio
  1786. * Enhancement: Custom Content Type: set shortcode image size to 'large' and
  1787. add jetpack_portfolio_thumbnail_size filter to allow themes to set their own
  1788. size for Portfolio
  1789. * Enhancement: Custom Content Type: testimonial shortcode enhancement
  1790. * Enhancement: Extra Sidebar Widgets: Add subscription widget wildcard
  1791. * Enhancement: Extra Sidebar Widgets: Likes and Sharing Shortcodes
  1792. * Enhancement: Extra Sidebar Widgets: Minor fixes to Facebook widget plugin
  1793. for SSL
  1794. * Enhancement: Fix/update jetpack version
  1795. * Enhancement: General: Add DNS Prefetching
  1796. * Enhancement: General: Add Jetpack admin dashboard widget
  1797. * Enhancement: GlotPress: Update GP_Locales and GP_Locale classes
  1798. * Enhancement: Improved control over Nova Theme Menu output markup
  1799. * Enhancement: Infinite Scroll: Adds a `button` wrapper for the infinity
  1800. handle.
  1801. * Enhancement: Infinite Scroll: Check for response.html before using indexOf
  1802. * Enhancement: Integrate BruteProtect for protection against Brute Force
  1803. attacks
  1804. * Enhancement: JSON API Manage: Added Mock Jetpack Option to Sync options that
  1805. don't have to live in the Database
  1806. * Enhancement: JSON API: Add/empty trash days option to sync
  1807. * Enhancement: Jump Start: Add "Jump Start" interface for new users
  1808. * Enhancement: Manage: Add "modified_before" and "modified_after" parameters
  1809. to /sites/%s/posts/ via JSON API
  1810. * Enhancement: Mobile Theme: Add filter for choosing mobile theme menu
  1811. * Enhancement: Notifications: Changes to load the new notifications client.
  1812. * Enhancement: Protect: Add a filter so that user can add thier own bots
  1813. * Enhancement: Protect: Add security reporting
  1814. * Enhancement: Protect: Add/whitelist endpoints via JSON API for Jetpack
  1815. Protect
  1816. * Enhancement: Publicize: update connection confirmation message
  1817. * Enhancement: Sharing: Add custom service name as a class
  1818. * Enhancement: Sharing: display name of custom service in link title
  1819. * Enhancement: Sharing: Remove default post types for showing share links
  1820. * Enhancement: Sharing: use Jetpack version number when enqueing sharing.js
  1821. * Enhancement: Shortcodes Team Partnerships: Backport fixes from SoundCloud
  1822. 2.3.1 through 3.0.2
  1823. * Enhancement: Shortlinks: use HTTPS when possible
  1824. * Enhancement: Stats: Make loading of stats async
  1825. * Enhancement: Subscriptions: Added settings field for comment sub text
  1826. * Enhancement: Subscriptions: Hide Form After Submit
  1827. * Enhancement: Subscriptions: remove label from widget title
  1828. * Enhancement: Subscriptions: Update subscriptions.php
  1829. * Bug Fix: Contact form: Increase CSS specificity for Contact Forms in widgets
  1830. * Bug Fix: Custom Content Type: Testimonial Custom Content Type: use core
  1831. `WP_Customize_Image_Control` instead of custom...
  1832. * Bug Fix: Extra Sidebar Widgets: add missing & to if statement for widget
  1833. visibility
  1834. * Bug Fix: Extra Sidebar Widgets: Don't require height/width values in the
  1835. Twitter Timeline widget
  1836. * Bug Fix: Extra Sidebar Widgets: Upload images from the customizer/Extra
  1837. Sidebar Widgets Tiled Galleries for Gallery Widget
  1838. * Bug Fix: General: Fix bug that was preventing modules from displaying
  1839. properly
  1840. * Bug Fix: Manage: When calling /sites/%s/posts/ include all attachments not
  1841. just the first five via JSON API
  1842. * Bug Fix: Mobile Theme: Minileven; Start after DOM ready
  1843. * Bug Fix: Sharing: Open sharing in same window
  1844. * Bug Fix: Stats language
  1845. * Bug Fix: Subscritpions: fix invalid field when no email address
  1846. = 3.3.2 =
  1847. Release Date: February 19th, 2015
  1848. * Enhancement: Updated translation files.
  1849. * Enhancement: Heartbeat: Correctly stat new datasets.
  1850. * Bug Fix: Widget Visibility: Correct some caching of visibility results that
  1851. may get evaluated too soon.
  1852. * Bug Fix: Contact Form: Hardening.
  1853. * Bug Fix: Photon: Make sure our gallery filter can parse array inputs as well
  1854. as the default html.
  1855. = 3.3.1 =
  1856. Release Date: February 11th, 2015
  1857. * Bug Fix: JSON API: Minor versioning data.
  1858. * Bug Fix: Markdown: Re-run KSES after processing to account for syntax
  1859. changes.
  1860. * Bug Fix: Media Extractor: Don't call a gallery a gallery if it hasn't got
  1861. any pictures!
  1862. * Bug Fix: Module Management: Handle a core api change for folks running
  1863. trunk.
  1864. * Bug Fix: Related Posts: CSS -- better clear rows.
  1865. * Bug Fix: Sharing: Including sharing account on Pinterest unofficial buttons
  1866. as well.
  1867. * Bug Fix: Sharing: Properly version external assets by Jetpack release
  1868. version.
  1869. * Bug Fix: Shortcodes: Soundcloud: Backport API compatibility fixes.
  1870. * Bug Fix: Shortcodes: Flickr: Tidy up our regex url pattern matching.
  1871. * Bug Fix: Subscriptions: Don't add 'Email Address' as the value -- we have
  1872. placeholders!
  1873. * Bug Fix: Widgets: Gallery Widget: Allow folks to upload images from the
  1874. widget area in the customizer.
  1875. = 3.3 =
  1876. Release Date: December 15th, 2014
  1877. Release Post: http://wp.me/p1moTy-1aF
  1878. * Enhancement: Adds responsive video support to BuddyPress.
  1879. * Enhancement: Custom Content Types: Added 'order' and 'orderby' options to
  1880. portfolio shortcode.
  1881. * Enhancement: Display notice when Jetpack Development Mode is on.
  1882. * Enhancement: General: Update compatibility with Twenty Fifteen.
  1883. * Enhancement: Image URL can now be overwritten with the
  1884. `jetpack_images_fit_image_url_override` filter after dimensions are set by
  1885. Photon.
  1886. * Enhancement: JSON API: Add Endpoint for trigger Plugin Autoupdates.
  1887. * Enhancement: JSON API: General Improvements. Documentation on
  1888. http://developer.wordpress.com/
  1889. * Enhancement: Likes: Updated the code to accept arbitrary CPTs.
  1890. * Enhancement: Related Posts: Allow filter by `post_format`.
  1891. * Enhancement: Sharing: add new `jetpack_sharing_counts` filter for option to
  1892. turn off sharing counts.
  1893. * Enhancement: Sharing: Use the Site Logo Theme Tool and the Site Icon as
  1894. fallbacks for image tags.
  1895. * Enhancement: Shortcodes: Made the code more readable by using output buffers
  1896. instead of string concatenation.
  1897. * Enhancement: Site Logo: Add alias functions to provide backward
  1898. compatibility for themes expecting the old function calls.
  1899. * Enhancement: Slideshow: Add title and alt text to images.
  1900. * Enhancement: Subscription Form: Do not display the logged in user's email
  1901. address by default.
  1902. * Enhancement: Top Posts Widget: Refactor to allow conditional loading of the
  1903. css.
  1904. * Enhancement: Top Posts: Add `jetpack_top_posts_widget_count` filter to
  1905. control number of displayed posts.
  1906. * Bug Fix: Change subscribe_text from `p` to `div` so that it can contain
  1907. block-level elements.
  1908. * Bug Fix: Fonts: Change path to look for the svg in the right directory.
  1909. * Bug Fix: Increase CSS specificity for Contact Forms in widgets.
  1910. * Bug Fix: JSON API: Plugins Update: Make sure the plugin doesn't get
  1911. deactivated.
  1912. * Bug Fix: Likes: Fixes issues where likes don't load, load master iframe
  1913. after scripts are loaded.
  1914. * Bug Fix: Notes Module: Avoid a PHP Notice in cli scripts when the request
  1915. doesn't contain a User-Agent header.
  1916. * Bug Fix: Nova Menu CPT: fix notice when we have no taxonomies.
  1917. * Bug Fix: Nova Menus: Use current instance to maintain object context.
  1918. * Bug Fix: Related Posts: Add filter for `_enabled_for_request()`.
  1919. * Bug Fix: Sharing: Prevent duplicate @ in shared Tweets.
  1920. * Bug Fix: Site Logo: `get_site_logo()` now properly returns the site logo ID
  1921. when provided in the `$show` argument.
  1922. * Bug Fix: Site Logo: Correct evaluation of the Display Header Text in
  1923. Customizer preview.
  1924. = 3.2.1 =
  1925. Release Date: November 14th, 2014
  1926. * Enhancement: Updated translation files.
  1927. * Enhancement: JSON API: More object vars passed back to some queries.
  1928. Documentation on http://developer.wordpress.com/
  1929. * Bug Fix: JSON API: Pass back correct author in `me/posts` data.
  1930. * Bug Fix: JSON API: Don't check if a post is freshly pressed on remote
  1931. Jetpack sites where the function doesn't exist.
  1932. * Bug Fix: Site Logo: Add backward-compatible template tags to match the
  1933. standalone release.
  1934. * Bug Fix: Don't use __DIR__ -- it's 5.3+ only, and WordPress supports back to
  1935. 5.2.
  1936. * Bug Fix: Retool how we remove the source styles when using the concatenated
  1937. version.
  1938. * Bug Fix: Shortcodes: TED: Correct default language code from `eng` to `en`.
  1939. * Bug Fix: Gallery Widget: Add a default background color.
  1940. * Bug Fix: Subscription Notifications: Remove the label.
  1941. * Bug Fix: Sharing: enqueue Genericons on static front page as well if
  1942. selected.
  1943. = 3.2 =
  1944. Release Date: October 29, 2014
  1945. Release Post: http://wp.me/p1moTy-181
  1946. * Enhancement: Speed Improvements (woohoo!).
  1947. * Enhancement: Add site icons: an avatar for your blog.
  1948. * Enhancement: Improvements to API endpoints.
  1949. * Enhancement: Add oEmbed sources (Twitter, SoundCloud, Instagram,
  1950. DailyMotion, Vine).
  1951. * Enhancement: Add indicators to make it easier to see which modules are
  1952. active.
  1953. * Enhancement: Improve debug tool.
  1954. * Enhancement: Add new 'Site Logos' code to theme tools, for themes that opt
  1955. in to support it.
  1956. * Enhancement: Improved caching for related posts.
  1957. * Enhancement: Added "Remember Me" functionality to Single Sign On.
  1958. * Enhancement: Improved accessibility.
  1959. * Enhancement: Added additional filters to Widget Visibility.
  1960. * Bug Fix: Fixed PHP Notice errors for Likes, Widget Visibility.
  1961. * Bug Fix: Improvements to the testimonials CPT.
  1962. * Bug Fix: Improved RTL on VideoPress admin.
  1963. * Bug Fix: Removed Google+ Authorship module (discontinued by Google).
  1964. * Bug Fix: Fixed use of deprecated function in mobile theme.
  1965. * Bug Fix: Various fixes to Tiled Galleries.
  1966. * Bug Fix: Various fixes to Contact Form.
  1967. * Bug Fix: Various fixes to oEmbed.
  1968. * Bug Fix: Various fixes to Single Sign On.
  1969. * Bug Fix: Fixed styles in ShareDaddy.
  1970. * Bug Fix: Better match protocols (http/https) to the site.
  1971. = 3.1.1 =
  1972. Release Date: August 7, 2014
  1973. * Enhancement: Update translation files for strings that had been
  1974. submitted/approved since release.
  1975. * Bug Fix: Social Links: Add a function check to better degrade if Publicize
  1976. isn't around.
  1977. * Bug Fix: Open Graph: Add WordPress SEO back to the blacklist, until they
  1978. update how they opt us out.
  1979. * Bug Fix: Asset Minification: Add another caveat ( empty $plugin ) to short
  1980. out on.
  1981. * Bug Fix: Deprecated Hooks: Fixing our expectations where something that
  1982. should be an array occasionally wasn't.
  1983. * Bug Fix: Custom CSS: Add extra whitelist rule for -o-keyframe rules.
  1984. = 3.1 =
  1985. Release Date: July 31, 2014
  1986. Release Post: http://wp.me/p1moTy-129
  1987. * Enhancement: New Custom Content Types module.
  1988. * Enhancement: New Jetpack Logo.
  1989. * Enhancement: New optional JSON API endpoints for viewing updates and
  1990. managing plugins and themes.
  1991. * Enhancement: New Custom Post Type: Portfolio!
  1992. * Enhancement: Rearranged buttons on the modules modals for easier management.
  1993. * Enhancement: Jetpack Settings have improved keyboard accessibility.
  1994. * Enhancement: Improved RTL support for After the Deadline, Carousel, Contact
  1995. Form, Comics CPT, Custom CSS, Omnisearch, Publicize, Related Posts, Slideshow
  1996. short code, Tiled Gallery, Widget-Visibility and Widgets Gallery.
  1997. * Enhancement: Contact Form: Add an "Empty Spam" option.
  1998. * Enhancement: i18n: Change the priority of where plugin_textdomain is hooked
  1999. so that the plugins can better translate Jetpack.
  2000. * Enhancement: Monitor: Displays how often the site is checked for downtime.
  2001. * Enhancement: Shortcode: Added Mixcloud shortcode and oEmbed support.
  2002. * Enhancement: Social Links: Improved handling of customizer hooks in
  2003. non-admin context.
  2004. * Enhancement: Stats: The smiley image is gone by default.
  2005. * Enhancement: Stats: Added link to the configure page for stats so that the
  2006. stats settings page is easier to find.
  2007. * Enhancement: Theme Tools: Added the responsive videos to theme tools so that
  2008. themes can support responsive videos more easily.
  2009. * Update: Updated Genericons to version 3.1, new icons for website, ellipsis,
  2010. foursquare, x-post, sitemap, hierarchy and paintbrush.
  2011. * Bug Fix: Contact Form: Prefix function to avoid conflicts with other
  2012. plugins.
  2013. * Bug Fix: Custom CSS: Admin UI has a responsive layout.
  2014. * Bug Fix: Custom CSS: Custom $content_width value doesn't overwrite theme's
  2015. $content_width.
  2016. * Bug Fix: Contact Form: Feedback link takes you to the form page.
  2017. * Bug Fix: Carousel: Confirms an avatar is returned by get_avatar before
  2018. displaying.
  2019. * Bug Fix: Featured Content: Don't remove setting validation.
  2020. * Bug Fix: Infinite Scroll: Google Universal Analytics support added.
  2021. * Bug Fix: Multisite: Add message when updating multisite settings.
  2022. * Bug Fix: Photon: Photon will no longer upscale images larger than the
  2023. original size.
  2024. * Bug Fix: Photon: Check that the image exists before rewriting the image URL
  2025. to utilize Photon.
  2026. * Bug Fix: Sharing: Pinterest adds attribute to display share count.
  2027. * Bug Fix: Sharing: Respect an empty sharing title.
  2028. * Bug Fix: Sharing: Share buttons now appear in the bbPress forms.
  2029. * Bug Fix: Sharing: Support for multiple meta html tag og:image values.
  2030. * Bug Fix: Single Sign On: Logout allows override of forcing Single Sign On.
  2031. * Bug Fix: Single Sign On: Remove the lost password link on auto-forward
  2032. logout.
  2033. * Bug Fix: Social Links: Do not use anonymous function for compatibility with
  2034. PHP 5.2.
  2035. * Bug Fix: Tiled Galleries: Update jQuery mouseover caption effect to reduce
  2036. flickering.
  2037. * Bug Fix: Widgets Visibility: Works better in the customizer admin view.
  2038. = 3.0.2 =
  2039. Release Date: June 17, 2014
  2040. * Enhancement: General: Make module categories filter more visible when
  2041. active.
  2042. * Enhancement: General: Updated translation files with more strings added
  2043. since the last release.
  2044. * Enhancement: General: Allow deep-linking to the Contact Support form.
  2045. * Bug Fix: General: RTL Jetpack Admin UI looks better.
  2046. * Bug Fix: General: Fixed PHP warning when bulk deactivating modules.
  2047. * Bug Fix: General: Removed an unnecessary description.
  2048. * Bug Fix: General: Resolved an SSL error on Jetpack Admin UI.
  2049. * Bug Fix: General: Fix error comparing signatures when the WordPress
  2050. installation is using site_url filters (applied mostly to WPEngine sites).
  2051. * Bug Fix: General: Resolved PHP strict error on the mobile menu.
  2052. * Bug Fix: General: Fix timing of conditional checks, so that calling
  2053. developer mode via a plugin works again.
  2054. * Bug Fix: General: Main page categories tab now properly translates module
  2055. names.
  2056. * Bug Fix: Related Posts: Fix a typo, the "more info" link now works.
  2057. * Bug Fix: Likes: Improve button styling.
  2058. * Bug Fix: Likes: Remove unused UI for Reblog settings on social settings
  2059. page.
  2060. * Bug Fix: Contact Form: Updated to no longer use a deprecated Akismet
  2061. function.
  2062. * Bug Fix: Contact Form: Sends email to the administrator that is not marked
  2063. as spam again.
  2064. * Bug Fix: Open Graph: Resolved PHP warning on open graph gallery pages when
  2065. the gallery is empty.
  2066. = 3.0.1 =
  2067. Release Date: May 22, 2014
  2068. * Bug Fix: AtD: A wpcom-only function got synced by mistake and caused a few
  2069. errors. Fixed.
  2070. * Bug Fix: Post By Email: Add static keyword to a function.
  2071. * Bug Fix: ShareDaddy: In the admin-side configuration of sharing links, we
  2072. used a Path icon instead of Pinterest. Oops!
  2073. * Bug Fix: ShareDaddy: We inadvertently appended `via @jetpack` to some
  2074. twitter shares. This is no longer the case.
  2075. * Bug Fix: Related Posts: Tidying up and relocation of the `resync` button
  2076. formerly on the more info modal.
  2077. * Bug Fix: Infinite Scroll: Work better with core's MediaElement.js
  2078. * Bug Fix: Heartbeat: Undeclared variable fixed.
  2079. = 3.0 =
  2080. Release Date: May 20, 2014
  2081. Release Post: http://wp.me/p1moTy-Wi
  2082. * New User Interface for managing modules and settings
  2083. * New Module: Verfication Tools
  2084. * Enhancement: New look for the Sharing module
  2085. * Enhancement: Multiple improvements on which Twitter handle a Twitter card
  2086. will display
  2087. * Enhancement: Add option to hide Google+ Authorship banner while still
  2088. receiving the benefits
  2089. * Enhancement: Many Infinite Scroll enhancements to improve performance
  2090. * Enhancement: Infinite Scroll will use your CPT's display name instead of
  2091. "Older Posts"
  2092. * Enhancement: JSON API added /media/new endpoint
  2093. * Enhancement: Added filter to assign new default image for Open Graph tags
  2094. * Enhancement: New [jetpack-related-posts] shortcode to add Related Posts to
  2095. page instead of default placement
  2096. * Enhancement: Added SSO option to turn off login form completely, to use
  2097. WordPress.com login exclusively
  2098. * Enhancement: The [googlemaps] shortcode allows for Google Maps Engine
  2099. * Enhancement: YouTube shortcode allows HD playback
  2100. * Enhancement: Smoother, Faster Tiled Galleries!
  2101. * Enhancement: New languages! Use Jetpack in Irish, Fulah, and Tigrinya
  2102. * Bug Fix: Use your browser's Back and Forward buttons when naviagating a
  2103. Carousel
  2104. * Bug Fix: Various Related Posts fixes and improvements for added flexibility
  2105. * Bug Fix: WordPress 3.9: Restores ability to edit Contact Forms
  2106. * Bug Fix: WordPress 3.9: Restores Gallery Widget compatability
  2107. * Bug Fix: Ensure Markdown is kept when Bulk Editing posts
  2108. * Bug Fix: Improved Jetpack's Multisite Network Admin page for networks with a
  2109. large number of sites
  2110. * Bug Fix: Ensure Sharing settings persist when Bulk Editing a post
  2111. * Bug Fix: Various other shortcode improvements
  2112. = 2.9.3 =
  2113. Release Date: April 10, 2014
  2114. Release Post: http://wp.me/p1moTy-U2
  2115. * Important security update. CVE-2014-0173
  2116. = 2.9.2 =
  2117. Release Date: March 17, 2014
  2118. * Bug Fix: Publicize: When publishing from a mobile app or third-party client,
  2119. Publicize now works again.
  2120. = 2.9.1 =
  2121. Release Date: March 6, 2014
  2122. * Bug Fix: After the Deadline: Fix a Javascript glitch that could prevent
  2123. publishing of posts.
  2124. * Bug Fix: SSO: Disable the implementation of an option that had been removed
  2125. before release. This would have only been an issue if a site administrator
  2126. had enabled the module during an early beta of 2.9.
  2127. = 2.9 =
  2128. Release Date: February 26, 2014
  2129. Release Post: http://wp.me/p1moTy-RN
  2130. * Added Multisite network functionality
  2131. * New Module: Related Posts
  2132. * Enhancement: Single Sign On
  2133. * Enhancement: Mixcloud shortcode and oEmbed
  2134. * Enhancement: Gist shortcode and oEmbed
  2135. * Enhancement: Modify Facebook Like Box widget to support new Facebook
  2136. parameters
  2137. * Enhancement: Rolled the Push Notifications module into the Notes module
  2138. * Enhancement: Update kses with Markdown
  2139. * Enhancement: Adding keyboard accessibility to sharing buttons config page
  2140. * Enhancement: Pull WordPress testing bits from the new official git mirror at
  2141. WordPress.org
  2142. * Bug Fix: Widget Visibility
  2143. * Bug Fix: Revisions box in Custom CSS
  2144. * Bug Fix: Fix several bugs in the WordPress Posts Widget so that it correctly
  2145. updates
  2146. * Bug Fix: Limit Login Attempts no longer generates false positives from
  2147. xmlrpc.
  2148. * Bug Fix: Clear max_posts transient on theme switch.
  2149. * Bug Fix: Lower priority of sync to allow all CPTs to be registered.
  2150. * Bug Fix: Contact form fields emailed in correct order.
  2151. * Other bugfixes and enhancements at
  2152. https://github.com/Automattic/jetpack/commits/2.9
  2153. = 2.8 =
  2154. Release Date: January 31, 2014
  2155. Release Post: http://wp.me/p1moTy-Pd
  2156. * New Module: Markdown
  2157. * Module Update: Jetpack Monitor
  2158. * Enhancement: Infinite Scroll: Keep track of $current_day between requests so
  2159. the_date() works well.
  2160. * Enhancement: Embeds: New filter to turn off embeds in comments.
  2161. * Enhancement: Contact Form: Add placeholder support.
  2162. * Enhancement: Widget: Gravatar Profile: Added filters to allow users to
  2163. customize headings and fixed output of personal links.
  2164. * Enhancement: Facebook OG Tags: Add `published_time`, `modified_time`, and
  2165. `author` if the post type supports it.
  2166. * Enhancement: Sharing: Display buttons on CPT archive pages.
  2167. * Enhancement: Sharing: Add `get_share_title` function and filter.
  2168. * Enhancement: Sharing: Add filter `sharing_display_link`.
  2169. * Enhancement: Twitter Timeline: Flesh out tweet limit option.
  2170. * Enhancement: Social Links: Add Google+ to the list of supported services.
  2171. * Enhancement: Stats: Improve dashboard styles in 3.8.
  2172. * Enhancement: Stats: No longer use Quantcast.
  2173. * Enhancement: Top Posts: Add `jetpack_top_posts_days` filter.
  2174. * Enhancement: AtD: Add TinyMCE 4 compatibility for its pending arrival in
  2175. WordPress 3.9
  2176. * Enhancement: Genericons: Update to v3.0.3
  2177. * Enhancement: Tiled Galleries: Add alt attributes to images.
  2178. * Enhancement: Shortcode: YouTube: Accept protocol-relative URLs.
  2179. * Enhancement: Shortcode: Slideshow: Add white background option.
  2180. * Enhancement: Shortcode: YouTube: Add support for the two closed-caption
  2181. arguments.
  2182. * Enhancement: Shortcode: Vimeo: Update the regex to support the new embed
  2183. code.
  2184. * Enhancement: Shortcode: Google Maps: Update the regex to handle new format
  2185. for embeds.
  2186. * Enhancement: Likes: Avoid a PHP Notice when $_POST['post_type'] is not set
  2187. in meta_box_save.
  2188. * Enhancement: Smush images to save on file size.
  2189. * Enhancement: Publicize: Enable opt-in publicizing of custom post types.
  2190. * Bug Fix: Random Redirect: Further namespace to avoid conflicts.
  2191. * Bug Fix: Twitter Timeline: Resolve undefined index notice.
  2192. * Bug Fix: Featured Content: Add extra class_exists() check to be extra
  2193. careful.
  2194. * Bug Fix: Facebook OG Tags: Change OG type of Home and Front Page to
  2195. 'website'
  2196. * Bug Fix: Widget Visibility: Add support for old-style single use widgets.
  2197. * Bug Fix: Google Authorship: Support apostrophe in author names.
  2198. * Bug Fix: Media Extractor: Assorted graceful failure caveats.
  2199. * Bug Fix: Carousel: 'Link to None' bug fixed.
  2200. * Bug Fix: Embeds: Bandcamp: Switch escaping function for album and track IDs
  2201. to handle (int)s greater than PHP_INT_MAX
  2202. * Bug Fix: Some plugins trying to catch brute-force attacks mistakenly flagged
  2203. the Jetpack connection as one.
  2204. = 2.7 =
  2205. Release Date: December 11, 2013
  2206. Release Post: http://wp.me/p1moTy-Mk
  2207. * Enhancement: Google+ Publicize
  2208. * Enhancement: Add Cloudup as an oEmbed provider
  2209. * Enhancement: Subscriptions: Add subscribe_field_id filter to allow updated
  2210. ids when using multiple widgets
  2211. * Enhancement: Infinite Scroll: TwentyFourteen Support
  2212. * Bug Fix: Contact Form: Fix warning when form is called outside the loop
  2213. * Bug Fix: Featured Content: Moving Settings to Customizer, provide option to
  2214. set default tag as fallback, specify all supported post-types rather than just
  2215. additional ones. Description Updates
  2216. * Bug Fix: Featured Content: Compat with 'additional_post_types' theme support
  2217. argument. Comment updates
  2218. * Bug Fix: Featured Content: Make sure $term is an object before we treat it
  2219. as one
  2220. * Bug Fix: GlotPress: Merge with latest GlotPress
  2221. * Bug Fix: Infinite Scroll: prevent Undefined index notice that can cause IS
  2222. to fail when user has WP_DEBUG set to true
  2223. * Bug Fix: Infinite Scroll: Improved compatibility with Carousel, Tiled
  2224. Galleries, VideoPress, and the `[audio]` and `[video]` shortcodes
  2225. * Bug Fix: Likes: Stop manually including version.php and trust the global.
  2226. Some whitespace fixes, and if it's an attachment, follow the post_status of
  2227. the parent post
  2228. * Bug Fix: Mobile Theme: Display password field for Gallery format protected
  2229. posts
  2230. * Bug Fix: Sharing: Add new translation width for share button, and Google
  2231. Plus icons
  2232. * Bug Fix: Shortcodes: Support Ineternational Google domains for maps
  2233. * Bug Fix: Shortcodes: Facebook Embeds: Register alternate permalink.php URL
  2234. for posts
  2235. * Bug Fix: Subscriptions: Moved inline styles from widget email input to
  2236. separate css file
  2237. * Bug Fix: Theme Tools: Fix glitch where random-redirect.php also showed as a
  2238. plugin being deleted if you were deleting Jetpack
  2239. * Bug Fix: Misc: Internationalization & RTL updates
  2240. * Bug Fix: Misc: Prevent collisions with 'Facebook Featured Image & OG Meta
  2241. Tags' plugin
  2242. = 2.6.1 =
  2243. Release Date: December 3, 2013
  2244. * Bug Fix: minor styling fix in pre- and post-MP6/3.8 UI changes.
  2245. * Bug Fix: Stats: spinner gif url fix when the user is viewing it over https.
  2246. * Bug Fix: Stats: Switch to esc_html from htmlspecialchars in error message --
  2247. better to be native
  2248. * Bug Fix: Media Extractor: some hosts don't compile unicode for
  2249. preg_match_all, so we temporarily removed the block that depended on it.
  2250. * Bug Fix: Media Extractor: Add in some error handling for malformed URLs.
  2251. * Bug Fix: Twitter Cards: treat single-image galleries as a photo-type.
  2252. * Bug Fix: Update conflicting plugins for OG tags and Twitter Cards.
  2253. * Bug Fix: Correct max supported version number -- had been 3.6, update to
  2254. 3.7.1
  2255. = 2.6 =
  2256. Release Date: November 28, 2013
  2257. Release Post: http://wp.me/p1moTy-KE
  2258. * Enhancement: WPCC / now called [SSO](http://jetpack.com/support/sso/):
  2259. refactored.
  2260. * Enhancement: Monitor: new module which will notify you if your site goes
  2261. down(http://jetpack.com/support/monitor/).
  2262. * Enhancement: Custom CSS: replace Ace editor with Codemirror.
  2263. * Enhancement: Widgets: new “Display Posts” widget.
  2264. * Enhancement: WP-CLI: add commands to disconnect a site and manage modules.
  2265. * Enhancement: Contact Form: new filters, `grunion_contact_form_field_html`
  2266. and `grunion_should_send_email`.
  2267. * Enhancement: Custom Post Types: new restaurant post type.
  2268. * Enhancement: Genericons: update to version 3.0.2.
  2269. * Enhancement: Infinite Scroll: many improvements and fixes.
  2270. * Enhancement: Likes: performance improvements.
  2271. * Enhancement: MP6: Jetpack icons are now compatible with WordPress 3.8.
  2272. * Enhancement: Open Graph: better descriptions, fallback images, and media
  2273. extraction from video posts.
  2274. * Enhancement: Publicize: new background token tests for connected publicize
  2275. services and display problems on settings sharing and add new post.
  2276. * Enhancement: Shortcodes: updated Bandcamp shortcode to support the
  2277. `tracklist` and `minimal` attributes, as well as more `artwork` attribute
  2278. values.
  2279. * Enhancement: Shortlinks: add Custom Post Type support.
  2280. * Enhancement: Subscriptions: add more ways to customize the subscriptions
  2281. widget.
  2282. * Enhancement: Twitter Cards: better media management and card type detection,
  2283. and better handling of conflicts with other Twitter Cards plugins.
  2284. * Enhancement: better handling of conflicts with other plugins.
  2285. * Bug Fix: After the Deadline: add a typeof check for `tinyMCEPreInit.mceInit`
  2286. to prevent js errors.
  2287. * Bug Fix: Carousel: speed improvements and several bugfixes.
  2288. * Bug Fix: Contact Form: remove nonce creating issues with caching plugins.
  2289. * Bug Fix: Custom Post Types: Testimonials: return if featured image is empty
  2290. so it can be removed after it’s been set.
  2291. * Bug Fix: Featured Content: add additional post type support through the
  2292. `additional_post_types` argument.
  2293. * Bug Fix: Google Authorship: support apostrophes in Google+ profiles.
  2294. * Bug Fix: Google Authorship: use a regexp Instead of using
  2295. `mb_convert_encoding`, which doesn’t enjoy universal support.
  2296. * Bug Fix: Heartbeat: ensure that it never triggers more than once per week.
  2297. * Bug Fix: JSON API: add new `?meta=` parameter that allows you to expand the
  2298. data found in the `meta->links` responses.
  2299. * Bug Fix: JSON API: add new `is_private` response to the sites endpoint and
  2300. `global_ID` response to the reader and post endpoints.
  2301. * Bug Fix: Mobile Theme: allow small images to display inline.
  2302. * Bug Fix: Mobile Theme: fix fatal errors for missing `minileven_header`
  2303. function.
  2304. * Bug Fix: Photon: fix errors when an image is not uploaded properly.
  2305. * Bug Fix: Shortcodes: improvements to Archives, Google+, Presentations, Vine
  2306. and Youtube.
  2307. * Bug Fix: Tiled Galleries: improve display of panoramic images and fix errors
  2308. when an image is not uploaded properly.
  2309. = 2.5 =
  2310. Release Date: September 19, 2013
  2311. Release Post: http://wp.me/p1moTy-xS
  2312. * Enhancement: Connect your Google+ profile and WordPress site to prove
  2313. authorship of posts.
  2314. * Enhancement: Improved sharing buttons display.
  2315. * Enhancement: Comment on your posts using Google+ to signin.
  2316. * Enhancement: Embed Google+ posts into your posts.
  2317. * Enhancement: Added event logging capabilities for debugging
  2318. * Enhancement: LaTeX is now available in dev mode
  2319. * Enhancement: Introduced gallery widget
  2320. * Enhancement: Added new module: VideoPress
  2321. * Enhancement: Updated identity crisis checker
  2322. * Enhancement: Tiled Gallery widget added
  2323. * Enhancement: Google +1 button changed to Google+ Share button, to avoid
  2324. confusion
  2325. * Enhancement: Added check to ensure Google+ authorship accounts have
  2326. disconnected properly
  2327. * Enhancement: Updated identity crisis checker
  2328. * Enhancement: Tiled Gallery widget added
  2329. * Enhancement: Google +1 button changed to Google+ Share button, to avoid
  2330. confusion
  2331. * Enhancement: Added the ability to embed Facebook posts
  2332. * Bug Fix: Redirect issue with G+ authorship when WordPress is not in the root
  2333. directory
  2334. * Enhancement: Better security if carousel to prevent self-XSS
  2335. * Enhancement: Better handling of cookies for subsites on multisite installs
  2336. * Bug Fix: Check for post in G+ authorship before accessing it
  2337. = 2.4.2 =
  2338. Release Date: September 5, 2013
  2339. * Enhancement: Converted to module headers to detect Auto-Activating modules.
  2340. * Enhancement: WPCC: Added 'Close' link to deactivate WPCC in the admin nag.
  2341. * Enhancement: JSON API: Add User Nicename to the user data.
  2342. * Bug Fix: Contact Form: Stopped using a short tag.
  2343. * Bug Fix: Changed CSS selector to catch MP6 stylings.
  2344. * Bug Fix: Dropped __FILE__ references in class.jetpack.php in favor of
  2345. JETPACK__PLUGIN_DIR constant, now code that deactivates the plugin from the
  2346. connect nag works again.
  2347. * Bug Fix: Random Redirect: Add random-redirect to the plugins overriden list,
  2348. in case someone is using Matt's Random Redirect plugin.
  2349. * Bug Fix: Tiled Gallery: Revert r757178 relating to tiled gallery defaults.
  2350. * Bug Fix: Return false, not zero, if $GLOBALS['content_width'] isn't defined.
  2351. * Bug Fix: WPCC: Don't call wp_login_url() in the constructor -- if someone is
  2352. running a custom login page, that can break things if their plugin runs
  2353. get_permalink as a filter before init.
  2354. * Bug Fix: Tiled Gallery: Add fallback if post_parent == 0 due to
  2355. infinite_scroll_load_other_plugins_scripts.
  2356. * Bug Fix: Custom CSS: Set the ACE gutter z-index to 1.
  2357. * Bug Fix: Custom Post Types: Switch from wp_redirect() to wp_safe_redirect().
  2358. * Bug Fix: Likes: Set overflow:hidden; on the likes adminbar item.
  2359. * Bug Fix: Mobile Theme: Migrate where/when the custom header stuff is
  2360. included.
  2361. * Bug Fix: Slideshow Shortcode: Add a height of 410px.
  2362. = 2.4.1 =
  2363. Release Date: September 4, 2013
  2364. * Enhancement: Don't auto-activate WPCC.
  2365. = 2.4 =
  2366. Release Date: August 30, 2013
  2367. Release Post: http://wp.me/p1moTy-wv
  2368. * Enhancement: WordPress.com Connect (WPCC): New Module.
  2369. * Enhancement: Widget Visibility: New Module.
  2370. * Enhancement: Shortcode: Addition of new Twitter Timeline shortcode.
  2371. * Enhancement: Shortcode: Addition of new Presentation shortcode.
  2372. * Enhancement: Shortcode: Addition of new Vine shortcode.
  2373. * Enhancement: Custom Post Types: CPTs are available.
  2374. * Enhancement: Subscriptions: Add 'jetpack_is_post_mailable' filter.
  2375. * Enhancement: OpenGraph: Add Twitter Cards meta tags as well.
  2376. * Enhancement: Custom CSS: Update lessc and scssc preprocessors to 0.4.0 and
  2377. 0.0.7 respectively.
  2378. * Enhancement: Omnisearch: Add Media results.
  2379. * Enhancement: Likes: Use a protocol-agnostic iframe, instead of forced HTTPS.
  2380. * Enhancement: Top Posts: Increase post limit.
  2381. * Enhancement: Publicize: Updated JS and UI.
  2382. * Enhancement: Photon: New filter to let site admins/owners enable photon for
  2383. HTTPS urls.
  2384. * Enhancement: New jetpack_get_available_modules filter.
  2385. * Enhancement: Subscriptions: Antispam measures.
  2386. * Bug Fix: Add inline style to keep plugins/themes from inadvertently hiding
  2387. the Connect box.
  2388. * Bug Fix: Custom CSS: Respect the new wp_revisions_to_keep filter.
  2389. * Bug Fix: Photon: Only hook jetpack_photon_url into the filter if the user
  2390. has Photon active.
  2391. * Bug Fix: Heartbeat: Used wrong object, occasinally fatal-erroring out for
  2392. the cron.
  2393. * Bug Fix: Add an empty debug.php file to the /modules/ folder, to solve some
  2394. update issues where it never got deleted.
  2395. = 2.3.5 =
  2396. Release Date: August 12, 2013
  2397. Release Post: http://wp.me/p1moTy-vf
  2398. * Enhancement: Added Path support to Publicize.
  2399. = 2.3.4 =
  2400. Release Date: August 6, 2013
  2401. Release Post: http://wp.me/p1moTy-uL
  2402. * Bug Fix: Correct when output occurs with CSV export for feedback.
  2403. * Bug Fix: Tidy up the Heartbeat API.
  2404. * Enhancement: User Agent: Improve detecting of bots.
  2405. * Enhancement: Genericons: Make sure we're pulling the freshest version from
  2406. genericons.com on each release.
  2407. * Enhancement: JSON API: Open up replies/new endpoints so that users can
  2408. comment on blogs that are not in their access token.
  2409. * Enhancement: Photon: Apply to `get_post_gallery()` function as well.
  2410. * Enhancement: Tiled Galleries: Add a default bottom margin to be more robust
  2411. out of the box.
  2412. * Translations: Adding in fresher translation files.
  2413. * Deprecation: Removing the retinization code for 3.4, as it was included in
  2414. WordPress trunk from 3.5 onwards.
  2415. = 2.3.3 =
  2416. Release Date: July 26, 2013
  2417. Release Post: http://wp.me/p1moTy-uv
  2418. * Bug Fix: We were inadvertently overwriting cron schedules with our Jetpack
  2419. heartbeat. This should now be fixed.
  2420. * Enhancement: New Facebook Sharing icons.
  2421. * Enhancement: Minor update to the Minileven stylesheet.
  2422. = 2.3.2 =
  2423. Release Date: July 25, 2013
  2424. Release Post: http://wp.me/p1moTy-uv
  2425. * Bug Fix: Fixed an issue where Facebook Pages were not available when
  2426. connecting a Publicize account.
  2427. * Bug Fix: For some web hosts, fixed an issue where 'Jetpack ID' error would
  2428. occur consistently on connecting to WordPress.com.
  2429. * Enhancement: Adding some new stats and heartbeat checking to Jetpack.
  2430. = 2.3.1 =
  2431. Release Date: July 2, 2013
  2432. Release Post: http://wp.me/p1moTy-t9
  2433. * Enhancement: Social Links: Retooling the class for better consistency and
  2434. performance behind the scenes.
  2435. * Enhancement: Omnisearch: Make it easier to search Custom Post Types. No
  2436. longer need to extend the class, if all you want is a basic display. Just
  2437. call `new Jetpack_Omnisearch_Posts( 'cpt' );`
  2438. * Enhancement: Sharing Buttons: LinkedIn: Use the official button's sharing
  2439. link on the Jetpack implementation for a more consistent sharing experience
  2440. and produce better results on LinkedIn's end.
  2441. * Enhancement: Debug / Connection: Better logic in determining whether the
  2442. server can use SSL to connect to WPCOM servers.
  2443. * Enhancement: Sharing: Twitter: Calculate the size of the Tweet based on the
  2444. short URL rather than the full URL size.
  2445. * Enhancement: Debug: More readable and understandable messages.
  2446. * Enhancement: Likes: Including some MP6 styles.
  2447. * Enhancement: Comments: Add new core classes to comment form. See
  2448. http://core.trac.wordpress.org/changeset/24525
  2449. * Bug Fix: Omnisearch: Don't load everything initially, run the providers off
  2450. admin_init, and then issue an action for folks to hook into.
  2451. * Bug Fix: Omnisearch: Modify some child class functions to match the parent's
  2452. parameters and avoid strict notices in newer versions of PHP.
  2453. * Bug Fix: Omnisearch: Hide the search form in the module description if the
  2454. current user can't use it.
  2455. * Bug Fix: Comment Form: Use edit_pages, not edit_page (fixes glitch in
  2456. previous beta, never publicly released).
  2457. * Bug Fix: Twitter Timeline Widget: Additional testing of values and casting
  2458. to default if they are nonconforming.
  2459. * Bug Fix: Sharing: Pinterest: Make the button wider if there's a count to
  2460. avoid overlapping with others.
  2461. * Bug Fix: Post By Email: Change configuration_redirect to static.
  2462. * Bug Fix: Likes: Don't call configuration_redirect as a static, do it as a
  2463. method.
  2464. * Bug Fix: Add some further security measures to module activation.
  2465. = 2.3 =
  2466. Release Date: June 19, 2013
  2467. Release Post: http://wp.me/p1moTy-rX
  2468. * Enhancement: Omnisearch: Search once, get results from everything!
  2469. Omnisearch is a single search box that lets you search many different things
  2470. * Enhancement: Debugger: this module helps you debug connection issues right
  2471. from your dashboard, and contact the Jetpack support team if needed
  2472. * Enhancement: Social Links: this module is a canonical source, based on
  2473. Publicize, that themes can use to let users specify where social icons should
  2474. link to
  2475. * Enhancement: It’s now easier to find out if a module is active or note,
  2476. thanks to the new Jetpack::is_module_active()
  2477. * Enhancement: Contact Form: You are now able to customize the submit button
  2478. text thanks to the submit_button_text parameter
  2479. * Enhancement: Comments: We've added a filter to let users customize the
  2480. Comment Reply label, and users can now also customize the prompt on the
  2481. comment form again.
  2482. * Enhancement: Mobile Theme: Add genericons.css and registering it so it’s
  2483. easily accessible to other modules that may want it
  2484. * Enhancement: Tiled Galleries: You can now customize the captions, thanks to
  2485. the jetpack_slideshow_slide_caption filter
  2486. * Enhancement: Widgets: Twitter Timeline: Add the noscrollbar option
  2487. * Enhancement: Widgets: Facebook Like Box Widget: add a show_border attribute
  2488. * Enhancement: Widgets: FB Like Box: let Jetpack users override the iframe
  2489. background color set in an inline style attribute by using the
  2490. jetpack_fb_likebox_bg filter
  2491. * Bug Fix: Carousel: Fix a bug where double-clicking a gallery thumbnail broke
  2492. the carousel functionality
  2493. * Bug Fix: Comments: Change “must-log-in” to class from ID
  2494. * Bug Fix: Contact Form: Make the Add Contact Form link a button, ala Add
  2495. Media in core
  2496. * Bug Fix: Contact Form: Fix encoding of field labels
  2497. * Bug Fix: Contact Form: Remove references to missing images
  2498. * Bug Fix: Fix 2 XSS vulnerabilities
  2499. * Bug Fix: JSON API: Minor fixes for bbPress compatibility
  2500. * Bug Fix: JSON API: Fix metadata bugs
  2501. * Bug Fix: JSON API: Add a new hook that is fired when a post is posted using
  2502. the API
  2503. * Bug Fix: JSON API: Prefork/REST: update path normalizer to accept versions
  2504. other than 1
  2505. * Bug Fix: JSON API: Remove extra parenthesis in CSS
  2506. * Bug Fix: Custom CSS: Move content width filters higher up so that they’re
  2507. active for all users, not just logged-in admins.
  2508. * Bug Fix: Custom CSS: All CSS properties that accept images as values need to
  2509. be allowed to be declared multiple times so that cross-browser gradients work
  2510. * Bug Fix: Infinite Scroll: Allow themes to define a custom function to render
  2511. the IS footer
  2512. * Bug Fix: Infinite Scroll: Fix up Twenty Thirteen styles for RTL and small
  2513. viewports.
  2514. * Bug Fix: Likes: Fix ‘Call to undefined function’
  2515. * Bug Fix: Likes: Add scrolling no to iframe to make sure that like button in
  2516. admin bar does not show scrollbars
  2517. * Bug Fix: Likes: Remove setInterval( JetpackLikesWidgetQueueHandler, 250 )
  2518. call that was causing heavy CPU load
  2519. * Bug Fix: Mobile Theme: Remove unused variable & function call
  2520. * Bug Fix: Publicize: Fix LinkedIn profile URL generation
  2521. * Bug Fix: Publicize: Better refresh handling for services such as LinkedIn
  2522. and Facebook
  2523. * Bug Fix: Shortcodes: Audio shortcode: Treat src as element 0. Fixes audio
  2524. shortcodes created by wp_embed_register_handler when an audio url is on a line
  2525. by itself
  2526. * Bug Fix: Bandcamp: Updates to the Bandcamp shortcode
  2527. * Bug Fix: Stats: Fix missing function get_editable_roles on non-admin page
  2528. loads
  2529. * Bug Fix: Widgets: Twitter Timeline: Fix HTML links in admin; set default
  2530. values for width/height; change some of the sanitization functions
  2531. * Bug Fix: Widgets: Top Posts Widget: Exclude attachments
  2532. * Bug Fix: Widgets: Top Posts Widget: fix data validation for number of posts
  2533. * Bug Fix: Fix PHP warnings non-static method called dynamically
  2534. * Bug Fix: Fixed an issue in image extraction from HTML content
  2535. * Bug Fix: Open Graph: Change default minimum size for og:image too 200×200
  2536. * Note: The old Twitter widget was removed in favour of Twitter Timeline
  2537. widget
  2538. * Note: Add is_module_active() to make it easier to detect what is and what
  2539. isn’t
  2540. * Note: Compressing images via lossless methods
  2541. * Note: Tidying up jetpack’s CSS
  2542. * Note: Set the max DB version for our retina overrides that were meant to
  2543. stop for WordPress 3.5
  2544. * Note: Updating spin.js to the current version, and shifting to the canonical
  2545. jquery.spin.js library
  2546. * Note: Adding Jetpack_Options class, and abstracting out options functions to
  2547. it
  2548. = 2.2.5 =
  2549. Release Date: May 1, 2013
  2550. Release Post: http://wp.me/p1moTy-p8
  2551. * Enhancement: Stats: Counting of registered users' views can now be enabled
  2552. for specific roles
  2553. * Bug Fix: Security tightening for metadata support in the REST API
  2554. * Bug Fix: Update the method for checking Twitter Timeline widget_id and
  2555. update coding standards
  2556. * Bug Fix: Custom CSS: Allow the content width setting to be larger than the
  2557. theme's content width
  2558. * Bug Fix: Custom CSS: Fix possible missing argument warning.
  2559. = 2.2.4 =
  2560. Release Date: April 26, 2013
  2561. Release Post: http://wp.me/p1moTy-oU
  2562. * Bug Fix: JSON API compat file include was not assigning a variable
  2563. correctly, thus throwing errors. This has been resolved.
  2564. = 2.2.3 =
  2565. Release Date: April 26, 2013
  2566. Release Post: http://wp.me/p1moTy-oR
  2567. * Enhancement: Comments - Add the reply-title H3 to the comment form so that
  2568. themes or user CSS can style it
  2569. * Enhancement: Custom CSS - Support for the CSS @viewport
  2570. * Enhancement: JSON API - Support for i_like, is_following, and is_reblogged
  2571. * Enhancement: JSON API: Custom Post Type Support
  2572. * Enhancement: JSON API: Meta Data Support
  2573. * Enhancement: JSON API: Bundled Support for bbPress
  2574. * Enhancement: JSON API: Additions of following, reblog, and like status for
  2575. post endpoints.
  2576. * Enhancement: Shortcodes - Add Bandcamp shortcode
  2577. * Enhancement: Tiled Galleries - Add code to get blog_id
  2578. * Bug Fix: Carousel - Support relative image paths incase a plugin is
  2579. filtering attachment URLs to be relative instead of absolute
  2580. * Bug Fix: Carousel - Add likes widget to images / Respect comment settings
  2581. for name/email
  2582. * Bug Fix: Carousel - Make name and email optional if the setting in the admin
  2583. area says they are
  2584. * Bug Fix: Contact Form - Bug fixes, including a fix for WP-CLI
  2585. * Bug Fix: Contact Form - Remove deprecated .live calls, delegate lazily to
  2586. jQuery(document) since it's all in an iframe modal
  2587. * Bug Fix: Contact Form - RTL styles
  2588. * Bug Fix: Contact Form - Better handle MP6 icons
  2589. * Bug Fix: Custom CSS - array_shift() took a variable by reference, so avoid
  2590. passing it the result of a function
  2591. * Bug Fix: Custom CSS - Allow case-insensitive CSS properties (<a
  2592. href="https://wordpress.org/support/topic/two-issues-with-jetpack-css-module?replies=9">ref</a>)
  2593. * Bug Fix: Infinite Scroll - Maintain main query's `post__not_in` values when
  2594. querying posts for IS
  2595. * Bug Fix: Infinite Scroll - Ensure that IS's `pre_get_posts` method isn't
  2596. applied in the admin. Also fixes an incorrect use of `add_filter()` where
  2597. `add_action()` was meant. Fixes #1696-plugins
  2598. * Bug Fix: Infinite Scroll - CSS update - IS footer was too large in Firefox
  2599. * Bug Fix: Infinite Scroll - Add bundled support for Twenty Thirteen default
  2600. theme
  2601. * Bug Fix: Infinite Scroll - Include posts table's prefix when modifying the
  2602. SQL WordPress generates to retrieve posts for Infinite Scroll
  2603. * Bug Fix: JSON API - Use wp_set_comment_status to change the comment status,
  2604. to make sure actions are run where needed
  2605. * Bug Fix: Likes - Update style and logic for matching id's
  2606. * Bug Fix: Mobile Theme - Ensure that
  2607. <code>minileven_actual_current_theme()</code> is child-theme compatible +
  2608. other updates
  2609. * Bug Fix: Mobile Theme - Update method for finding currently active theme.
  2610. * Bug Fix: Notifications - Remove the postmessage.js enqueue since this
  2611. feature solely supports native postMessage
  2612. * Bug Fix: Notifications - Clean up script enqueues and use core versions of
  2613. underscore and backbone on wpcom as fallbacks
  2614. * Bug Fix: Notifications - Enqueue v2 scripts and style
  2615. * Bug Fix: Notifications - Prefix module-specific scripts and style to prevent
  2616. collision
  2617. * Bug Fix: Notifications - Include lang and dir attributes on
  2618. #wpnt-notes-panel so the notifications iframe can use these to display
  2619. correctly
  2620. * Bug Fix: Open Graph: Use the profile OG type instead of author. Add tags for
  2621. first/last names
  2622. * Bug Fix: Publicize - Remove the Yahoo! service because they stopped
  2623. supporting that API entirely
  2624. * Bug Fix: Publicize - fix fatal errors caused by using a method on a
  2625. non-object. Props @ipstenu
  2626. * Bug Fix: Sharing - Adding 2x graphics for Pocket sharing service
  2627. * Bug Fix: Sharing - Bug fixes, and a new filter
  2628. * Bug Fix: Shortcodes - Audio: make sure that the Jetpack audion shortcode
  2629. does not override the 3.6 core audio shortcode. Also, we need to filter the
  2630. old Jetpack-style shortcode to properly set the params for the Core audio
  2631. shortcode.
  2632. * Bug Fix: Shortcodes - Audio: Re-enable the flash player
  2633. * Bug Fix: Shortcodes - Slideshow: RTL styling update
  2634. * Bug Fix: Tiled Galleries - Fix IE8 display bug where it doesn't honor inline
  2635. CSS for width on images
  2636. * Bug Fix: Tiled Galleries - Remove depreacted hover call, use mouseenter
  2637. mouseleave instead
  2638. * Enhancement: Twitter Timeline Widget: New JavaScript based widget. Old one
  2639. will discontinue May 7th.
  2640. = 2.2.2 =
  2641. Release Date: April 5, 2013
  2642. * Enhancement: Mobile Theme: Add controls for custom CSS.
  2643. * Enhancement: Sharing: Add Pocket to the available services.
  2644. * Bug Fix: Custom CSS: Update the method for generating content width setting.
  2645. * Bug Fix: JSON API: Security updates.
  2646. * Bug Fix: Likes: Add settings for email notifications and misc style updates.
  2647. * Bug Fix: Notifications: Add the post types to sync after init.
  2648. * Bug Fix: Publicize: RTL styling.
  2649. * Bug Fix: Shortcodes: security fixes and function prefixing.
  2650. * Bug Fix: Widgets: Update wording on the Top Posts widget for clarity.
  2651. * Bug Fix: Jetpack Post Images security fixes.
  2652. = 2.2.1 =
  2653. Release Date: March 28, 2013
  2654. Release Post: http://wp.me/p1moTy-ob
  2655. * Enhancement: Development Mode: Define the `JETPACK_DEV_DEBUG` constant to
  2656. `true` to enable an offline mode for localhost development. Only modules that
  2657. don't require a WordPress.com connection can be enabled in this mode.
  2658. * Enhancement: Likes: Added the number of likes to the wp-admin/edit.php
  2659. screens.
  2660. * Enhancement: Mobile Theme - design refresh
  2661. * Enhancement: Shortcodes - Add a filter to the shortcode loading section so
  2662. that a plugin can override what Jetpack loads for shortcodes
  2663. * Enhancement: Widgets - Filter Jetpack's widgets so that a plugin can control
  2664. which widgets get loaded
  2665. * Bug Fix: Comments - Add in a wrapper div with id='commentform'
  2666. * Bug Fix: Contact Form - Added date field with datepicker
  2667. * Bug Fix: Contact Form - Allowed non-text widgets to use contact forms by
  2668. running their output through the widget_text filter
  2669. * Bug Fix: Custom CSS - Allowing color values to be defined multiple times
  2670. * Bug Fix: Custom CSS - Dynamically loading the correct CSS/LESS/SCSS mode for
  2671. the CSS editor if the user changes the preprocessor
  2672. * Bug Fix: Custom CSS - Using the unminified worker CSS
  2673. * Bug Fix: Custom CSS - Added rule: reminder about using .custom-background on
  2674. body selector
  2675. * Bug Fix: Custom CSS - Modified rule: Removed portion of overqualification
  2676. rule that deems 'a.foo' overqualified if there are no other 'a' rules
  2677. * Bug Fix: Custom CSS - Ensuring that the editor and the textarea behind it
  2678. are using the same font so that the cursor appears in the correct location
  2679. * Bug Fix: Custom CSS - Fix a bug that caused some sites to always ignore the
  2680. base theme's CSS when in preview mode
  2681. * Bug Fix: Custom CSS - Run stripslashes() before passing CSS to save()
  2682. * Bug Fix: Custom CSS - Moving inline CSS and JavaScript into external files
  2683. * Bug Fix: Infinite Scroll - Use the `is_main_query()` function and query
  2684. method
  2685. * Bug Fix: Infinite Scroll - Remove unused styles and an unnecessary margin
  2686. setting
  2687. * Bug Fix: Infinite Scroll - Allow the query used with IS to be filtered, so
  2688. IS can be applied to a new query within a page template
  2689. * Bug Fix: JSON API - Catch the 'User cannot view password protected post'
  2690. error from can_view_post and bypass it for likes actions if the user has the
  2691. password entered
  2692. * Bug Fix: Likes - Bump cache buster, Don't show likes for password protected
  2693. posts
  2694. * Bug Fix: Notifications - Remove a redundant span closing tag
  2695. * Bug Fix: Photon - If an image is already served from Photon but the anchor
  2696. tag that surrounds it hasn't had its `href` value rewritten to use Photon, do
  2697. so. Accounts for WP galleries whose individual items are linked to the
  2698. original image files
  2699. * Bug Fix: Publicize - Allows GLOBAL_CAP to be filtered, Adds an AYS to
  2700. connection deletion, UI improvement for MP6 (and in general)
  2701. * Bug Fix: Sharedaddy - Fire the sharing redirect earlier for increased plugin
  2702. compatibility
  2703. * Bug Fix: Stats - Move the display:none CSS output to wp_head so it gets
  2704. written inside the HEAD tag if the option to hide the stats smilie is active
  2705. * Bug Fix: Tiled Galleries - A more descriptive name for the default gallery
  2706. type
  2707. * Bug Fix: Tiled Galleries - Hide the Columns setting for gallery types that
  2708. don't support it
  2709. * Bug Fix: Run the admin_menu action late so that plugins hooking into it get
  2710. a chance to run
  2711. * Bug Fix: Prophylactic strict equality check
  2712. = 2.2 =
  2713. Release Date: February 26, 2013
  2714. Release Post: http://wp.me/p1moTy-ns
  2715. * Enhancement: Likes: Allow your readers to show their appreciation of your
  2716. posts.
  2717. * Enhancement: Shortcodes: SoundCloud: Update to version 2.3 of the SoundCloud
  2718. plugin (HTML5 default player, various fixes).
  2719. * Enhancement: Shortcodes: Subscriptions: Add a shortcode to enable placement
  2720. of a subscription signup form in a post or page.
  2721. * Enhancement: Sharedaddy: Allow selecting multiple images from a post using
  2722. the Pinterest share button.
  2723. * Enhancement: Contact Form: Allow feedbacks to be marked spam in bulk.
  2724. * Enhancement: Widgets: Readmill Widget: Give your visitors a link to send
  2725. your book to their Readmill library.
  2726. * Note: Notifications: Discontinue support for Internet Explorer 7 and below.
  2727. * Bug Fix: JSON API: Fix authorization problems that some users were
  2728. experiencing.
  2729. * Bug Fix: JSON API: Sticky posts were not being sorted correctly in /posts
  2730. requests.
  2731. * Bug Fix: Stats: sync stats_options so server has roles array needed for
  2732. view_stats cap check.
  2733. * Bug Fix: Infinite Scroll: Display improvements.
  2734. * Bug Fix: Infinite Scroll: WordPress compatibility fixes.
  2735. * Bug Fix: Photon: Only rewrite iamge urls if the URL is compatible with
  2736. Photon.
  2737. * Bug Fix: Photon: Account for registered image sizes with one or more
  2738. dimesions set to zero.
  2739. * Bug Fix: Subscriptions: Make HTML markup more valid.
  2740. * Bug Fix: Subscriptions: Fixed notices displayed in debug mode.
  2741. * Bug Fix: Custom CSS: CSS warnings and errors should now work in environments
  2742. where JavaScript is concatenated or otherwise modified before being served.
  2743. * Bug Fix: Hovercards: WordPress compatibility fixes.
  2744. * Bug Fix: Improved image handling for the Sharing and Publicize modules.
  2745. * Bug Fix: Carousel: Display and Scrollbar fixes.
  2746. * Bug Fix: Tiled Galleries: Restrict images in tiled galleries from being set
  2747. larger than their containers.
  2748. * Bug Fix: Widgets: Gravatar Profile: CSS fixes.
  2749. * Bug Fix: Publicize: Strip HTML comments from the data we send to the third
  2750. party services.
  2751. * Bug Fix: Notifications: Dropped support for IE7 and below in the
  2752. notifications menu.
  2753. * Bug Fix: Custom CSS Editor: Allow custom themes to save CSS more easily.
  2754. * Bug Fix: Infinite Scroll: Waits until the DOM is ready before loading the
  2755. scrolling code.
  2756. * Bug Fix: Mobile Theme: If the user has disabled the custom header text
  2757. color, show the default black header text color.
  2758. * Bug Fix: Mobile Theme: Fix for the "View Full Site" link.
  2759. * Bug Fix: Mobile Theme: Use a filter to modify the output of wp_title().
  2760. * Bug Fix: Publicize: Twitter: Re-enable character count turning red when more
  2761. than 140 characters are typed.
  2762. = 2.1.2 =
  2763. Release Date: February 5, 2013
  2764. * Enhancement: Infinite Scroll: Introduce filters for Infinite Scroll.
  2765. * Enhancement: Shortcodes: TED shortcode.
  2766. * Bug Fix: Carousel: Make sure to use large image sizes.
  2767. * Bug Fix: Carousel: Clicking the back button in your browser after exiting a
  2768. carousel gallery brings you back to the gallery.
  2769. * Bug Fix: Carousel: Fix a scrollbar issue.
  2770. * Bug Fix: Comments: Move the get_avatar() function out of the base class.
  2771. * Bug Fix: Contact Form: Prevent the form from displaying i18n characters.
  2772. * Bug Fix: Contact Form: Remove the !important CSS rule.
  2773. * Bug Fix: Infinite Scroll: Main query arguments are not respected when using
  2774. default permalink.
  2775. * Bug Fix: JSON API: Trap 'wp_die' for new comments and image uploads.
  2776. * Bug Fix: JSON API: Use a better array key for the user_ID.
  2777. * Bug Fix: JSON API: Make the class instantiable only once, but multi-use.
  2778. * Bug Fix: JSON API: Fix lookup of pages by page slug.
  2779. * Bug Fix: JSON API: Updates for post likes.
  2780. * Bug Fix: Mobile Theme: Remove Android download link for BB10 and Playbook.
  2781. * Bug Fix: Open Graph: Stop using Loop functions to get post data for meta
  2782. tags.
  2783. * Bug Fix: Photon: Suppress and check for warnings when pasing_url and using
  2784. it.
  2785. * Bug Fix: Photon: Ensure full image size can be used.
  2786. * Bug Fix: Photon: Resolve Photon / YouTube embed conflict.
  2787. * Bug Fix: Photon: Fix dimension parsing from URLs.
  2788. * Bug Fix: Photon: Make sure that width/height atts are greater than zero.
  2789. * Bug Fix: Sharedaddy: Layout fixes for share buttons.
  2790. * Bug Fix: Sharedaddy: Always send Facebook a language locale.
  2791. * Bug Fix: Sharedaddy: Don't look up share counts for empty URLs.
  2792. * Bug Fix: Shortcodes: Ensure that images don't overflow their containers in
  2793. the slideshow shortcode.
  2794. * Bug Fix: Shortcodes: only enqueue jquery if archive supports Infinite Scroll
  2795. in the Audio Shortcode.
  2796. * Bug Fix: Tiled Galleries: Use a more specific class for gallery item size to
  2797. avoid conflicts.
  2798. * Bug Fix: Tiled Galleries: Fixing scrolling issue when tapping on a Tiled
  2799. Gallery on Android.
  2800. * Bug Fix: Widgets: Gravatar profile widget typo.
  2801. * Bug Fix: Widgets: Add (Jetpack) to widget titles.
  2802. * Bug Fix: Widgets: Twitter wasn't wrapping links in the t.co shortener.
  2803. * Bug Fix: Widgets: Facebook Likebox updates to handling the language locale.
  2804. * Bug Fix: Widgets: Top Posts: Fixed a WP_DEBUG notice.
  2805. * Bug Fix: Widgets: Gravatar Profile Widget: transient names must be less than
  2806. 45 characters long.
  2807. * Bug Fix: typo in delete_post_action function.
  2808. * Bug Fix: Load rendered LaTeX image on same protocol as its page.
  2809. = 2.1.1 =
  2810. Release Date: January 5, 2013
  2811. Release Post: http://wp.me/p1moTy-ng
  2812. * Bug Fix: Fix for an error appearing for blogs updating from Jetpack 1.9.2 or
  2813. earlier to 2.1.
  2814. = 2.1 =
  2815. Release Date: January 4, 2013
  2816. Release Post: http://wp.me/p1moTy-m3
  2817. * Enhancement: Tiled Galleries: Show off your photos with cool mosaic
  2818. galleries.
  2819. * Enhancement: Slideshow gallery type: Display any gallery as a slideshow.
  2820. * Enhancement: Custom CSS: Allow zoom property.
  2821. * Enhancement: Stats: Show WordPress.com subscribers in stats.
  2822. * Bug Fix: Fix errors shown after connecting Jetpack to WordPress.com.
  2823. * Bug Fix: Photon: Fix bug causing errors to be shown in some posts.
  2824. * Bug Fix: Photon: Convert all images in posts when Photon is active.
  2825. * Bug Fix: Infinite Scroll: Improved compatibility with the other modules.
  2826. * Bug Fix: Custom CSS: Updated editor to fix missing file errors.
  2827. * Bug Fix: Publicize: Don't show the Facebook profile option if this is a
  2828. Page-only account.
  2829. * Bug Fix: Photon: A fix for photos appearing shrunken if they didn't load
  2830. quickly enough.
  2831. * Bug Fix: Sharing: A compatibility fix for posts that only have partial
  2832. featured image data.
  2833. * Bug Fix: Publicize/Sharing: For sites without a static homepage, don't set
  2834. the OpenGraph url value to the first post permalink.
  2835. * Bug Fix: Mobile Theme: Better compatibility with the customizer on mobile
  2836. devices.
  2837. * Bug Fix: Sharing: Don't show sharing options on front page if that option is
  2838. turned off.
  2839. * Bug Fix: Contact Form: Fix PHP warning shown when adding a Contact Form in
  2840. WordPress 3.5.
  2841. * Bug Fix: Photon: Handle images with relative paths.
  2842. * Bug Fix: Contact Form: Fix compatibility with the Shortcode Embeds module.
  2843. = 2.0.4 =
  2844. Release Date: December 14, 2012
  2845. Release Post: http://wp.me/p1moTy-lT
  2846. * Bug Fix: Open Graph: Correct a bug that prevents Jetpack from being
  2847. activated if the SharePress plugin isn't installed.
  2848. = 2.0.3 =
  2849. Release Date: December 14, 2012
  2850. Release Post: http://wp.me/p1moTy-lJ
  2851. * Enhancement: Infinite Scroll: support
  2852. [VideoPress](https://wordpress.org/plugins/video/) plugin.
  2853. * Enhancement: Photon: Apply to all images retrieved from the Media Library.
  2854. * Enhancement: Photon: Retina image support.
  2855. * Enhancement: Custom CSS: Refined editor interface.
  2856. * Enhancement: Custom CSS: Support [Sass](http://sass-lang.com/) and
  2857. [LESS](http://lesscss.org/) with built-in preprocessors.
  2858. * Enhancement: Open Graph: Better checks for other plugins that may be loading
  2859. Open Graph tags to prevent Jetpack from doubling meta tag output.
  2860. * Bug Fix: Infinite Scroll: Respect relative image dimensions.
  2861. * Bug Fix: Photon: Detect custom-cropped images and use those with Photon,
  2862. rather than trying to use the original.
  2863. * Bug Fix: Custom CSS: Fix for bug preventing @import from working with
  2864. url()-style URLs.
  2865. = 2.0.2 =
  2866. Release Date: November 21, 2012
  2867. Release Post: http://wp.me/p1moTy-lu
  2868. * Bug Fix: Remove an erroneous PHP short open tag with the full tag to correct
  2869. fatal errors under certain PHP configurations.
  2870. = 2.0.1 =
  2871. Release Date: November 21, 2012
  2872. Release Post: http://wp.me/p1moTy-lc
  2873. * Enhancement: Photon: Support for the [Lazy
  2874. Load](https://wordpress.org/plugins/lazy-load/) plugin.
  2875. * Bug Fix: Photon: Fix warped images with un- or under-specified dimensions.
  2876. * Bug Fix: Photon: Fix warped images with pre-photonized URLs; don't try to
  2877. photonize them twice.
  2878. * Bug Fix: Infinite Scroll: Check a child theme's parent theme for infinite
  2879. scroll support.
  2880. * Bug Fix: Infinite Scroll: Correct a bug with archives that resulted in posts
  2881. appearing on archives that they didn't belong on.
  2882. * Bug Fix: Publicize: Send the correct shortlink to Twitter (et al.) if your
  2883. site uses a shortener other than wp.me.
  2884. * Bug Fix: Sharing: Improved theme compatibility for the Google+ button.
  2885. * Bug Fix: Notifications: Use locally-installed Javascript libraries if
  2886. available.
  2887. = 2.0 =
  2888. Release Date: November 8, 2012
  2889. Release Post: http://wp.me/p1moTy-jg
  2890. * Enhancement: Publicize: Connect your site to popular social networks and
  2891. automatically share new posts with your friends.
  2892. * Enhancement: Post By Email: Publish posts to your blog directly from your
  2893. personal email account.
  2894. * Enhancement: Photon: Images served through the global WordPress.com cloud.
  2895. * Enhancement: Infinite Scroll: Better/faster browsing by pulling the next set
  2896. of posts into view automatically when the reader approaches the bottom of the
  2897. page.
  2898. * Enhancement: Open Graph: Provides more detailed information about your posts
  2899. to social networks.
  2900. * Enhancement: JSON API: New parameters for creating and viewing posts.
  2901. * Enhancement: Improved compatibility for the upcoming WordPress 3.5.
  2902. * Bug Fix: Sharing: When you set your sharing buttons to use icon, text, or
  2903. icon + text mode, the Google+ button will display accordingly.
  2904. * Bug Fix: Gravatar Profile Widget: Allow basic HTML to be displayed.
  2905. * Bug Fix: Twitter Widget: Error handling fixes.
  2906. * Bug Fix: Sharing: Improved theme compatibility
  2907. * Bug Fix: JSON API: Fixed error when creating some posts in some versions of
  2908. PHP.
  2909. = 1.9.2 =
  2910. Release Date: October 29, 2012
  2911. * Bug Fix: Only sync options on upgrade once.
  2912. = 1.9.1 =
  2913. Release Date: October 29, 2012
  2914. Release Post: http://wp.me/p1moTy-iC
  2915. * Enhancement: Notifications feature is enabled for logged-out users when the
  2916. module is active & the toolbar is shown by another plugin.
  2917. * Bug Fix: Use proper CDN addresses to avoid SSL cert issues.
  2918. * Bug Fix: Prioritize syncing comments over deleting comments on
  2919. WordPress.com. Fixes comment notifications marked as spam appearing to be
  2920. trashed.
  2921. = 1.9 =
  2922. Release Date: October 26, 2012
  2923. Release Post: http://wp.me/p1moTy-hC
  2924. * Enhancement: Notifications: Display Notifications in the toolbar and support
  2925. reply/moderation of comment notifications.
  2926. * Enhancement: Mobile Push Notifications: Added support for mobile push
  2927. notifications of new comments for users that linked their accounts to
  2928. WordPress.com accounts.
  2929. * Enhancement: JSON API: Allows applications to send API requests via
  2930. WordPress.com (see [the docs](http://developer.wordpress.com/docs/api/) )
  2931. * Enhancement: Sync: Modules (that require the data) sync full Post/Comment to
  2932. ensure consistent data on WP.com (eg Stats)
  2933. * Enhancement: Sync: Improve syncing of site options to WP.com
  2934. * Enhancement: Sync: Sync attachment parents to WP.com
  2935. * Enhancement: Sync: Add signing of WP.com user ids for Jetpack Comments
  2936. * Enhancement: Sync: Mark and obfuscate private posts.
  2937. * Enhancement: Privacy: Default disable enhanced-distribution and json-api
  2938. modules if site appears to be private.
  2939. * Enhancement: Custom CSS: allow applying Custom CSS to mobile theme.
  2940. * Enhancement: Sharing: On HTTPS pageloads, load as much of the sharing embeds
  2941. as possible from HTTPS URLs.
  2942. * Enhancement: Contact Form: Overhaul of the contact form code to fix
  2943. incompatibilites with other plugins.
  2944. * Bug Fix: Only allow users with manage_options permission to enable/disable
  2945. modules
  2946. * Bug Fix: Custom CSS: allow '/' in media query units; e.g.
  2947. (-o-min-device-pixel-ratio: 3/2)
  2948. * Bug Fix: Custom CSS: leave comments alone in CSS when editing but minify on
  2949. the front end
  2950. * Bug Fix: Sharing: Keep "more" pane open so Google+ Button isn't obscured
  2951. * Bug Fix: Carousel: Make sure the original size is used, even when it is
  2952. exceedingly large.
  2953. * Bug Fix: Exclude iPad from Twitter on iPhone mobile browsing
  2954. * Bug Fix: Sync: On .org user role changes synchronize the change to .com
  2955. * Bug Fix: Contact Form: Fix a bug where some web hosts would reject mail from
  2956. the contact form due to email address spoofing.
  2957. = 1.8.3 =
  2958. Release Date: October 23, 2012
  2959. * Bug Fix: Subscriptions: Fix a bug where subscriptions were not being sent
  2960. from the blog.
  2961. * Bug Fix: Twitter: Fix a bug where the Twitter username was being saved as
  2962. blank.
  2963. * Bug Fix: Fix a bug where Contact Form notification emails were not being
  2964. sent.
  2965. = 1.8.2 =
  2966. Release Date: October 4, 2012
  2967. Release Post: http://wp.me/p1moTy-gI
  2968. * Bug Fix: Subscriptions: Fix a bug where subscriptions were not sent for
  2969. posts and comments written by some authors.
  2970. * Bug Fix: Widgets: Fix CSS that was uglifying some themes (like P2).
  2971. * Bug Fix: Widgets: Improve Top Posts and Pages styling.
  2972. * Bug Fix: Custom CSS: Make the default "Welcome" message translatable.
  2973. * Bug Fix: Fix Lithuanian translation.
  2974. = 1.8.1 =
  2975. Release Date: September 28, 2012
  2976. Release Post: http://wp.me/p1moTy-gx
  2977. * Bug Fix: Stats: Fixed a bug preventing some users from viewing stats.
  2978. * Bug Fix: Mobile Theme: Fixed some disabled toolbar buttons.
  2979. * Bug Fix: Top Posts widget: Fixed a bug preventing the usage of the Top Posts
  2980. widget.
  2981. * Bug Fix: Mobile Theme: Fixed a bug that broke some sites when the
  2982. Subscriptions module was not enabled and the Mobile Theme module was enabled.
  2983. * Bug Fix: Mobile Theme: Made mobile app promos in the Mobile Theme footer
  2984. opt-in.
  2985. * Bug Fix: Twitter Widget: A fix to prevent malware warnings.
  2986. * Bug Fix: Mobile Theme: Fixed a bug that caused errors for some users with
  2987. custom header images.
  2988. = 1.8 =
  2989. Release Date: September 27, 2012
  2990. Release Post: http://wp.me/p1moTy-fV
  2991. * Enhancement: Mobile Theme: Automatically serve a slimmed down version of
  2992. your site to users on mobile devices.
  2993. * Enhancement: Multiuser: Allow multiple users to link their accounts to
  2994. WordPress.com accounts.
  2995. * Enhancement: Custom CSS: Added support for object-fit, object-position,
  2996. transition, and filter properties.
  2997. * Enhancement: Twitter Widget: Added Follow button
  2998. * Enhancement: Widgets: Added Top Posts and Pages widget
  2999. * Enhancement: Mobile Push Notifications: Added support for mobile push
  3000. notifications on new comments.
  3001. * Enhancement: VideoPress: Shortcodes now support the HD option, for default
  3002. HD playback.
  3003. * Bug Fix: Twitter Widget: Fixed tweet permalinks in the Twitter widget
  3004. * Bug Fix: Custom CSS: @import rules and external images are no longer
  3005. stripped out of custom CSS
  3006. * Bug Fix: Custom CSS: Fixed warnings and notices displayed in debug mode
  3007. * Bug Fix: Sharing: Fixed double-encoding of image URLs
  3008. * Bug Fix: Sharing: Fix Google +1 button HTML validation issues (again :))
  3009. * Bug Fix: Gravatar Profile Widget: Reduce size of header margins
  3010. = 1.7 =
  3011. Release Date: August 23, 2012
  3012. Release Post: http://wp.me/p1moTy-eq
  3013. * Enhancement: CSS Editor: Customize your site's design without modifying your
  3014. theme.
  3015. * Enhancement: Comments: Submit the comment within the iframe. No more full
  3016. page load to jetpack.wordpress.com.
  3017. * Enhancement: Sharing: Share counts for Twitter, Facebook, LinkedIn
  3018. * Enhancement: Sharing: Improve styling
  3019. * Enhancement: Sharing: Add support for ReCaptcha
  3020. * Enhancement: Sharing: Better extensability through filters
  3021. * Enhancement: Widgets: Twitter: Attempt to reduce errors by storing a long
  3022. lasting copy of the data. Thanks, kareldonk :)
  3023. * Regression Fix: Sharing: Properly store and display the sharing label
  3024. option's default value.
  3025. * Bug Fix: Contact Form: remove worse-than-useless nonce.
  3026. * Bug Fix: Subscriptions: remove worse-than-useless nonce.
  3027. * Bug Fix: Sharing: Don't show sharing buttons twice on attachment pages.
  3028. * Bug Fix: Sharing: Increase width of Spanish Like button for Facebook.
  3029. * Bug Fix: Sharing: Use the correct URL to the throbber.
  3030. * Bug Fix: Stats: Fix notice about undefined variable $alt
  3031. * Bug Fix: Subscriptions: Make Subscriptions module obey the settings of the
  3032. Settngs -> Discussion checkboxes for Follow Blog/Comments
  3033. * Bug Fix: Shortcodes: VideoPress: Compatibility with the latest version of
  3034. VideoPress
  3035. * Bug Fix: Shortcodes: Audio: Include JS File for HTML5 audio player
  3036. * Bug Fix: Hovercards: Improve cache handling.
  3037. * Bug Fix: Widgets: Gravatar Profle: Correctly display service icons in edge
  3038. cases.
  3039. * Bug Fix: Widgets: Gravatar Profle: Prevent ugly "flash" of too-large image
  3040. when page first loads on some sites
  3041. * Bug Fix: Carousel: CSS Compatibility with more themes.
  3042. = 1.6.1 =
  3043. Release Date: August 4, 2012
  3044. * Bug Fix: Prevent Fatal error under certain conditions in sharing module
  3045. * Bug Fix: Add cachebuster to sharing.css
  3046. * Bug Fix: Disable via for Twitter until more robust code is in place
  3047. = 1.6 =
  3048. Release Date: August 2, 2012
  3049. Release Post: http://wp.me/p1moTy-e0
  3050. * Enhancement: Carousel: Better image resolution selection based on available
  3051. width/height.
  3052. * Enhancement: Carousel: Load image caption, metadata, comments, et alii when
  3053. a slide is clicked to switch to instead of waiting.
  3054. * Enhancement: Carousel: Added a "Comment" button and handling to scroll to
  3055. and focus on comment textarea.
  3056. * Enhancement: Widgets: Facebook Likebox now supports a height parameter and a
  3057. better width parameter.
  3058. * Enhancement: Widgets: Better feedback when widgets are not set up properly.
  3059. * Enhancement: Shortcodes: Google Maps shortcode now supports percentages in
  3060. the width.
  3061. * Enhancement: Shortcodes: Update Polldaddy shortcode for more efficient
  3062. Javascript libraries.
  3063. * Enhancement: Shortcodes: Youtube shortcode now has playlist support.
  3064. * Enhancement: Add Gravatar Profile widget.
  3065. * Enhancement: Update Sharedaddy to latest version, including Pinterest
  3066. support.
  3067. * Enhancement: Retinize Jetpack and much of WordPress.
  3068. * Bug Fix: Shortcodes: Fix Audio shortcode color parameter and rename encoding
  3069. function.
  3070. * Bug Fix: Shortcodes: Don't output HTML 5 version of the Audio shortcode
  3071. because of a bug with Google Reader.
  3072. * Bug Fix: Jetpack Comments: Don't overlead the addComments object if it
  3073. doesn't exist. Fixes spacing issue with comment form.
  3074. * Bug Fix: Contact Form: If send_to_editor() exists, use it. Fixes an IE9 text
  3075. area issue.
  3076. = 1.5 =
  3077. Release Date: July 31, 2012
  3078. Release Post: http://wp.me/p1moTy-d7
  3079. * Enhancement: Add Gallery Carousel feature
  3080. * Note: the Carousel module bundles http://fgnass.github.com/spin.js/ (MIT
  3081. license)
  3082. = 1.4.2 =
  3083. Release Date: June 20, 2012
  3084. * Bug Fix: Jetpack Comments: Add alternative Javascript event listener for
  3085. Internet 8 users.
  3086. * Enhancement: Remove more PHP 4 backwards-compatible code (WordPress
  3087. andJetpack only support PHP 5).
  3088. * Enhancement: Remove more WordPress 3.1 and under backwards-compatible code.
  3089. = 1.4.1 =
  3090. Release Date: June 15, 2012
  3091. * Bug Fix: Jetpack Comments / Subscriptions: Add checkboxes and logic control
  3092. for the Subscription checkboxes.
  3093. = 1.4 =
  3094. Release Date: June 14, 2012
  3095. Release Post: http://wp.me/p1moTy-cz
  3096. * Enhancement: Add Jetpack Comments feature.
  3097. * Bug Fix: Sharing: Make the sharing_label translatable.
  3098. * Bug Fix: Sharing: Fixed the file type on the LinkedIn graphic.
  3099. * Bug Fix: Sharing: Fixes for the Faceboox Like button language locales.
  3100. * Bug Fix: Sharing: Updates for the "more" button when used with touch screen
  3101. devices.
  3102. * Bug Fix: Sharing: Properly scope the More button so that multiple More
  3103. buttons on a page behave properly.
  3104. * Bug Fix: Shortcodes: Update the YouTube and Audio shortcodes to better
  3105. handle spaces in the URLs.
  3106. * Bug Fix: Shortcodes: Make the YouTube shortcode respect embed settings in
  3107. Settings -> Media when appropriate.
  3108. * Bug Fix: Shortcodes: Removed the Slide.com shortcode; Slide.com no longer
  3109. exists.
  3110. * Bug Fix: Shortcodes: Match both http and https links in the [googlemaps]
  3111. shortcode.
  3112. * Bug Fix: After the Deadline: Code clean up and removal of inconsistencies.
  3113. = 1.3.4 =
  3114. Release Date: May 24, 2012
  3115. * Bug Fix: Revert changes to the top level menu that are causing problems.
  3116. = 1.3.3 =
  3117. Release Date: May 22, 2012
  3118. * Bug Fix: Fix notices caused by last update
  3119. = 1.3.2 =
  3120. Release Date: May 22, 2012
  3121. * Bug Fix: Fix Jetpack menu so that Akismet and VaultPress submenus show up.
  3122. = 1.3.1 =
  3123. Release Date: May 22, 2012
  3124. * Enhancement: Add a new widget, the Facebook Likebox
  3125. * Bug Fix: Sharing: Sharing buttons can now be used on custom post types.
  3126. * Bug Fix: Contact Forms: Make Contact Forms widget shortcode less aggressive
  3127. about the shortcodes it converts.
  3128. * Bug Fix: Ensure contact forms are parsed correctly in text widgets.
  3129. * Bug Fix: Connection notices now only appear on the Dashboard and plugin
  3130. page.
  3131. * Bug Fix: Connection notices are now dismissable if Jetpack is not network
  3132. activated.
  3133. * Bug Fix: Subscriptions: Fix an issue that was causing errors with new
  3134. BuddyPress forum posts.
  3135. = 1.3 =
  3136. Release Date: April 25, 2012
  3137. Release Post: http://wp.me/p1moTy-bq
  3138. * Enhancement: Add Contact Forms feature. Formerly Grunion Contact Forms.
  3139. * Bug Fix: Tweak YouTube autoembedder to catch more YouTube URLs.
  3140. * Bug Fix: Correctly load the Sharing CSS files.
  3141. = 1.2.4 =
  3142. Release Date: April 6, 2012
  3143. * Bug Fix: Fix rare bug with static front pages
  3144. = 1.2.3 =
  3145. Release Date: April 5, 2012
  3146. Release Post: http://wp.me/p1moTy-b4
  3147. * Enhancement: Twitter Widget: Expand t.co URLs
  3148. * Bug Fix: Various PHP Notices.
  3149. * Bug Fix: WordPress Deprecated `add_contextual_help()` notices
  3150. * Bug Fix: Don't display unimportant DB errors when processing Jetpack nonces
  3151. * Bug Fix: Correctly sync data during certain MultiSite cases.
  3152. * Bug Fix: Stats: Allow sparkline img to load even when there is a DB upgrade.
  3153. * Bug Fix: Stats: Replace "loading title" with post title regardless of type
  3154. and status.
  3155. * Bug Fix: Stats: Avoid edge case infinite redirect for `show_on_front=page`
  3156. sites where the `home_url()` conatins uppercase letters.
  3157. * Bug Fix: Subscriptions: Don't send subscriptions if the feature is turned
  3158. off in Jetpack.
  3159. * Bug Fix: Subscriptions: Fix pagination of subscribers.
  3160. * Bug Fix: Subscriptions: Sync data about categories/tags as well to improve
  3161. subscription emails.
  3162. * Bug Fix: Subscriptions: Better styling for the subscription success message.
  3163. * Bug Fix: Shortcodes: Support for multiple Google Maps in one post. Support
  3164. for all Google Maps URLs.
  3165. * Bug Fix: Shortcodes: Improved support for youtu.be URLs
  3166. * Bug Fix: Shortcodes: Improved Vimeo embeds.
  3167. * Bug Fix: Sharing: Switch to the 20px version of Google's +1 button for
  3168. consistency.
  3169. * Bug Fix: Sharing: Fix Google +1 button HTML validation issues.
  3170. * Bug Fix: Sharing: Disable sharing buttons during preview.
  3171. * Bug Fix: Spelling and Grammar: Properly handle proofreading settings.
  3172. * Bug Fix: Spelling and Grammar: Don't prevent post save when proofreading
  3173. service is unavailable.
  3174. = 1.2.2 =
  3175. Release Date: December 6, 2011
  3176. Release Post: http://wp.me/p1moTy-ax
  3177. * Bug Fix: Ensure expected modules get reactivated correctly during upgrade.
  3178. * Bug Fix: Don't send subscription request during spam comment submission.
  3179. * Bug Fix: Increased theme compatibility for subscriptions.
  3180. * Bug Fix: Remove reference to unused background image.
  3181. = 1.2.1 =
  3182. Release Date: November 18, 2011
  3183. Release Post: http://wp.me/p1moTy-9H
  3184. * Bug Fix: Ensure Site Stats menu item is accessible.
  3185. * Bug Fix: Fixed errors displayed during some upgrades.
  3186. * Bug Fix: Fix inaccurate new modules "bubble" in menu for some upgrades.
  3187. * Bug Fix: Fix VaultPress detection.
  3188. * Bug Fix: Fix link to http://jetpack.com/faq/
  3189. = 1.2 =
  3190. Release Date: November 17, 2011
  3191. Release Post: http://wp.me/p1moTy-8x
  3192. * Enhancement: Add Subscriptions: Subscribe to site's posts and posts'
  3193. comments.
  3194. * Enhancement: Add Google Maps shortcode.
  3195. * Enhancement: Add Image Widget.
  3196. * Enhancement: Add RSS Links Widget.
  3197. * Enhancement: Stats: More responsive stats dashboard.
  3198. * Enhancement: Shortcodes: Google Maps, VideoPress
  3199. * Enhancement: Sharing: Google+, LinkedIn
  3200. * Enhancement: Enhanced Distribution: Added Jetpack blogs to
  3201. https://en.wordpress.com/firehose/
  3202. * Bug Fix: Spelling and Grammar: WordPress 3.3 compatibility.
  3203. * Bug Fix: Translatable module names/descriptinos.
  3204. * Bug Fix: Correctly detect host's ability to make outgoing HTTPS requests.
  3205. = 1.1.3 =
  3206. Release Date: July 19, 2011
  3207. Release Post: http://wp.me/p1moTy-90
  3208. * Bug Fix: Increase compatibility with WordPress 3.2's new
  3209. `wp_remote_request()` API.
  3210. * Bug Fix: Increase compatibility with Admin Bar.
  3211. * Bug Fix: Stats: Improved performance when creating new posts.
  3212. * Bug Fix: Twitter Widget: Fix PHP Notice.
  3213. * Bug Fix: Sharedaddy: Fix PHP Warning.
  3214. * Enhancement: AtD: Add spellcheck button to Distraction Free Writing screen.
  3215. * Translations: Added: Bosnian, Danish, German, Finnish, Galician, Croatian,
  3216. Indonesian, Macedonian, Norwegian (Bokmål), Russian, Slovak, Serbian, Swedish
  3217. * Translations: Updated: Spanish, French, Italian, Japanese, Brazilian
  3218. Portuguese, Portuguese
  3219. = 1.1.2 =
  3220. Release Date: July 6, 2011
  3221. Release Post: http://wp.me/p1moTy-8B
  3222. * Bug Fix: Note, store, and keep fresh the time difference between the Jetpack
  3223. site's host and the Jetpack servers at WordPress.com. Should fix all
  3224. "timestamp is too old" errors.
  3225. * Bug Fix: Improve experience on hosts capable of making outgoing HTTPS
  3226. requests but incapable of verifying SSL certificates. Fixes some
  3227. "register_http_request_failed", "error setting certificate verify locations",
  3228. and "error:14090086:lib(20):func(144):reason(134)" errors.
  3229. * Bug Fix: Better fallback when WordPress.com is experiencing problems.
  3230. * Bug Fix: It's Jetpack, not JetPack :)
  3231. * Bug Fix: Remove PHP Warnings/Notices.
  3232. * Bug Fix: AtD: JS based XSS bug. Props markjaquith.
  3233. * Bug Fix: AtD: Prevent stored configuration options from becoming corrupted.
  3234. * Bug Fix: Stats: Prevent missing old stats for some blogs.
  3235. * Bug Fix: Twitter Widget: Fix formatting of dates/times in PHP4.
  3236. * Bug Fix: Twitter Widget: Cache the response from Twitter to prevent "Twitter
  3237. did not respond. Please wait a few minutes and refresh this page." errors.
  3238. * Enhancement: Slightly improved RTL experience. Jetpack 1.2 should include a
  3239. much better fix.
  3240. * Enhancement: Sharedaddy: Improve localization for Facebook Like button.
  3241. * Enhancement: Gravatar Hovercards: Improved experience for Windows browsers.
  3242. = 1.1.1 =
  3243. Release Date: March 19, 2011
  3244. Release Post: http://wp.me/p1moTy-8i
  3245. * Bug Fix: Improve experience on hosts capable of making outgoing HTTPS
  3246. requests but incapable of verifying SSL certificates. Fixes most "Your Jetpack
  3247. has a glitch. Connecting this site with WordPress.com is not possible. This
  3248. usually means your site is not publicly accessible (localhost)." errors.
  3249. * Bug Fix: Sharedaddy: Fatal error under PHP4. Disable on PHP4 hosts.
  3250. * Bug Fix: Stats: Fatal error under PHP4. Rewrite to be PHP4 compatible.
  3251. * Bug Fix: Stats: Fatal error on some sites modifying/removing core WordPress
  3252. user roles. Add sanity check.
  3253. * Bug Fix: Stats: Replace debug output with error message in dashboard widget.
  3254. * Bug Fix: Stats: Rework hook priorities so that stats views are always
  3255. counted even if a plugin (such as Paginated Comments) bails early on
  3256. template_redirect.
  3257. * Bug Fix: Identify the module that connot be activated to fatal error during
  3258. single module activation.
  3259. * Bug Fix: `glob()` is not always available. Use `opendir()`, `readdir()`,
  3260. `closedir()`.
  3261. * Bug Fix: Send permalink options to Stats Server for improved per post
  3262. permalink calculation.
  3263. * Bug Fix: Do not hide Screen Options and Help links during Jetpack call to
  3264. connect.
  3265. * Bug Fix: Improve readablitiy of text.
  3266. * Bug Fix: AtD: Correctly store/display options.
  3267. * Enhancement: Output more informative error messages.
  3268. * Enhancement: Improve CSS styling.
  3269. * Enhancement: Stats: Query all post types and statuses when getting posts for
  3270. stats reports.
  3271. * Enhancement: Improve performance of LaTeX URLs be using cookieless CDN.
  3272. = 1.1 =
  3273. Release Date: March 9, 2011
  3274. Release post: http://wp.me/p1moTy-7R
  3275. * Initial release