Skip to content

Commit 98a222e

Browse files
committed
Preparing src for release 9.0.0
1 parent 3fd86d1 commit 98a222e

File tree

279 files changed

+19124
-13896
lines changed

Some content is hidden

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

279 files changed

+19124
-13896
lines changed

ChangeLog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### 9.0.0
2+
3+
AdWords:
4+
- Fixed
5+
[issue #131](https://github.com/googleads/googleads-php-lib/issues/131).
6+
7+
DFP:
8+
- Added support for v201605.
9+
- Removed examples for v201505
10+
([deprecated](https://developers.google.com/doubleclick-publishers/docs/deprecation)).
11+
- Removed support for v201502
12+
([sunset](https://developers.google.com/doubleclick-publishers/docs/deprecation)).
13+
- Added a creative service example showing how to copy image creatives.
14+
15+
Common:
16+
- Updated out of date information in README.md.
17+
118
### 8.3.0
219

320
AdWords:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,4 @@ API deprecation schedules can be found at:
208208

209209
* [AdWords API deprecation schedule](https://developers.google.com/adwords/api/docs/sunset-dates)
210210
* [DFP API deprecation schedule](https://developers.google.com/doubleclick-publishers/docs/deprecation)
211+

examples/Dfp/v201505/ActivityGroupService/CreateActivityGroups.php renamed to examples/Dfp/v201605/ActivityGroupService/CreateActivityGroups.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2013, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -46,7 +46,7 @@
4646
$user->LogDefaults();
4747

4848
// Get the ActivityGroupService.
49-
$activityGroupService = $user->GetService('ActivityGroupService', 'v201505');
49+
$activityGroupService = $user->GetService('ActivityGroupService', 'v201605');
5050

5151
// Set the ID of the advertiser company this activity group is associated
5252
// with.

examples/Dfp/v201505/ActivityGroupService/GetActiveActivityGroups.php renamed to examples/Dfp/v201605/ActivityGroupService/GetActiveActivityGroups.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
try {
@@ -47,7 +47,7 @@
4747
$user->LogDefaults();
4848

4949
// Get the ActivityGroupService.
50-
$activityGroupService = $user->GetService('ActivityGroupService', 'v201505');
50+
$activityGroupService = $user->GetService('ActivityGroupService', 'v201605');
5151

5252
// Create a statement to select only active activity groups.
5353
$statementBuilder = new StatementBuilder();

examples/Dfp/v201505/ActivityGroupService/GetAllActivityGroups.php renamed to examples/Dfp/v201605/ActivityGroupService/GetAllActivityGroups.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
try {
@@ -47,7 +47,7 @@
4747
$user->LogDefaults();
4848

4949
// Get the ActivityGroupService.
50-
$activityGroupService = $user->GetService('ActivityGroupService', 'v201505');
50+
$activityGroupService = $user->GetService('ActivityGroupService', 'v201605');
5151

5252
// Create a statement to select all activity groups.
5353
$statementBuilder = new StatementBuilder();

examples/Dfp/v201505/ActivityGroupService/UpdateActivityGroups.php renamed to examples/Dfp/v201605/ActivityGroupService/UpdateActivityGroups.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
// Set the ID of the activity group to update.
@@ -53,7 +53,7 @@
5353
$user->LogDefaults();
5454

5555
// Get the ActivityGroupService.
56-
$activityGroupService = $user->GetService('ActivityGroupService', 'v201505');
56+
$activityGroupService = $user->GetService('ActivityGroupService', 'v201605');
5757

5858
// Create a statement to select a single activity group by ID.
5959
$statementBuilder = new StatementBuilder();

examples/Dfp/v201505/ActivityService/CreateActivities.php renamed to examples/Dfp/v201605/ActivityService/CreateActivities.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2013, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -46,7 +46,7 @@
4646
$user->LogDefaults();
4747

4848
// Get the ActivityService.
49-
$activityService = $user->GetService('ActivityService', 'v201505');
49+
$activityService = $user->GetService('ActivityService', 'v201605');
5050

5151
// Set the ID of the activity group this activity is associated with.
5252
$activityGroupId = 'INSERT_ACTIVITY_GROUP_ID_HERE';

examples/Dfp/v201505/ActivityService/GetActiveActivities.php renamed to examples/Dfp/v201605/ActivityService/GetActiveActivities.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
try {
@@ -47,7 +47,7 @@
4747
$user->LogDefaults();
4848

4949
// Get the ActivityService.
50-
$activityService = $user->GetService('ActivityService', 'v201505');
50+
$activityService = $user->GetService('ActivityService', 'v201605');
5151

5252
// Create a statement to select only active activities.
5353
$statementBuilder = new StatementBuilder();

examples/Dfp/v201505/ActivityService/GetAllActivities.php renamed to examples/Dfp/v201605/ActivityService/GetAllActivities.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
try {
@@ -47,7 +47,7 @@
4747
$user->LogDefaults();
4848

4949
// Get the ActivityService.
50-
$activityService = $user->GetService('ActivityService', 'v201505');
50+
$activityService = $user->GetService('ActivityService', 'v201605');
5151

5252
// Create a statement to select all activities.
5353
$statementBuilder = new StatementBuilder();

examples/Dfp/v201505/ActivityService/UpdateActivities.php renamed to examples/Dfp/v201605/ActivityService/UpdateActivities.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* limitations under the License.
2121
*
2222
* @package GoogleApiAdsDfp
23-
* @subpackage v201505
23+
* @subpackage v201605
2424
* @category WebServices
2525
* @copyright 2014, Google Inc. All Rights Reserved.
2626
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
@@ -35,7 +35,7 @@
3535
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
3636

3737
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
38-
require_once 'Google/Api/Ads/Dfp/Util/v201505/StatementBuilder.php';
38+
require_once 'Google/Api/Ads/Dfp/Util/v201605/StatementBuilder.php';
3939
require_once dirname(__FILE__) . '/../../../Common/ExampleUtils.php';
4040

4141
// Set the ID of the activity to update.
@@ -50,7 +50,7 @@
5050
$user->LogDefaults();
5151

5252
// Get the ActivityService.
53-
$activityService = $user->GetService('ActivityService', 'v201505');
53+
$activityService = $user->GetService('ActivityService', 'v201605');
5454

5555
// Create a statement to select a single activity by ID.
5656
$statementBuilder = new StatementBuilder();

0 commit comments

Comments
 (0)