Skip to content

Commit 3a678be

Browse files
committed
Bump version to 1.130.0.
1 parent 27c77c3 commit 3a678be

File tree

21 files changed

+103
-55
lines changed

21 files changed

+103
-55
lines changed

assets/js/googlesitekit/data/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import { createReducer } from './create-reducer';
5454
* access parts of the registry.
5555
*
5656
* @since 1.3.0 Data registry introduced.
57-
* @since n.e.x.t Deprecated for general use in favor of named exports from `googlesitekit-data` package.
57+
* @since 1.130.0 Deprecated for general use in favor of named exports from `googlesitekit-data` package.
5858
* @deprecated
5959
*/
6060
const Data = createRegistry( {}, global.wp?.data );

assets/js/googlesitekit/datastore/user/date-range.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export const selectors = {
205205
* Returns the current reference date, typically today.
206206
*
207207
* @since 1.22.0
208-
* @since n.e.x.t Added options to allow getting the reference date as a Date instance.
208+
* @since 1.130.0 Added options to allow getting the reference date as a Date instance.
209209
*
210210
* @param {Object} state The current data store's state.
211211
* @param {Object} [options] Options parameter. Default is: {}.

assets/js/modules/analytics-4/components/audience-segmentation/dashboard/InfoNoticeWidget/constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ import { __ } from '@wordpress/i18n';
2424
/**
2525
* Slug for audience segmentation info notice.
2626
*
27-
* @since n.e.x.t
27+
* @since 1.130.0
2828
* @private
2929
*/
3030
export const AUDIENCE_INFO_NOTICE_SLUG = 'audience-segmentation-info-notice';
3131

3232
/**
3333
* List of info notices for audiences.
3434
*
35-
* @since n.e.x.t
35+
* @since 1.130.0
3636
* @private
3737
*/
3838
export const AUDIENCE_INFO_NOTICES = [

assets/js/modules/analytics-4/datastore/pivot-report.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const baseSelectors = {
7777
/**
7878
* Gets an Analytics pivot report for the given options.
7979
*
80-
* @since n.e.x.t
80+
* @since 1.130.0
8181
*
8282
* @param {Object} state Data store's state.
8383
* @param {Object} options Options for generating the report.

assets/js/modules/analytics-4/datastore/properties.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ const baseActions = {
596596
* Sets if GA4 has mismatched Google Tag ID.
597597
*
598598
* @since 1.96.0
599-
* @since n.e.x.t Updated to send value to the endpoint.
599+
* @since 1.130.0 Updated to send value to the endpoint.
600600
*
601601
* @param {boolean} hasMismatchedTag If GA4 has mismatched Google Tag.
602602
*/
@@ -609,7 +609,7 @@ const baseActions = {
609609
/**
610610
* Sets if GA4 has mismatched Google Tag ID.
611611
*
612-
* @since n.e.x.t
612+
* @since 1.130.0
613613
*
614614
* @param {boolean} hasMismatchedTag If GA4 has mismatched Google Tag.
615615
* @return {Object} Redux-style action.

assets/js/modules/analytics-4/utils/data-mock.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ export function provideAnalytics4MockReport( registry, options ) {
719719
/**
720720
* Creates all combinations of pivot dimension values that we expect in a pivot report response.
721721
*
722-
* @since n.e.x.t
722+
* @since 1.130.0
723723
*
724724
* @param {Array.<string>} dimensionValues An array of valid dimension names.
725725
* @return {Array.<Array>} An array of all possible combinations of dimension values.
@@ -738,7 +738,7 @@ function createPivotDimensionCombinations( dimensionValues ) {
738738
/**
739739
* Sorts pivot report rows and returns them.
740740
*
741-
* @since n.e.x.t
741+
* @since 1.130.0
742742
*
743743
* @param {Array.<Object>} rows Array of rows to sort.
744744
* @param {Array.<Object>} metrics Array of report metrics.
@@ -788,7 +788,7 @@ export function sortPivotRows( rows, metrics, pivots ) {
788788
/**
789789
* Generates mock data for Analytics 4 pivot reports.
790790
*
791-
* @since n.e.x.t
791+
* @since 1.130.0
792792
*
793793
* @param {Object} options Report options.
794794
* @return {Array.<Object>} An array with generated report.
@@ -1006,7 +1006,7 @@ export function getAnalytics4MockPivotResponse( options ) {
10061006
/**
10071007
* Generates mock response for Analytics 4 pivot reports.
10081008
*
1009-
* @since n.e.x.t
1009+
* @since 1.130.0
10101010
*
10111011
* @param {wp.data.registry} registry Registry with all available stores registered.
10121012
* @param {Object} options Pivot report options.

assets/js/modules/analytics-4/utils/report-pivots-validation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { isValidOrders } from './report-validation';
3232
* and an optional "orderby" property. The "orderby" property should be a valid
3333
* order definition using the `isValidOrders` function.
3434
*
35-
* @since n.e.x.t
35+
* @since 1.130.0
3636
*
3737
* @param {Object[]} pivots The pivots object to check.
3838
* @return {boolean} TRUE if pivot definitions are valid, otherwise FALSE.

assets/js/modules/analytics-4/utils/validation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export function isValidGoogleTagContainerID( googleTagContainerID ) {
196196
/**
197197
* Checks whether a given report options object is valid.
198198
*
199-
* @since n.e.x.t
199+
* @since 1.130.0
200200
*
201201
* @param {Object} options The options for the report.
202202
*/
@@ -254,7 +254,7 @@ export function validateReport( options ) {
254254
/**
255255
* Checks whether a given pivot report options object is valid.
256256
*
257-
* @since n.e.x.t
257+
* @since 1.130.0
258258
*
259259
* @param {Object} options The options for the pivot report.
260260
*/

changelog.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
== Changelog ==
22

3+
= 1.130.0 =
4+
5+
**Enhanced**
6+
7+
* Added events tracking to the conversion tracking toggle. See [#8894](https://github.com/google/site-kit-wp/issues/8894).
8+
* Add support for Easy Digital Downloads "add to cart" event in Analytics enhanced tracking. See [#8801](https://github.com/google/site-kit-wp/issues/8801).
9+
* Add conversion events tracking for the Ninja Forms plugin. See [#8799](https://github.com/google/site-kit-wp/issues/8799).
10+
* Add foundation for new Reader Revenue Manager feature (PHP). See [#8785](https://github.com/google/site-kit-wp/issues/8785).
11+
* Add the Subscribe with Google PHP client library. See [#8783](https://github.com/google/site-kit-wp/issues/8783).
12+
* Ensure that Audiences are listed in the correct order, both in the Audience Tiles Widget and the Selection Panel. See [#8519](https://github.com/google/site-kit-wp/issues/8519).
13+
* Add support for pivot reports from Analytics to improve report request efficiency. See [#8484](https://github.com/google/site-kit-wp/issues/8484).
14+
* Update Analytics and AdSense modules to check the linked status as soon as one of these modules is connected. See [#8463](https://github.com/google/site-kit-wp/issues/8463).
15+
* Add a fallback mechanism to obtain user count for Site Kit audiences in the partial data state. See [#8160](https://github.com/google/site-kit-wp/issues/8160).
16+
* Show a notice in the Audience Selection Panel when it's opened with a single audience in the selection. See [#8159](https://github.com/google/site-kit-wp/issues/8159).
17+
* Add a CTA banner in the audiences widget area to reconnect Analytics if disconnected. See [#8156](https://github.com/google/site-kit-wp/issues/8156).
18+
* Show an Audience Tile in a zero-data state, and allow it to be temporarily hidden. See [#8143](https://github.com/google/site-kit-wp/issues/8143).
19+
* Update audiences widget area to show multiple notices in sequence. See [#8139](https://github.com/google/site-kit-wp/issues/8139).
20+
* Navigate to the OAuth flow as needed when setting up Audience Segmentation from the Setup CTA Banner. See [#8132](https://github.com/google/site-kit-wp/issues/8132).
21+
* Update the `url` parameter used in creating a new AdSense account not to contain subdomain information. See [#8124](https://github.com/google/site-kit-wp/issues/8124).
22+
* Update the Google Tag Mismatch notification to persist until a user dismisses it. See [#6819](https://github.com/google/site-kit-wp/issues/6819).
23+
* Add error boundary to widgets to prevent errors in an individual widget from crashing the entire dashboard. See [#6695](https://github.com/google/site-kit-wp/issues/6695).
24+
25+
**Fixed**
26+
27+
* Fix the problem with sticky header when the admin menu tooltip is shown. See [#8764](https://github.com/google/site-kit-wp/issues/8764).
28+
* Fix Analytics data inconsistency for Arabic language pages. See [#8184](https://github.com/google/site-kit-wp/issues/8184).
29+
330
= 1.129.1 =
431

532
**Fixed**

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.129.1
14+
* Version: 1.130.0
1515
* Requires at least: 5.2
1616
* Requires PHP: 7.4
1717
* Author: Google
@@ -26,7 +26,7 @@
2626
}
2727

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

0 commit comments

Comments
 (0)