Skip to content

Commit 0c06920

Browse files
chore(main): release google-ads-ad_manager 4.0.0
1 parent bb32879 commit 0c06920

3 files changed

Lines changed: 86 additions & 2 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"google-ads-ad_manager": "3.1.0",
2+
"google-ads-ad_manager": "4.0.0",
33
"google-ads-ad_manager+FILLER": "0.0.0",
44
"google-ads-ad_manager-v1": "3.2.0",
55
"google-ads-ad_manager-v1+FILLER": "0.0.0",

google-ads-ad_manager/CHANGELOG.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,89 @@
11
# Changelog
22

3+
### 4.0.0 (2026-05-13)
4+
5+
### ⚠ BREAKING CHANGES
6+
7+
* An existing value `DEMAND_SUBCHANNEL_ALL` is removed from enum `Dimension`
8+
* Changed field behavior for an existing field `display_name` in message `.google.ads.admanager.v1.Application`
9+
* Removed UNIFIED_PRICING_RULE_ID dimension
10+
* Removed UNIFIED_PRICING_RULE_NAME dimension
11+
* Remove unused AdManagerError type
12+
* New REQUIRED field `display_name` in message `.google.ads.admanager.v1.Label`
13+
* New REQUIRED field `types` in message `.google.ads.admanager.v1.Label`
14+
15+
#### Features
16+
17+
* A new field `app_store_display_name` is added to message `.google.ads.admanager.v1.Application`
18+
* A new field `app_store_id` is added to message `.google.ads.admanager.v1.Application`
19+
* A new field `app_stores` is added to message `.google.ads.admanager.v1.Application`
20+
* A new field `application_code` is added to message `.google.ads.admanager.v1.Application`
21+
* A new field `approval_status` is added to message `.google.ads.admanager.v1.Application`
22+
* A new field `archived` is added to message `.google.ads.admanager.v1.Application`
23+
* A new field `developer` is added to message `.google.ads.admanager.v1.Application`
24+
* A new field `download_url` is added to message `.google.ads.admanager.v1.Application`
25+
* A new field `free` is added to message `.google.ads.admanager.v1.Application`
26+
* A new field `platform` is added to message `.google.ads.admanager.v1.Application`
27+
* A new field `webview_claiming_status` is added to message `.google.ads.admanager.v1.Application`
28+
* A new message `ApplicationApprovalStatusEnum` is added
29+
* A new message `ApplicationPlatformEnum` is added
30+
* A new message `ApplicationStoreEnum` is added
31+
* A new message `BatchArchiveApplicationsRequest` is added
32+
* A new message `BatchArchiveApplicationsResponse` is added
33+
* A new message `BatchCreateApplicationsRequest` is added
34+
* A new message `BatchCreateApplicationsResponse` is added
35+
* A new message `BatchUnarchiveApplicationsRequest` is added
36+
* A new message `BatchUnarchiveApplicationsResponse` is added
37+
* A new message `BatchUpdateApplicationsRequest` is added
38+
* A new message `BatchUpdateApplicationsResponse` is added
39+
* A new message `CreateApplicationRequest` is added
40+
* A new message `UpdateApplicationRequest` is added
41+
* A new message `WebviewClaimingStatusEnum` is added
42+
* A new method `BatchArchiveApplications` is added to service `ApplicationService`
43+
* A new method `BatchCreateApplications` is added to service `ApplicationService`
44+
* A new method `BatchUnarchiveApplications` is added to service `ApplicationService`
45+
* A new method `BatchUpdateApplications` is added to service `ApplicationService`
46+
* A new method `CreateApplication` is added to service `ApplicationService`
47+
* A new method `UpdateApplication` is added to service `ApplicationService`
48+
* Add readonly OAuth scope
49+
* added new API dimension: CREATIVE_SSL_SCAN_RESULT
50+
* added new PUBLIC dimension: CREATIVE_SSL_COMPLIANCE_OVERRIDE_NAME
51+
* added new PUBLIC dimension: CREATIVE_SSL_SCAN_RESULT_NAME
52+
* added new PUBLIC dimension: LINE_ITEM_AVERAGE_NUMBER_OF_VIEWERS
53+
* added new PUBLIC dimension: TARGETS_CUSTOMER_MATCHING_LIST
54+
* added new PUBLIC metric: AD_SERVER_ACTIVE_VIEW_REVENUE
55+
* Added child publisher resource.
56+
* Add ProposalLineItem service and messages to the API.
57+
* This is referenced for delegation_type in mcm_earnings
58+
* Expose both `get` and `list` methods for RichMediaAdsCompanies to external clients.
59+
* Added McmEarnings service
60+
* New REQUIRED field `display_name` in message `.google.ads.admanager.v1.Label`
61+
* New REQUIRED field `types` in message `.google.ads.admanager.v1.Label`
62+
#### Bug Fixes
63+
64+
* An existing value `DEMAND_SUBCHANNEL_ALL` is removed from enum `Dimension`
65+
* Changed field behavior for an existing field `display_name` in message `.google.ads.admanager.v1.Application`
66+
* Remove unused AdManagerError type
67+
* Removed UNIFIED_PRICING_RULE_ID dimension
68+
* Removed UNIFIED_PRICING_RULE_NAME dimension
69+
#### Documentation
70+
71+
* `UNIFIED_PRICING_RULE_ID` in enum `Dimension` is deprecated
72+
* `UNIFIED_PRICING_RULE_NAME` in enum `Dimension` is deprecated
73+
* A comment for enum value `DEMAND_SUBCHANNEL_NAME` in enum `Dimension` is changed
74+
* A comment for enum value `DEMAND_SUBCHANNEL` in enum `Dimension` is changed
75+
* A comment for enum value `PRICING_RULE_ID` in enum `Dimension` is changed
76+
* A comment for enum value `PRICING_RULE_NAME` in enum `Dimension` is changed
77+
* A comment for enum value `UNIFIED_PRICING_RULE_ID` in enum `Dimension` is changed
78+
* A comment for enum value `UNIFIED_PRICING_RULE_NAME` in enum `Dimension` is changed
79+
* A comment for field `display_name` in message `.google.ads.admanager.v1.Application` is changed
80+
* A comment for field `filter` in message `.google.ads.admanager.v1.ListApplicationsRequest` is changed
81+
* Clarify the behavior of the date_time_range filter when combined with a PENDING manual_review_status.
82+
* Expand regex to regular expression
83+
* Remove usage of and/or slashes
84+
* Replace 'via' in all docs
85+
* Replace all curly quotes with regular quotes
86+
387
### 3.1.0 (2026-03-19)
488

589
#### Features

google-ads-ad_manager/lib/google/ads/ad_manager/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
module Google
2121
module Ads
2222
module AdManager
23-
VERSION = "3.1.0"
23+
VERSION = "4.0.0"
2424
end
2525
end
2626
end

0 commit comments

Comments
 (0)