Skip to content

Commit cd38f54

Browse files
committed
Bump version to 1.181.0.
1 parent 1d2fbab commit cd38f54

56 files changed

Lines changed: 185 additions & 164 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/blocks/reader-revenue-manager/contribute-with-google/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "google-site-kit/rrm-contribute-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Contribute with Google",
77
"category": "widgets",
88
"icon": "google",

assets/blocks/reader-revenue-manager/contribute-with-google/v3/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "google-site-kit/rrm-contribute-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Contribute with Google",
77
"category": "widgets",
88
"icon": "google",

assets/blocks/reader-revenue-manager/subscribe-with-google/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "google-site-kit/rrm-subscribe-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Subscribe with Google",
77
"category": "widgets",
88
"icon": "google",

assets/blocks/reader-revenue-manager/subscribe-with-google/v3/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "google-site-kit/rrm-subscribe-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Subscribe with Google",
77
"category": "widgets",
88
"icon": "google",

assets/blocks/sign-in-with-google/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 2,
44
"name": "google-site-kit/sign-in-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Sign in with Google",
77
"category": "widgets",
88
"icon": "google",

assets/blocks/sign-in-with-google/v3/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"apiVersion": 3,
44
"name": "google-site-kit/sign-in-with-google",
5-
"version": "1.180.0",
5+
"version": "1.181.0",
66
"title": "Sign in with Google",
77
"category": "widgets",
88
"icon": "google",

assets/js/components/pdf-export/PDFExportOrchestrator.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ type WidgetWithPDF = Widget & { pdf: WidgetPDFConfig };
8585
/**
8686
* Determines whether a registry widget declares a PDF export configuration.
8787
*
88-
* @since n.e.x.t
88+
* @since 1.181.0
8989
*
9090
* @param widget Registry widget.
9191
* @return `true` when the widget has a `pdf` config.
@@ -105,7 +105,7 @@ const initialState: State = { stage: STAGE_IDLE };
105105
/**
106106
* Validates and applies stage transitions for the export state machine.
107107
*
108-
* @since n.e.x.t
108+
* @since 1.181.0
109109
*
110110
* @param state Current reducer state.
111111
* @param action Dispatched action with a `nextStage` payload.
@@ -126,7 +126,7 @@ function reducer( state: State, action: Action ): State {
126126
/**
127127
* Determines whether the given error is an `AbortError` DOMException.
128128
*
129-
* @since n.e.x.t
129+
* @since 1.181.0
130130
*
131131
* @param error The caught value.
132132
* @return `true` when the error is an AbortError.
@@ -148,7 +148,7 @@ function throwIfAborted( signal: AbortSignal ): void {
148148
* Returns a promise that resolves on the next animation frame, or rejects
149149
* if the signal is aborted before the frame fires.
150150
*
151-
* @since n.e.x.t
151+
* @since 1.181.0
152152
*
153153
* @param signal Abort signal to observe.
154154
* @return Resolves on the next frame, rejects on abort.

assets/js/components/pdf-export/pdf-utils.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Sanitizes a free-form string into a lowercase, hyphen-separated slug
2121
* suitable for use inside a filename.
2222
*
23-
* @since n.e.x.t
23+
* @since 1.181.0
2424
*
2525
* @param value Input string. Empty and non-string values become an empty slug.
2626
* @return The sanitized slug.
@@ -41,7 +41,7 @@ function slugify( value: unknown ): string {
4141
/**
4242
* Returns the current date as `YYYY-MM-DD` using the local timezone.
4343
*
44-
* @since n.e.x.t
44+
* @since 1.181.0
4545
*
4646
* @param [now] Optional date instance, defaults to `new Date()`.
4747
* @return The formatted date.
@@ -67,7 +67,7 @@ function getISODate(
6767
* range are passed through `slugify` so the filename is filesystem-safe on
6868
* every supported OS.
6969
*
70-
* @since n.e.x.t
70+
* @since 1.181.0
7171
*
7272
* @param siteName Site name or URL.
7373
* @param [dateRange] Optional date range slug, e.g. `last-28-days`.
@@ -100,7 +100,7 @@ export function getPDFFilename(
100100
* anchor element with the `download` attribute, clicking it programmatically,
101101
* and removing it from the DOM.
102102
*
103-
* @since n.e.x.t
103+
* @since 1.181.0
104104
*
105105
* @param url Blob URL pointing to the generated file.
106106
* @param filename Suggested filename for the downloaded file.

assets/js/components/pdf-export/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export type { PDFWidgetComponentProps };
2929
/**
3030
* A loaded PDF widget ready to render into the report document.
3131
*
32-
* @since n.e.x.t
32+
* @since 1.181.0
3333
*/
3434
export interface PDFReportWidget {
3535
slug: string;
@@ -42,7 +42,7 @@ export interface PDFReportWidget {
4242
/**
4343
* One report section (one widget area) with its loaded widgets.
4444
*
45-
* @since n.e.x.t
45+
* @since 1.181.0
4646
*/
4747
export interface PDFReportArea {
4848
areaSlug: string;

assets/js/googlesitekit/datastore/pdf/pdf.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export const actions = {
261261
/**
262262
* Marks the PDF export as in progress.
263263
*
264-
* @since n.e.x.t
264+
* @since 1.181.0
265265
*
266266
* @return Redux-style action.
267267
*/
@@ -275,7 +275,7 @@ export const actions = {
275275
/**
276276
* Marks the PDF export as finished.
277277
*
278-
* @since n.e.x.t
278+
* @since 1.181.0
279279
*
280280
* @return Redux-style action.
281281
*/
@@ -433,7 +433,7 @@ export const selectors = {
433433
/**
434434
* Determines whether a PDF export is currently in progress.
435435
*
436-
* @since n.e.x.t
436+
* @since 1.181.0
437437
*
438438
* @param state Data store's state.
439439
* @return `true` when exporting.

0 commit comments

Comments
 (0)