Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Release Sep 25 #2662

Merged
merged 15 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [2.7.0-alpha.4](https://github.com/Automattic/newspack-plugin/compare/v2.7.0-alpha.3...v2.7.0-alpha.4) (2023-09-22)


### Bug Fixes

* remove Stripe migration scripts ([#2657](https://github.com/Automattic/newspack-plugin/issues/2657)) ([13ad632](https://github.com/Automattic/newspack-plugin/commit/13ad63274c5d4a80a23f25306b5e4ce9c35f3141))

## [2.6.4](https://github.com/Automattic/newspack-plugin/compare/v2.6.3...v2.6.4) (2023-09-22)


Expand Down
24 changes: 17 additions & 7 deletions includes/class-plugin-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class Plugin_Manager {
* @var array
*/
public static $required_plugins = [
'akismet',
'jetpack',
'pwa',
'google-site-kit',
Expand Down Expand Up @@ -252,12 +253,12 @@ public static function get_managed_plugins() {
'WPCore' => true,
'EditPath' => 'options-discussion.php',
],
'wp-gdpr-cookie-notice' => [
'Name' => esc_html__( 'WP GDPR Cookie Notice', 'newspack' ),
'Description' => esc_html__( 'Simple performant cookie consent notice that supports AMP, granular cookie control and live preview customization.', 'newspack' ),
'Author' => esc_html__( 'Felix Arntz', 'newspack' ),
'AuthorURI' => esc_url( 'https://felix-arntz.me/' ),
'PluginURI' => esc_url( 'https://wordpress.org/plugins/wp-gdpr-cookie-notice/' ),
'complianz-gdpr' => [
'Name' => esc_html__( 'Complianz - GDPR/CCPA Cookie Consent', 'newspack' ),
'Description' => esc_html__( 'Complianz is a GDPR/CCPA Cookie Consent plugin that supports GDPR, ePrivacy, DSGVO, TTDSG, LGPD, POPIA, APA, RGPD, CCPA/CPRA and PIPEDA with a conditional Cookie Notice and customized Cookie Policy based on the results of the built-in Cookie Scan.', 'newspack' ),
'Author' => esc_html__( 'Really Simple Plugins', 'newspack' ),
'AuthorURI' => esc_url( 'https://www.complianz.io/' ),
'PluginURI' => esc_url( 'https://wordpress.org/plugins/complianz-gdpr/' ),
'Download' => 'wporg',
],
'simple-local-avatars' => [
Expand Down Expand Up @@ -292,6 +293,15 @@ public static function get_managed_plugins() {
'PluginURI' => esc_url( 'https://wordpress.org/plugins/ad-refresh-control/' ),
'Download' => 'wporg',
],
'ads-txt' => [
'Name' => esc_html__( 'Ads.txt Manager', 'newspack' ),
'Description' => esc_html__( 'Create, manage, and validate your ads.txt and app-ads.txt from within WordPress, just like any other content asset.', 'newspack' ),
'Author' => esc_html__( '10up', 'newspack' ),
'PluginURI' => esc_url( 'https://wordpress.org/plugins/ads-txt/' ),
'AuthorURI' => esc_url( 'https://10up.com/' ),
'Download' => 'wporg',
'EditPath' => 'options-general.php?page=adstxt-settings',
],
'publisher-media-kit' => [
'Name' => esc_html__( 'Publisher Media Kit', 'newspack' ),
'Description' => esc_html__( 'Quick and easy option for small to medium sized publishers to digitize their media kit.', 'newspack' ),
Expand Down Expand Up @@ -380,7 +390,6 @@ private static function get_managed_plugin_status( $plugin_slug ) {
*/
private static function get_supported_plugins_slugs() {
return [
'amp',
'gutenberg',
'classic-widgets',
'republication-tracker-tool',
Expand All @@ -391,6 +400,7 @@ private static function get_supported_plugins_slugs() {
'gravityformsstripe',
'perfmatters',
'onesignal-free-web-push-notifications',
'super-cool-ad-inserter-plugin',
'web-stories',
'ads-txt',
'woocommerce-memberships',
Expand Down
4 changes: 2 additions & 2 deletions newspack.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Newspack
* Description: An advanced open-source publishing and revenue-generating platform for news organizations.
* Version: 2.6.4
* Version: 2.7.0-alpha.4
* Author: Automattic
* Author URI: https://newspack.com/
* License: GPL2
Expand All @@ -14,7 +14,7 @@

defined( 'ABSPATH' ) || exit;

define( 'NEWSPACK_PLUGIN_VERSION', '2.6.4' );
define( 'NEWSPACK_PLUGIN_VERSION', '2.7.0-alpha.4' );

// Load language files.
load_plugin_textdomain( 'newspack-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "newspack",
"version": "2.6.4",
"version": "2.7.0-alpha.4",
"description": "The Newspack plugin. https://newspack.com",
"bugs": {
"url": "https://github.com/Automattic/newspack-plugin/issues"
Expand Down