forked from googleads/googleads-java-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
executable file
·1304 lines (1028 loc) · 33.4 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2.4.1 - 09/18/2015
------------------
AdWords:
- Corrected the argument passed to `SelectorBuilder.increaseOffsetBy` in `ProductPartitionTree`
to fix [github issue #50](https://github.com/googleads/googleads-java-lib/issues/50).
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
2.4.0 - 08/25/2015
------------------
AdWords:
- Set AdGroup settings. Fixes github issue
[49](https://github.com/googleads/googleads-java-lib/issues/49)
DFA:
- No changes.
DFP:
- Added support for v201508.
- Added ReconciliationLineItemReportService.
- Removed support for v201405.
- Removed examples for v201408.
Common:
- No changes.
2.3.0 - 07/27/2015
-------------------
AdWords:
- Migrated AdWords Axis Utility Extension (beta) to v201506.
- Removed support and examples for v201409. See deprecation schedule at:
https://developers.google.com/adwords/api/docs/sunset-dates
DFA:
- Removed support for v1.19.
DFP:
- Removed support for v201403.
Common:
- No changes.
2.2.0 - 06/26/2015
-------------------
AdWords:
- Added support and examples for v201506.
- Fix to avoid ArrayStoreException in ProductPartitionTree.createAdGroupTree.
- Added support for the new includeZeroImpressions HTTP header for reporting.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
2.1.0 - 06/10/2015
-------------------
AdWords:
- Migrated AdWords Axis Utility Extension (beta) to v201502.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
2.0.0 - 05/19/2015
-------------------
AdWords:
- Changed minimum JRE version to 1.6.
DFA:
- Changed minimum JRE version to 1.6.
DFP:
- Added support for v201505.
- Removed examples for v201405.
- Updated report utility with new getReportJobStatus method.
- Removed MERGED_* metrics from the ReportService.
- Added advanced ProposalLineItem actions.
- Changed minimum JRE version to 1.6.
Common:
- Changed minimum JRE version to 1.6.
1.39.0 - 04/24/2015
-------------------
AdWords:
- Removed support and examples for v201406.
- Added support for the [skipColumnHeader option](https://developers.google.com/adwords/api/docs/guides/reporting#optional-headers)
introduced in v201502.
- Removed reference to `MarginalCpc` selector field in
[GetKeywordBidSimulations](https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201502/optimization/GetKeywordBidSimulations.java).
This field was removed from `DataService` in [v201502](https://developers.google.com/adwords/api/docs/guides/migration/v201502).
- Added Java enums that represent all the fields for all the entity services available on each API
version.
- Added support for the Java enums in the SelectorBuilder utility class.
- Updated junit dependency to version 4.11.
- Updated hamcrest-all dependency to version 1.3.
DFA:
- Updated junit dependency to version 4.11.
DFP:
- Updated junit dependency to version 4.11.
Common:
- Updated junit dependency to version 4.11.
- Updated hamcrest-all dependency to version 1.3.
1.38.0 - 03/12/2015
-------------------
AdWords:
- Added support and examples for v201502.
- Renamed AddSiteLinks to AddSiteLinksUsingFeeds, and added new AddSiteLinks and
MigrateToExtensionSettings examples for the new extension setting services.
- Fixed [github issue 36](https://github.com/googleads/googleads-java-lib/issues/36):
getBid() of root ProductPartition returns NULL.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Updated joda-time dependency to version 2.1.
1.37.0 - 02/19/2015
-------------------
AdWords:
- Added new methods to ReportDownloadResponse to facilitate saving a report's contents to a file,
retrieving a report's contents as a string, and retrieving a report's contents as an
InputStream.
- Fixed AccountManagementTest to account for the fact that clientCustomerId is required on
ManagedCustomerService calls in v201409.
- Removed AdWords for Video services from v201406.
- Added ProductPartitionTree utility to simplify management of ProductPartition ad
group criteria in Shopping campaigns.
- Improved targetAll settings and comments in AddAdGroups examples.
- Updated multiple examples to use
[upgraded URLs](https://developers.google.com/adwords/api/docs/guides/upgraded-urls).
- Added UpgradeAdUrl example.
DFA:
- No changes.
DFP:
- Added support for v201502.
- Removed support for v201311, v201308, and v201306.
- Removed examples for v201403.
- Updated ForecastService examples.
- Added PackageService, ProductPackageService and ProductPackageItemService.
- Removed support for ClientLogin with the removal of v201311 and earlier.
Common:
- Fixed [issue #33](https://github.com/googleads/googleads-java-lib/issues/33):
Some generated JAX-WS files contain an invalid wsdlLocation.
- Modified SOAP integration tests to make them Java 8 compatible. This required a new test
dependency on XMLUnit.
1.36.0 - 12/04/2014
-------------------
AdWords:
- Removed support for v201402.
- Removed support for reportMoneyInMicros from AdWordsSession. This feature is not supported in
v201406 and higher.
- Relaxed validation of ReportingConfiguration to allow usage with v201406.
- Fixed [github issue #23](https://github.com/googleads/googleads-java-lib/issues/23): add
a negative campaign criterion in the AddCampaignTargetingCriteria examples.
- Fixed [github issue #29](https://github.com/googleads/googleads-java-lib/issues/29):
EstimateKeywordTraffic.java example fails if StatsEstimate is missing values
DFA:
- Removed support for DFA6 report service.
DFP:
- No changes.
Common:
- No changes.
1.35.1 - 11/11/2014
-------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Release to fix maven and github inconsistencies.
Common:
- No Changes.
1.35.0 - 11/11/2014
-------------------
AdWords:
- Migrated AdWords Axis Utility Extension (beta) to v201409.
- Added Label support to AdWords Axis Utility Extension (beta).
- Modified AdWords Express AddPromotion.java examples to only
create one Creative per Promotion.
DFA:
- No changes.
DFP:
- Added support for v201411.
- Added SharedAdUnitService and AdExclusionRuleService.
- Removed examples for v201311.
Common:
- No Changes.
1.34.0 - 10/10/2014
-------------------
AdWords:
- Added support and examples for v201409.
DFA:
- Removed obsolete DFA6 examples. For more information, see the
[DCM upgrade guide](https://developers.google.com/doubleclick-advertisers/docs/upgrading).
DFP:
- No changes.
Common:
- No changes.
1.33.0 - 09/11/2014
-------------------
AdWords:
- Migrated AdWords Axis Utility Extension (beta) to v201406.
DFA:
- No changes.
DFP:
- Added new auth example CreateDfpSessionUsingServiceAccount.java that shows
how to create a DfpSession using OAuth2 service account credentials.
Common:
- Added support for optional SOAP compression. Fixes
[issue #1](https://github.com/googleads/googleads-java-lib/issues/1).
1.32.0 - 08/20/2014
-------------------
AdWords:
- Removed support for ClientLogin. For more information, see the [ClientLogin to OAuth2
Migration guide](https://developers.google.com/adwords/api/docs/guides/clientlogin-to-oauth2-migration-guide).
- Added example for using ad customizers.
DFA:
- No changes.
DFP:
- Added support for v201408.
- Updated default DFP endpoint to https://ads.google.com.
- Updated OAuth scope to https://www.googleapis.com/auth/dfp.
- Changed Product ID from String to Long.
- Updated create line item and get forecast examples in v201408 to show
how to set Goal.goalType.
Common:
- No changes.
1.31.0 - 07/21/2014
-------------------
AdWords:
- Removed support for v201309.
- Added AdWords for Video v201406 support. This is a beta feature.
- Added containsAny, containsAll, and containsNone methods to the
jaxws SelectorBuilder for v201406.
- Added unit tests for axis and jaxws v201406 SelectorBuilders.
- Added validation to ensure that returnMoneyInMicros is not set on
reporting requests for versions higher than v201402. See
https://developers.google.com/adwords/api/docs/guides/reporting-concepts#money.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.30.0 - 07/09/2014
-------------------
AdWords:
- Added support for v201406.
- Updated OAuth scope. See
https://developers.google.com/adwords/api/docs/guides/authentication#scope for details.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Upgraded slf4j to 1.7.7.
1.29.1 - 07/02/2014
-------------------
AdWords:
- Added whitelist-only shared set services to v201402.
DFA:
- No changes.
DFP:
- Added new LineItem error reason.
- Added TokenError to UserService.
Common:
- No changes.
1.29.0 - 06/12/2014
-------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Added v201405 support.
Common:
- No changes.
1.28.0 - 05/21/2014
-------------------
AdWords:
- Added AdWords for Video v201309 support. This is a beta feature.
- Added report request and response logging. Fixes issue #12.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.27.0 - 04/11/2014
-------------------
AdWords:
- Removed support for v201306.
- Migrated AdWords Axis Utility Extension (beta) to v201402.
- Improved limit documentation in EstimateKeywordTraffic and
GetKeywordIdeas. Fixes issue #13.
- Added support for new AdWords Express ProductServiceService.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.26.0 - 03/06/2014
-------------------
AdWords:
- Added support for v201402.
- Disabled ClientLogin beginning with v201402.
- Only include returnMoneyInMicros in the request header if it is
explicitly specified in ads.properties or set on the session or session
builder. See the note on returnMoneyInMicros at
https://developers.google.com/adwords/api/docs/guides/migration/v201402
for more details.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.25.0 - 03/05/2014
-------------------
AdWords:
- Added examples to get refresh token and create AdWordsSession without
using ads.properties file.
DFA:
- Added examples to get refresh token and create DfaSession without
using ads.properties file.
DFP:
- Added examples to get refresh token and create DfpSession without
using ads.properties file.
- Added support for v201403.
- Added LiveStreamEventService and RateCardCustomizationGroupService.
- Removed all non-bulk methods beginning with v201403.
- Disabled ClientLogin beginning with v201403.
Common:
- No changes.
1.24.1 - 02/06/2014
-------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Replaced java.nio.charset.StandardCharsets.UTF_8 with
com.google.common.base.Charsets.UTF_8 for Java 1.5 compatibility. Fixes
issue #10.
- com.google.http-client and org.seleniumhq.selenium artifacts are no longer
RELEASE.
1.24.0 - 01/29/2014
-------------------
AdWords:
- Updated GetKeywords examples to use the proper match type field in the Selector.
- SelectorBuilder: changed the method signature "by" to "equals".
- Migrated AdWords Axis Utility Extension (beta) to v201309.
- Improved comments in the UpdateSiteLinks example.
DFA:
- No changes.
DFP:
- Fixes issue #8: NumberValue with empty string should return null for
Pql.getApiValue
Common:
- No changes.
1.23.0 - 01/16/2014
-------------------
AdWords:
- Added support for AdWords Express for v201309 (invite-only feature).
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.22.1 - 12/05/2013
-------------------
AdWords:
- Added AdWords Axis Utility Extension (beta).
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.22.0 - 11/25/2013
-------------------
AdWords:
- Added SelectorBuilder to simplify building Selectors.
- A valid user agent is now required and must not be the default. Set
it via AdWordsSession.Builder.withUserAgent or the api.adwords.userAgent
ads.properties key.
DFA:
- A valid application name is now required and must not be the default. Set
it via DfaSession.Builder.withApplicationName or the api.dfa.applicationName
ads.properties key.
DFP:
- Added support for v201311.
- Starting in v201311, StatementBuilder.SUGGESTED_PAGE_LIMIT will be set to
500.
- A valid application name is now required and must not be the default. Set
it via DfpSession.Builder.withApplicationName or the api.dfp.applicationName
ads.properties key.
Common:
- No changes.
1.21.0 - 11/18/2013
-------------------
AdWords:
- Removed the support for v201302.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.20.1 - 11/14/2013
-------------------
AdWords:
- Moved UseSharedBiddingStrategy example to advancedoperations from campaignmanagement.
- Added UpdateSiteLinks example to illustrate how to use new line 1 and 2 descriptions.
- Updated AddSiteLinks example to include new line 1 and 2 description fields.
DFA:
- No changes.
DFP:
- Fixed issue 69: NPE for null Value objects in PQL utilities.
- Added getNativeValue an getApiValue to PQL utility to ease work with Value
objects.
Common:
- No changes.
1.20.0 - 10/04/2013
-------------------
AdWords:
- Added support for v201309.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.19.0 - 9/18/2013
------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Added v201308.
- Removed deprecated versions v201203, v201204, and v201206.
- Renamed DateTimes.toStringForZone to DateTimes.toStringForTimeZone.
- Added DateTimes.toStringWithTimeZone to include time zones.
- Pql utilities will now convert DateTime and Date time values to into machine
readable strings. DateTimes will be in ISO-8061 format while Dates will be
in yyyy-MM-dd format.
- Added Pql.combineResultSets to easily combine result sets from paged
statements.
Common:
- No changes.
1.18.1 - 8/02/2013
------------------
AdWords:
- Removed support for v201209.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.18.0 - 7/09/2013
------------------
AdWords:
- Added support for v201306.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.17.0 - 6/28/2013
------------------
AdWords:
- Added AdWords for Video support for v201302 (beta feature).
- Added GetRefreshToken example to be used with OfflineCredentials.
- The ads.properties file can now accept a refreshToken and client secrets.
- Removed deprecated environment methods and properties in
AdWordsSession.Builder.
- Removed OAuth1 support. OAuth2 should be used instead.
- ClientLogin is now deprecated. OAuth2 should be used instead.
- Updated all examples to use OfflineCredentials instead of ClientLogin.
DFA:
- Added GetRefreshToken example to be used with OfflineCredentials.
- The ads.properties file can now accept a refreshToken and client secrets.
- Username/password is now deprecated. OAuth2 should be used instead.
- Updated all examples to use OfflineCredentials.
DFP:
- Added GetRefreshToken example to be used with OfflineCredentials.
- The ads.properties file can now accept a refreshToken and client secrets.
- Removed deprecated environment methods and properties in
DfpSession.Builder.
- Removed OAuth1 support. OAuth2 should be used instead.
- ClientLogin is now deprecated. OAuth2 should be used instead.
- Updated all examples to use OfflineCredentials.
Common:
- Added OfflineCredentials utility to generate an OAuth2 Credential from
information stored in your ads.properties file. If you have not moved
off of ClientLogin yet, using this utility will ease the process.
- Removed deprecated modules (common_*, adwords_lib, dfp_lib, and dfa_lib)
from source control.
1.16.0 - 6/24/2013
------------------
AdWords:
- No changes.
DFA:
- Removed the match table application from our example set. From now on, it
will be treated as its own sample application.
- Added automatic refreshing of DDMM tokens. Once your account has been
upgraded from DFA to DDMM, your login tokens have limited lifespans.
DFP:
- Added support for v201306.
- Added all remaining missing examples for v201302.
Common:
- No changes.
1.15.2 - 5/09/2013
------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Updating our parent pom.xml file.
1.15.1 - 5/08/2013
------------------
AdWords:
- Added support for AdGroupBidModifierService.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.15.0 - 4/25/2013
------------------
AdWords:
- Minor fixes to examples to address issues 36, 41.
- AdWords for Video API support and examples (beta feature).
- Removing support for v201206.
DFA:
- Removed support for v1.18.
- Added support for v1.20.
DFP:
- Fixed DfpInternals to reference DfpModule (issue 55).
- Included some examples for v201302 that were left out.
Common:
- No changes.
1.14.1 - 3/25/2013
------------------
AdWords:
- No changes.
DFA:
- Updated the sample application which generate match tables to use multiple
threads for increased performance.
DFP:
- No changes.
Common:
- No changes.
1.14.0 - 3/15/2013
------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Added support for v201302.
- The StatementBuilder classes no longer implement QueryBuilderInterface.
Common:
- Removing all of the classes aimed at supporting Axis2. We have no plans to
support Axis2 at this time.
1.13.0 - 3/04/2013
------------------
AdWords:
- Adding support for v201302.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.12.4 - 2/07/2013
------------------
AdWords:
- No changes.
DFA:
- Added an application to the DFA sample set which can generate match tables
from Data Transfer files. If you'd like to know more (or find out what a
match table or Data Transfer file is), please see the README in
dfa/axis/v1_19/matchtables.
DFP:
- No changes.
Common:
- No changes.
1.12.3 - 2/06/2013
------------------
AdWords:
- Adding code examples for enhanced campaign support using the
forwardCompatibilityMap.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.12.2 - 1/17/2013
------------------
AdWords:
- Removed deprecated com.google.api.ads.adwords.lib.factory.AdWordsServices
class. You must use com.google.api.ads.adwords.axis.factory.AdWordsServices
or com.google.api.ads.adwords.jaxws.factory.AdWordsServices instead.
DFA:
- Removed deprecated com.google.api.ads.dfa.lib.factory.DfaServices class. You
must use com.google.api.ads.dfa.axis.factory.DfaServices instead.
DFP:
- Removed deprecated com.google.api.ads.dfp.lib.factory.DfpServices class. You
must use com.google.api.ads.dfp.axis.factory.DfpServices or
com.google.api.ads.dfp.jaxws.factory.DfpServices instead.
Common:
- Restored library to Java 1.5 compatibility when creating a single jar
assembly. This was due to newer versions of Guava not being compatible with
1.5. The artifact guava-jdk5 will now be used instead. Fixes issue 44.
- Removed our dependency on Reflections. Usage of all classes which relied on
Reflections has been deprecated since version 1.7.0.
- Updated the version of our selenium-java testing dependency.
1.12.1 - 12/14/2012
-------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Changed version of selenium-java dependency to 2.27.0. Version 2.28.0 was
causing java.lang.NoClassDefFoundError: org/w3c/dom/ElementTraversal errors.
1.12.0 - 12/11/2012
-------------------
AdWords:
- Removed support for sandbox environment.
- Added support for configurable report download timeout. Set property
api.adwords.reportDownloadTimeout in milliseconds in ads.properties.
DFA:
- No changes.
DFP:
- Added support for v201211.
- Updated generated code for all versions to support UnsupportedCreative and
new UKNOWN enum values.
- Removed support for v201111 and v201201.
Common:
- Fixed issue where not all properties where being loaded from the
ads.properties file correctly.
1.11.0 - 11/02/2012
-------------------
AdWords:
- Removed v201109 and v201109_1 support due to sunset.
- Fixed issue 33 by adding connect/read timeout to
ReportRequestFactoryHelper.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.10.2 - 10/23/2012
-------------------
AdWords:
- Fixing issue 31 by retaining a static reference to the JaxBSerializer,
which holds onto the JAXBContext reference.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Streams fix for issue 26.
- Removed synchronization on
BaseAdsServiceClientFactory.getServiceClientAsInterface() to fix issue 27.
1.10.1 - 10/15/2012
-------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- No changes.
Common:
- Updated our dependency on Apache commons-configuration from version 1.6 to
1.7. This fixes issue 30.
1.10.0 - 10/10/2012
-------------------
AdWords:
- Adding support for v201209.
DFA:
- No changes.
DFP:
- No changes.
Common:
- No changes.
1.9.1 - 09/12/2012
------------------
AdWords:
- The Axis example project now has the configuration for exec-maven-plugin
inside a profile. This fixes issue 23.
DFA:
- The Axis example project now has the configuration for exec-maven-plugin
inside a profile. This fixes issue 23.
DFP:
- The Axis example project now has the configuration for exec-maven-plugin
inside a profile. This fixes issue 23.
Common:
- ConfigurationHelper now creates a snapshot of the System properties when it
is instantiated rather than using the Apache SystemConfiguration class.
This prevents a ConcurrentModificationException from being thrown if a
property is added or removed from the System while our library is reading
from our configuration.
1.9.0 - 09/06/2012
------------------
AdWords:
- Removed OAuth1.0 examples. See release 1.8.1 for more information.
- Updated OAuth2.0 examples to use Jackson2 instead of Gson.
DFA:
- Updated OAuth2.0 examples to use Jackson2 instead of Gson.
DFP:
- Removed OAuth1.0 examples. See release 1.8.1 for more information.
- Updated OAuth2.0 examples to use Jackson2 instead of Gson.
Common:
- Parent pom dependencies are now locked to current release version at time
of this release. Each release will now include the most recent dependencies
at the time of release, i.e. replacing the RELEASE version.
- com.google.api-client dependency upgraded to 1.11.0 which removes support
for com.google.api.client.googleapis.auth.oauth
1.8.1 - 09/05/2012
------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Added link to header explanations in ads.properties file.
Common:
- Deprecated use of OAuth1.0a via withOAuthParameters methods. If you are
using OAuth1.0a, please switch to OAuth2.0. Although we will continue to
support OAuth1.0a as long as the method is supported by Google, it may
become more difficult as other Google libraries begin to deprecate support.
See the following release note for more information.
- Locked parent dependency versions at the time of the 1.8.0 release due to
com.google.oauth-client and com.google.api-client dropping support of
GoogleOAuth OAuth1.0a authorization flows.
1.8.0 - 08/23/2012
------------------
AdWords:
- No changes.
DFA:
- Added support for v1.19.
- Added OAuth2 support, which is only supported in DFA API v1.19 and later.
OAuth2 tokens will be refreshed when they expire by default. This behavior
can be disabled by setting the "api.dfa.refreshOAuth2Token" key in your
ads.properties to "false".
DFP:
- Added support for v201208.
Common:
- No changes.
1.7.2 - 08/13/2012
------------------
AdWords:
- No changes.
DFA:
- No changes.
DFP:
- Updated generated java for all versions.
Common:
- No changes.
1.7.1 - 08/10/2012
------------------
AdWords:
- Fixed issue 20.
DFA: