Skip to content

Commit fd747de

Browse files
committed
Bump version to 1.116.0.
1 parent dfcce41 commit fd747de

File tree

7 files changed

+37
-18
lines changed

7 files changed

+37
-18
lines changed

assets/js/googlesitekit/datastore/site/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ export const selectors = {
826826
/**
827827
* Gets product post type.
828828
*
829-
* @since n.e.x.t
829+
* @since 1.116.0
830830
*
831831
* @return {string|null} The product post type or null if not present.
832832
*/

assets/js/modules/analytics/components/dashboard/DashboardAllTrafficWidgetGA4/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function createZeroDataRow( date ) {
5353
/**
5454
* Gets HTML string for a tooltip help link.
5555
*
56-
* @since n.e.x.t
56+
* @since 1.116.0
5757
*
5858
* @param {string} url The URL to link to.
5959
* @param {string} label The label for the link.

assets/js/util/convert-time.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const convertSecondsToArray = ( seconds ) => {
5050
*
5151
* For example, passing "2014-10-02T15:01:23Z" returns 1412262083000.
5252
*
53-
* @since n.e.x.t
53+
* @since 1.116.0
5454
*
5555
* @param {string} dateStringValue The date time string.
5656
* @return {number} UNIX timestamp in milliseconds.

google-site-kit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Plugin Name: Site Kit by Google
1212
* Plugin URI: https://sitekit.withgoogle.com
1313
* Description: Site Kit is a one-stop solution for WordPress users to use everything Google has to offer to make them successful on the web.
14-
* Version: 1.115.0
14+
* Version: 1.116.0
1515
* Requires at least: 5.2
1616
* Requires PHP: 5.6
1717
* Author: Google
@@ -26,7 +26,7 @@
2626
}
2727

2828
// Define most essential constants.
29-
define( 'GOOGLESITEKIT_VERSION', '1.115.0' );
29+
define( 'GOOGLESITEKIT_VERSION', '1.116.0' );
3030
define( 'GOOGLESITEKIT_PLUGIN_MAIN_FILE', __FILE__ );
3131
define( 'GOOGLESITEKIT_PHP_MINIMUM', '5.6.0' );
3232
define( 'GOOGLESITEKIT_WP_MINIMUM', '5.2.0' );

includes/Core/Assets/Assets.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,15 +1067,15 @@ private function get_storage_prefix() {
10671067
/**
10681068
* Gets the product post type.
10691069
*
1070-
* @since n.e.x.t
1070+
* @since 1.116.0
10711071
*
10721072
* @return string|null The product post type name or null if not present on the website.
10731073
*/
10741074
protected function get_product_post_type() {
10751075
/**
10761076
* Filters the product post type.
10771077
*
1078-
* @since n.e.x.t
1078+
* @since 1.116.0
10791079
*
10801080
* @param string $product_post_type The product post type name.
10811081
*/

includes/Modules/Analytics_4/Synchronize_Property.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* The base class for Synchronizing the Analytics 4 property.
2020
*
21-
* @since n.e.x.t
21+
* @since 1.116.0
2222
* @access private
2323
* @ignore
2424
*/
@@ -29,23 +29,23 @@ class Synchronize_Property {
2929
/**
3030
* Analytics_4 instance.
3131
*
32-
* @since n.e.x.t
32+
* @since 1.116.0
3333
* @var Analytics_4
3434
*/
3535
protected $analytics_4;
3636

3737
/**
3838
* User_Options instance.
3939
*
40-
* @since n.e.x.t
40+
* @since 1.116.0
4141
* @var User_Options
4242
*/
4343
protected $user_options;
4444

4545
/**
4646
* Constructor.
4747
*
48-
* @since n.e.x.t
48+
* @since 1.116.0
4949
*
5050
* @param Analytics_4 $analytics_4 Analytics 4 instance.
5151
* @param User_Options $user_options User_Options instance.
@@ -58,7 +58,7 @@ public function __construct( Analytics_4 $analytics_4, User_Options $user_option
5858
/**
5959
* Registers functionality through WordPress hooks.
6060
*
61-
* @since n.e.x.t
61+
* @since 1.116.0
6262
*/
6363
public function register() {
6464

@@ -73,7 +73,7 @@ function() {
7373
/**
7474
* Cron callback for synchronizing the property.
7575
*
76-
* @since n.e.x.t
76+
* @since 1.116.0
7777
*/
7878
protected function synchronize_property_data() {
7979
$owner_id = $this->analytics_4->get_owner_id();
@@ -91,7 +91,7 @@ protected function synchronize_property_data() {
9191
/**
9292
* Schedules single cron which will synchronize the property data.
9393
*
94-
* @since n.e.x.t
94+
* @since 1.116.0
9595
*/
9696
public function maybe_schedule_synchronize_property() {
9797
$settings = $this->analytics_4->get_settings()->get();
@@ -108,7 +108,7 @@ public function maybe_schedule_synchronize_property() {
108108
/**
109109
* Retrieve the Analytics 4 property.
110110
*
111-
* @since n.e.x.t
111+
* @since 1.116.0
112112
*
113113
* @return GoogleAnalyticsAdminV1betaProperty|null $property Analytics 4 property object, or null if property is not found.
114114
*/
@@ -128,7 +128,7 @@ protected function retrieve_property() {
128128
/**
129129
* Synchronize the property create time data.
130130
*
131-
* @since n.e.x.t
131+
* @since 1.116.0
132132
*
133133
* @param GoogleAnalyticsAdminV1betaProperty|null $property Analytics 4 property object, or null if property is not found.
134134
*/
@@ -149,7 +149,7 @@ protected function synchronize_property_create_time( $property ) {
149149
/**
150150
* Convert to Unix timestamp and then to milliseconds.
151151
*
152-
* @since n.e.x.t
152+
* @since 1.116.0
153153
*
154154
* @param string $date_time Date in date-time format.
155155
*/

readme.txt

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: google
44
Requires at least: 5.2
55
Tested up to: 6.4
66
Requires PHP: 5.6
7-
Stable tag: 1.115.0
7+
Stable tag: 1.116.0
88
License: Apache License 2.0
99
License URI: https://www.apache.org/licenses/LICENSE-2.0
1010
Tags: google, search-console, analytics, adsense, pagespeed-insights, tag-manager, site-kit
@@ -109,6 +109,25 @@ Please create a new topic on our [WordPress.org support forum](https://wordpress
109109

110110
== Changelog ==
111111

112+
= 1.116.0 =
113+
114+
**Enhanced**
115+
116+
* Show a loading state in the navigation bar to reduce layout shifts. See [#7916](https://github.com/google/site-kit-wp/issues/7916).
117+
* Remove feature tours for old features. See [#7886](https://github.com/google/site-kit-wp/issues/7886).
118+
* Improve the "Gathering data" notifications to show the correct time based on the connected modules. See [#7876](https://github.com/google/site-kit-wp/issues/7876).
119+
* Update Analytics to avoid frequently requesting connected property on the dashboard. See [#7734](https://github.com/google/site-kit-wp/issues/7734).
120+
* Update the "Most popular products by pageviews" Key Metric tile to utilize a custom dimension in Analytics. See [#7611](https://github.com/google/site-kit-wp/issues/7611).
121+
* Improve styling of icons associated with links. See [#7542](https://github.com/google/site-kit-wp/issues/7542).
122+
* Remove the Ad Blocking Recovery setup graphic on mobile viewports. See [#7299](https://github.com/google/site-kit-wp/issues/7299).
123+
* Display a spinner button rather than a progress bar to prevent a "flicker" on the AdSense, Analytics and Tag Manager setup screens. See [#6584](https://github.com/google/site-kit-wp/issues/6584).
124+
125+
**Fixed**
126+
127+
* Fix bug that caused the Dashboard Sharing settings to crash on a new site when viewing the dashboard for a specific page/post. See [#7979](https://github.com/google/site-kit-wp/issues/7979).
128+
* Fix whitespace issue in Analytics and Tag Manager settings. See [#7968](https://github.com/google/site-kit-wp/issues/7968).
129+
* Fix bug that caused console warnings to appear and requests to fail in certain module recovery scenarios. See [#7891](https://github.com/google/site-kit-wp/issues/7891).
130+
112131
= 1.115.0 =
113132

114133
**Enhanced**

0 commit comments

Comments
 (0)