Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
33.0.0 - 2024-08-08
-------------------
- Add support and examples for Google Ads API v17.1.
- Remove support for v15 of the Google Ads API.
- Add support for specifying the maximum inbound message
bytes in `GoogleAdsClient`.
- Update to version 3.33.0 of
`google-cloud-shared-dependencies`.
- Fixes [issue 169](https://github.com/googleads/google-ads-java/issues/169):
Infinite loop if refresh token is invalid

32.0.0 - 2024-06-06
-------------------
- Add support and examples for Google Ads API v17.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ This project hosts the Java client library for the Google Ads API.
<dependency>
<groupId>com.google.api-ads</groupId>
<artifactId>google-ads</artifactId>
<version>32.0.0</version>
<version>33.0.0</version>
</dependency>

## Gradle dependency

implementation 'com.google.api-ads:google-ads:32.0.0'
implementation 'com.google.api-ads:google-ads:33.0.0'

## Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ dependencies {
api 'io.grpc:grpc-protobuf'
api 'com.google.auth:google-auth-library-oauth2-http'
api 'com.google.auth:google-auth-library-credentials'
api platform('com.google.cloud:google-cloud-shared-dependencies:3.30.1')
api platform('com.google.cloud:google-cloud-shared-dependencies:3.33.0')
implementation 'com.google.guava:guava'
implementation 'com.google.auto.service:auto-service:1.0.1'
implementation 'javax.annotation:javax.annotation-api'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@
* throw an error when applied. For more details, see:
* https://developers.google.com/google-ads/api/docs/recommendations#take_action
*
* <p>As of Google Ads API v15 users can subscribe to certain recommendation types to apply them
* automatically. For more details, see:
* https://developers.google.com/google-ads/api/docs/recommendations#auto-apply
* <p>Users can subscribe to certain recommendation types to apply them automatically. For more
* details, see: https://developers.google.com/google-ads/api/docs/recommendations#auto-apply
*
* <p>As of Google Ads API v16 users can proactively generate certain recommendation types during
* the campaign construction process. For more details see:
* <p>Users can proactively generate certain recommendation types during the campaign construction
* process. For more details see:
* https://developers.google.com/google-ads/api/docs/recommendations#recommendations-in-campaign-construction
*/
public class DetectAndApplyRecommendations {
Expand Down
1 change: 1 addition & 0 deletions google-ads-stubs-lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api:1.7.25'
testImplementation 'org.mockito:mockito-core:4.11.0'
}

publishing {
publications {
maven(MavenPublication) { publication ->
Expand Down
3 changes: 0 additions & 3 deletions google-ads-stubs-v15/build.gradle

This file was deleted.

Loading