forked from googleads/googleads-dotnet-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
executable file
·1302 lines (1044 loc) · 34.5 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
24.8.0
======
AdWords:
-
Ad Manager:
- Added support for v201908.
- Removed support for v201808.
- Removed examples for v201811.
- Updated ProposalService and ProposalLineItemService example for Sales
Management deprecation.
Common:
-
24.7.1
======
AdWords:
- Added support for testing the client library against a local insecure server.
Ad Manager:
-
Common:
-
24.7.0
======
AdWords:
-
Ad Manager:
- Added support for v201905.
- Removed support for v201805.
- Removed examples for v201808.
Common:
-
24.6.0
======
AdWords:
- Removed support for v201806.
Ad Manager:
-
Common:
-
24.5.0
=====
AdWords:
- No changes.
Ad Manager:
- Added support for v201902.
- Removed support for v201802.
- Removed examples for v201805.
Common:
- No changes.
24.4.0
=====
AdWords:
- Removed support for v201802.
Ad Manager:
-
Common:
- Fixed issue #204.
24.3.0
======
AdWords:
- Added new code example for creating Smart Shopping campaigns.
- Updated various dependencies to the latest stable versions on Nuget.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/191
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/199
Ad Manager:
- Updated various dependencies to the latest stable versions on Nuget.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/165
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/191
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/199
Common:
- Library version bumped to 9.5.0.
- Updated various dependencies to the latest stable versions on Nuget.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/198
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/191
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/199
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/197
24.2.0
======
AdWords:
-
Ad Manager:
- Added support for v201811.
- Removed support for v201711.
- Removed examples for v201802.
Common:
-
24.1.0
======
AdWords:
- Added support for v201809.
Ad Manager:
- No changes.
Common:
- No changes.
24.0.0
======
AdWords:
- No changes.
Ad Manager:
- DFP is now Ad Manager. See the migration guide at
https://github.com/googleads/googleads-dotnet-lib/wiki/DFP-to-Ad-Manager-rebrand-guide
- Added support for v201808.
- Removed support for v201708.
- Removed examples for v201711.
Common:
- No changes.
23.6.0
======
AdWords:
- Removed support for v201710.
- Closed https://github.com/googleads/googleads-dotnet-lib/issues/176.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/2.
- Updated GetKeywordBidSimulations example to use QueryBuilders.
- Regenerated v201802 and v201806 stubs.
- Removed AddClickToDownloadAd example from all versions.
DFP:
- Reformatted all source files to be compatible with Microsoft's style guide.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/2
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/134
- Reformatted all source files to be compatible with Microsoft's style guide.
23.5.1
======
AdWords:
-
DFP:
-
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/172
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/173
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/175
23.5.0
======
AdWords:
- Added support for v201806.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/166
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/169
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/164
- Fixed several code examples to use the MediaUtilities.GetAssetDataFromUrl method that
accepts an AppConfig parameter.
DFP:
- Fixed several code examples to use the MediaUtilities.GetAssetDataFromUrl method that
accepts an AppConfig parameter.
Common:
- Added support for overriding OAuth endpoints.
- Added support to check for expiry of access tokens before they are refreshed.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/156. As a result,
MediaUtilities.GetAssetDataFromUrl(Uri url) and MediaUtilities.GetAssetDataFromUrl(string url)
were removed. These methods attempt to use the config settings from an App.config file, and
wouldn't work properly when invoked from a method which uses a config that is constructed at
runtime. You can use the overloaded method that accepts an AppConfig parameter as a
replacement. You can obtain an AppConfig instance from the AdWordsUser or DfpUser object's Config
property.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/170. Use Stream.CopyTo followed by
Stream.Read as a replacement for the discontinued MediaUtilities.CopyStreamWithPreview method.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/171. Use Stream.CopyTo as a
replacement for the discontinued MediaUtilities.CopyStream method.
23.4.1
======
AdWords:
-
DFP:
- Regenerated v201805 stubs.
Common:
-
23.4.0
======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/163
DFP:
- Added support for v201805.
- Removed support for v201705.
- Removed examples for v201708.
Common:
- Common library now fully provides OAuth functionality using the Google.Auth library. Custom
implementations have been sunset. Several properties and methods that are
no longer relevant or have alternatives have been marked as obsolete, and
will be removed in a future release. See the
compilation warnings for appropriate alternatives.
- AdsOAuthException exposes underlying OAuth errors and HTTP errors (if any). You
may use these properties for granular handling of user authentication errors.
- OAuthTokenGenerator was rewritten to be a .NET Core Console application.
23.3.0
======
AdWords:
- Fixed issue #160.
- Fixed issue #150.
- Fixed issue #157.
- Fixed issue #158.
- Fixed issue #159.
- Fixed issue #162.
DFP:
-
Common:
- Fixed issue #157.
23.2.0
======
AdWords:
- Removed support for v201705 and v201708.
- Updated the AddSitelinksUsingFeeds example to illustrate the usage of
FeedItemTargetService.
- Updated the AddDynamicPageFeed example to include comments about page
feed URL recommendations and rules.
DFP:
- Regenerated stub code.
Common:
-
23.1.1
======
AdWords:
-
DFP:
-
Common:
- Fixed issue #151.
- Fixed issue #152.
23.1.0
======
AdWords:
- Added support for v201802.
DFP:
-
Common:
-
23.0.0
======
AdWords:
- Added support for .NET Standard 2.0. Fixes issue #96.
- Added ReportQueryBuilder and SelectQueryBuilder, two utility classes to assist building AWQL queries.
- Removed support for v201702.
- Updated the UploadOfflineData code example to support multiple upload types.
- Regenerated stub code for all versions.
- Renamed MoneyWithCurrency in OfflineDataUploadService.wsdl to RemarketingMoneyWithCurrency.
Fixed https://github.com/googleads/googleads-dotnet-lib/issues/130.
- Rewrote remarketing code examples to use SHA256 hashing algorithm.
- Removed dependency on BouncyCastle library.
DFP:
- Added support for .NET Standard 2.0. Fixes issue #96.
- Added support for v201802.
- Removed support for v201702.
- Removed examples for v201705.
Common:
- Added support for .NET Standard 2.0. Fixes issue #96.
- Replaced BouncyCastle with Google.Apis.Auth. Fixes issue #125.
- Replaced System.Web.Serialization with JSON.net. Fixes issue #126.
- Replaced System.Configuration with Microsoft Extension Configuration. Fixes issue #127.
22.4.0
======
AdWords:
-
DFP:
- Added support for v201711.
- Removed support for v201611.
- Removed examples for v201702.
Common:
-
22.3.1
======
AdWords:
- Updated code examples to dispose services.
DFP:
- Updated code examples to dispose services.
Common:
- Fixed issue #124.
22.3.0
======
AdWords:
- Fixed issue #117.
- Fixed issue #111.
- Fixed issue #76
- Added support for v201710.
- MapUtilities class was rewritten to use generics. New extension method ToDict() can be
used on MediaEntry[] fields to convert them into a Dictionary. See Miscellaneous\UploadImage.cs
for an example.
DFP:
- Fixed issue #117.
- Fixed issue #111.
Common:
-
22.2.0
======
AdWords:
- Removed support for v201609.
DFP:
- Added NodaTime support in DateTimeUtilities.
Common:
- Changes to logging implementation. By default the library logs to Console.Error instead of a
file.
22.1.1
======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/106
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/107
DFP:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/106
22.1.0
======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/105
DFP:
- Added support for v201708.
- Removed support for v201608.
- Removed examples for v201611.
22.0.0
======
AdWords:
- Migrated the backend to use WCF instead of System.Web.Services. See
https://github.com/googleads/googleads-dotnet-lib/wiki/Upgrading-your-client-library-to-v22.0.0
to learn more about upgrading your codebase to use the new client
library.
- Added support for v201708.
- Fixed a typo in the GetAllDisapprovedAdsWithAwql.cs code example.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/56
DFP:
- Migrated the backend to use WCF instead of System.Web.Services. See
https://github.com/googleads/googleads-dotnet-lib/wiki/Upgrading-your-client-library-to-v22.0.0
to learn more about upgrading your codebase to use the new client
library.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/56
Common:
-
21.2.0
======
AdWords:
- Updated the csproj to complete the assembly signing as a post-build
step.
- Updated the GetAllDisapprovedAds code example to use the new
CombinedApprovalStatus selector.
Removed GetTextAds example in v201705.
- Removed assembly signing for Google.AdWords.Examples.VB.exe and
Google.AdWords.Tests.dll binaries.
- Fixed an issue with how GraduateTrial example displayed its output.
- Regenerated the stub code for all API versions.
- Updated the GetAllDisapprovedAds example to use new selector field.
- Updated a few code examples and tests to remove outdated settings
and contact emails.
- Removed support for v201607.
- Upgraded OAuth2 code examples to use API version v201705.
- Assembly signing is now specified in csproj and vbproj. AdsApi.snk
is now part of the opensource distribution.
DFP:
- Updated the csproj to complete the assembly signing as a post-build
step.
- Regenerated the stub code for all API versions.
- Deleted unused TestUtils class.
Common:
- Updated the csproj to complete the assembly signing as a post-build
step.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/79
21.1.0
======
AdWords:
- Added support for v201705.
- Regenerated stubs for all versions.
- Fixed an issue with BatchJobUtilities when calling its methods from VB.NET on Mono.
DFP:
-
Common:
- Changed LogEntry method signatures to not depend on WebRequest or
WebResponse.
21.0.0
======
AdWords:
- Removed unused AdWordsErrorHandler and AdWordsCredentialsExpiredException
classes. These classes are no longer used for refreshing expired credentials.
AdsOAuthProvider classes refresh credentials before expiry.
DFP:
- Added support for v201705.
- Remove support for v201605.
- Removed v201608 examples.
- Regenerated service stubs to correct an enum consistency issue outlined in
#1.
Common:
- Removed CredentialsExpiredException. This exception was no longer used.
AdsOAuthProvider classes refresh credentials before expiry.
- Removed support for writing to deprecated log sources
AdsClientLibs.SoapXmlLogs and AdsClientLibs.RequestInfoLogs. These have been
replaced by AdsClientLibs.SummaryRequestLogs and
AdsClientLibs.DetailedRequestLogs, respectively. Logging levels have also
been adjusted as follows:
| Log type | Old level | New level |
|-------------------------------|---------------|---------------|
| SummaryRequestLogs (Success) | Information | Information |
| SummaryRequestLogs (Failure) | Error | Warning |
| DetailedRequestLogs (Success) | Information | Verbose |
| DetailedRequestLogs (Failure) | Error | Information |
20.0.0
=======
AdWords:
- Addressed https://github.com/googleads/googleads-dotnet-lib/issues/39. Added
parser for reading XML streams to strongly typed report row objects. Added
predefined report row objects for all reports under Report Definition Service.
- Removed support for v201605.
- Updated the AddSitelinksUsingFeeds to add Line2 and Line3 attributes for the
sitelinks.
DFP:
- Removed unused SOAP authentication header classes. OAuth authentication
tokens are only recognized in HTTP headers.
Common:
- Removed support for OAuth2 service account flow using .p12 file. As part of
this change,
- `OAuth2JwtCertificatePath`, `OAuth2JwtCertificatePassword` settings were
removed from `App.config`, `AppConfig` interface and classes that
implement this interface.
- `OAuth2PrivateKey` and `OAuth2ServiceAccountEmail` settings were made
readonly in `AppConfig` class and won't be read from `App.config`. These
settings will be read from the file pointed to by `OAuth2SecretsJsonPath`
setting.
19.1.0
=======
AdWords:
- ErrorUtilities class was removed. Use ApiError.GetOperationIndex() instead of
ErrorUtilities.GetOperationIndex.
- Added support for v201702
DFP:
- Regenerated DFP service stubs to fix potential unmarshalling error v201702.
Common:
-
19.0.1
=======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/97
DFP:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/97
Common:
-
19.0.0
=======
AdWords:
-
DFP:
- Added support for v201702.
- Removed support for v201602 (sunset).
- Removed examples for v201605 (deprecated).
Common:
- Changed minimum .NET Framework version to 4.5.2.
- Removed SerializationUtilities.LoadXml method. Use XmlUtilities.CreateDocument
method instead.
- Fixed a mono-specific crash that was introduced due to fix for
https://github.com/googleads/googleads-dotnet-lib/issues/95 in all libraries.
18.34.0
=======
AdWords:
-
DFP:
- Added support for v201611.
- Removed support for v201508 and v201511.
- Removed examples for v201602.
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/95 in all libraries.
18.33.0
=======
AdWords:
- Removed support for v201603.
- Regenerated all stubs for existing API versions.
- Added new code example for accepting a Merchant Center invite link.
- All code examples that create campaigns were updated to set the campaign's initial status
to PAUSED.
DFP:
-
Common:
- Added a DecompressedStream property to ReportResponse class to simplify working with gzipped
reports.
- Common library version was bumped to 3.17.0.0.
18.32.0
=======
AdWords:
- Added support for v201609.
DFP:
-
Common:
-
18.31.0
=======
AdWords:
- Removed support for v201601.
- Made UserAgent setting in App.config / Web.config optional. If not
specified, a default value of "unknown" will be used. If specified, this
should be an ASCII string.
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/1
DFP:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/1
Common:
- Common library version was bumped to 3.16.0.
18.30.0
=======
AdWords:
-
DFP:
- Added support for v201608.
- Removed support for v201505.
- Removed examples for v201508 and v201511.
Common:
-
18.29.1
=======
AdWords:
-
DFP:
-
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/92.
18.29.0
=======
AdWords:
- Added support for v201607.
- Updated AddCampaignTargetCriteria example in all versions to match the ones
in the other libraries.
- Updated the codebase to use CollectionUtilities where possible.
DFP:
-
Common:
-
18.28.0
=======
AdWords:
- Removed support for v201509.
- Fixed AddResponsiveDisplayAd example to send only the media ID when creating the ad.
DFP:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/86.
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/87.
18.27.0
=======
AdWords:
- Added support for v201605.
DFP:
-
Common:
- Common library version was bumped to 3.15.0.
18.26.1
=======
AdWords:
- Fixed dependency issue in
https://github.com/googleads/googleads-dotnet-lib/issues/85.
DFP:
- Fixed dependency issue in
https://github.com/googleads/googleads-dotnet-lib/issues/85.
Common:
-
18.26.0
=======
AdWords:
- Updated the AddCrmBasedUserList code examples to use BouncyCastle.
DFP:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/83.
- Added support for v201605.
- Added examples for v201605.
- Removed support for v201502.
- Removed examples for v201505.
Common:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/84.
- Added [Bouncy Castle](https://www.nuget.org/packages/BouncyCastle/) as a dependency.
- Modified P12 handling code to use Bouncy Castle, resolves
https://github.com/googleads/googleads-dotnet-lib/issues/75.
- Added support for using JSON secrets file when authenticating accounts using OAuth2 service
accounts. The JSON secrets file may be specified using the `OAuth2SecretsJsonPath` key in
`App.config / Web.config` file or in the AppConfig class. If `OAuth2SecretsJsonPath` setting is
specified, then the client library will ignore the settings in `OAuth2ServiceAccountEmail`,
`OAuth2JwtCertificatePath` and `OAuth2JwtCertificatePassword` settings. `OAuth2SecretsJsonPath` is
now the default mechanism for providing credentials for service account flow.
`OAuth2ServiceAccountEmail`, `OAuth2JwtCertificatePath` and `OAuth2JwtCertificatePassword`
settings have been marked as deprecated.
18.25.0
======
AdWords:
- Removed support for v201506.
DFP:
-
Common:
-
18.24.0
======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/78.
- Added support for v201603.
- Added a constructor for AdWordsUser that accepts an AdWordsAppConfig instance.
DFP:
-
Common:
- Set EnableSoapExtension setting's default value to true. This restores the original behaviour
of the library where logging is only dependent on the Trace filters by default.
18.23.0
======
AdWords:
- Fixed https://github.com/googleads/googleads-dotnet-lib/issues/74.
DFP:
- Added support for v201602.
- Removed support for v201411.
- Removed examples for v201502.
Common:
- Fixed a bug causing EnableSoapExtension to be ignored.
18.22.0
=======
AdWords:
- Added support for v201601.
- Updated BatchJobUtilities to use the new resumable URL. Added a flag to
disable chunked upload. Increased the default chunk size to 32MB.
- Fixed GetAccountHierarchy example to use paging.
- Enhanced various utilities to include identifier in user agent.
AdXBuyer:
- Removed code examples, tests and wiki entries.
DFP:
-
Common:
- Added EnableSoapExtension property to App.config to fix issue #70.
(https://github.com/googleads/googleads-dotnet-lib/issues/70)
- Made AppConfig.Proxy a writable property.
- Added support to include utilities identifier in user agent. This feature
may be controlled using the IncludeUtilitiesInUserAgent setting in App.config.
18.21.0
======
AdWords:
- Updated Web.config to replace "MCC" with "AdWords manager account".
- Fixed a few more instances of old Paging logic with the new Paging.Default
code.
- Fixed a paging bug in OAuth\ConsoleExample.cs.
(https://github.com/googleads/googleads-dotnet-lib/issues/66)
- Fixed a paging bug in AddAdGroups.vb.
(https://github.com/googleads/googleads-dotnet-lib/issues/65)
- Fixed the AddSitelinks code example to check for end dates in the past
(https://github.com/googleads/googleads-dotnet-lib/issues/64)
- Fixed the GetKeywordBidSimulations code example to check for infinite loop
when there are no results.
(https://github.com/googleads/googleads-dotnet-lib/issues/63)
- Fixed the GetProductCategoryTaxonomy code example to fix an incorrect
condition check for adding product category taxonomies to a dictionary.
(https://github.com/googleads/googleads-dotnet-lib/issues/62)
- Fixed the AddCrmBasedUserList code example to update the membershipLifeSpan
field. (https://github.com/googleads/googleads-dotnet-lib/issues/61)
AdXBuyer:
-
DFA:
-
DFP:
-
Common:
-
18.20.0
=======
AdWords:
- Added support for ProductPartitionTree utility. See
https://github.com/googleads/googleads-dotnet-lib/wiki/Working-with-ProductPartitionTrees for
usage details. (https://github.com/googleads/googleads-dotnet-lib/issues/60)
- Fixed a stack overflow error in BatchJobUtilities.cs.
(https://github.com/googleads/googleads-dotnet-lib/issues/59)
- Added support for FeedValidationErrors.
(https://github.com/googleads/googleads-dotnet-lib/issues/19)
- Added more friendly messages for AdWordsApiException
(https://github.com/googleads/googleads-dotnet-lib/issues/5)
- Fixed a compilation issue with Google.AdWords.Examples.CSharp nuget package.
(https://github.com/googleads/googleads-dotnet-lib/issues/58)
AdXBuyer:
-
DFP:
-
Common:
- Added an TemporaryIdGenerator class that generates a sequence of IDs to be
used with various services that accept temporary IDs (e.g. Product Partition
trees and Batch Jobs in AdWords API).
- Added a Clone() method to SerializationUtilities. This method may be used
to perform a deep clone of objects that are XmlSerializable.
18.19.0
=======
AdWords:
-
AdXBuyer:
-
DFP:
- Added support for v201511.
- Removed support for v201408.
- Removed examples for v201411.
Common:
-
18.18.0
=======
AdWords:
- Removed support for AdWords API v201502.
- Updated the BatchJobUtilities class to use resumable upload.
- Fixed some code examples that were using v201502 to use a newer version of
the API.
- Added a code example that shows how to stream a report and process it.
- Updated the GetKeywords example to match the rest of the client library examples.
AdXBuyer:
- Removed support for AdWords API v201502.
- Fixed some code examples that were using v201502 to use a newer version of
the API.
DFA:
- Removed support for the legacy DFA API.
DFP:
-
Common:
- A new HTTPUtilities class was introduced, and all the utility classes were
updated to use this class for creating an HTTP connection.
18.17.0
=======
AdWords:
- Fixed the display message in RemoveAdGroup examples to match what the example does.
- Generated stub code now lists all the selector fields.
- All code examples have been updated to use the new selector fields property.
- Utility methods have been added to Predicate, Selector and OrderBy classes
so you can write more concise code when iterating through objects.
- Added support for v201509.
AdXBuyer:
- Generated stub code now lists all the selector fields.
- All code examples have been updated to use the new selector fields property.
- Utility methods have been added to Predicate, Selector and OrderBy classes
so you can write more concise code when iterating through objects.
- Added support for v201509.
DFP:
- Minor bug fixes to v201508 examples.
18.16.0
=======
All:
- Removed Author and Tag entries from all the source files.
- Cleaned up the code to fix several broken doc tags and standardize variable names.
- Updated README file with Logging and OAuth2 instructions.
AdWords:
- Stub code for all the API versions were regenerated.
- Stub code now contains documentation from the WSDL files. This allows you to see documentation
as part of auto complete from within Visual Studio.
AdXBuyer:
- Stub code for all the API versions were regenerated.
- Stub code now contains documentation from the WSDL files. This allows you to see documentation
as part of auto complete from within Visual Studio.
- Fixed several broken tests.
DFA:
-
DFP:
- Stub code for all the API versions were regenerated.
- Stub code now contains documentation from the WSDL files. This allows you to see documentation
as part of auto complete from within Visual Studio.
- Removed support for v201403 and v201405.
- Removed examples for v201408.
- Added support for v201508.
- Added ReconciliationLineItemReportService.
Common:
- Common library version was bumped to 3.9.0.0
18.15.0
=======
AdWords:
- Removed support for v201409.
AdXBuyer:
-
DFA:
-
DFP:
-
Common:
-
18.14.0
=======
AdWords:
- Fixed [issue 48](https://github.com/googleads/googleads-dotnet-lib/issues/48)
AdXBuyer:
-
DFA:
-
DFP:
- Minor updates to some example comments and print statements.
Common:
-
18.13.0
=======
AdWords:
- Added support for AdWords API v201506.
- Added support for includeZeroImpressions HTTP header in ReportUtilites class. This header may be
controlled using the new IncludeZeroImpressions setting in App.config / Web.config. See the
Reporting code examples in v201506 for more details on how to use this feature.
- AddCampaignTargetingCriteria example accepts an optional feedId in v201506. This is required
when creating LocationGroups criteria for distance targeting.
- AddGoogleMyBusinessLocationExtensions example was enhanced in v201506 to reuse the AdWords API
access token to handle the most common case where GMB and AdWords accounts share the same login
email.
- Enhanced ExampleUtilities class to handle Nullable arguments.
AdXBuyer:
-
DFA:
-
DFP:
-
Common:
- Fixed the namespace for Common\Util\PreconditionUtilities.cs class.
18.12.0
=======
AdWords:
- No changes.
AdXBuyer:
- No changes.
DFA:
- No changes.
DFP:
- Added support for v201505.
- Updated report utility to use the new getReportJobStatus method.
- Added advanced ProposalLineItem actions.
- Updated DateTimeUtilities to require time zone IDs.
- Removed v201405 examples.
Common:
- Removed support for ClientLogin.
18.11.0
=======
AdWords:
- Removed support for v201406.
- Removed support for legacy ReportUtilities.
- Fixed issue 44.
- Added support for SkipColumnHeader setting in ReportUtilities.
- Updated the Feed examples to use functionString instead of MatchingFunction.
- Updated MigrateToExtensionSettings code example to handle platform restrictions.
- Fixed the AddSitelinks code example to use the account's timezone.
- Published two new solutions.
- Budget Utilization report shows your campaigns' budget utilization. This may be used to
reallocate your campaign budgets.
- GetNewKeywords shows how to research for new keywords based on input from multiple data