-
Notifications
You must be signed in to change notification settings - Fork 671
/
CHANGELOG.md
6266 lines (5196 loc) · 358 KB
/
CHANGELOG.md
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
# 1.72.0-beta0(Nov 27, 2024)
Features
* Support for Db2 SaaS
- **Resources**
- ibm_db2
- **Datasources**
- ibm_db2
* Support for IAM
- **Datasources**
- ibm_iam_effective_account_settings
* Support for MQaaS
- **Datasources**
- ibm_mqcloud_virtual_private_endpoint_gateway
* Support for VPC
- **Datasources**
- ibm_is_cluster_network
- ibm_is_cluster_networks
- ibm_is_cluster_network_interface
- ibm_is_cluster_network_interfaces
- ibm_is_cluster_network_profile
- ibm_is_cluster_network_profiles
- ibm_is_cluster_network_subnet
- ibm_is_cluster_network_subnets
- ibm_is_cluster_network_subnet_reserved_ip
- ibm_is_cluster_network_subnet_reserved_ips
- ibm_is_instance_cluster_network_attachment
- ibm_is_instance_cluster_network_attachments
- **Resources**
- ibm_is_cluster_network_interface
- ibm_is_cluster_network_subnet_reserved_ip
- ibm_is_cluster_network_subnet
- ibm_is_cluster_network
- ibm_is_instance_cluster_network_attachment
Enhancements
* Add version validation ([5791](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5791))
* Refactor shared-processor-pool resource ([5796](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5796))
* Refactor Cloud Connection Network Attach ([5781](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5781))
* Import a resource provisioned with key_protect_id and key_protect_instance attributes set ([5798](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5798))
* enable commit while creating template/version ([5797](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5797))
* ListClassicWorkers => ListAllWorkers ([5784](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5784))
* chore: update mirroring example doc ([5767](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5767))
* Update resource_instance.html.markdown ([5806](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5806))
* fix(cloud-databases): Refactor tests Part 1 ([5810](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5810))
* feat(BM-Reservations-Automatic-Attachment): Baremetal Server Reservations and Reservations Automatic Attachment ([5805](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5805))
* Support enable secure-by-default ([5751](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5751))
* Added support for volume_prototypes on ibm_is_instance resource ([5777](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5777))
* ODF 4.16 terraform support ([5789](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5789))
* Add Chenai to the doc ([5813](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5813))
* ibm_pag_instance should force a new instance when parameters_json are updated ([5807](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5807))
BugFixes
* ICD: Promote read replicas ([5738](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5738))
* docs(pps): Remove SA notes fpr private path service gateway feature ([5788](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5788))
* Fix sap profile datasource warning ([5779](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5779))
* fixed documents for is datasources ([5782](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5782))
* fix: eventstreams sarama clientid ([5802](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5802))
* fix(ibm_is_image): 404 error fix on datasource ([5769](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5769))
* fix(ibm_is_share): 404 error fix on datasource ([5770](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5770))
* fix(ibm_is_snapshot): 404 error fix on datasource ([5771](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5771))
* vol fix for snapshot crn ([5815](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5815))
* fix: adjust validation for Code Engine application scale_concurrency_target ([5792](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5792))
# 1.71.3(Nov 26, 2024)
Bugfixes
* fix: HOT FIX to include properties from issue 5579 ([5818](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5818))
# 1.71.2(Nov 15, 2024)
Bugfixes
* Tags support config aggregator & Bug fix for settings api ([5783](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5783))
* fix(partner center sell): fix patch nested fields ([5785](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5785))
# 1.71.1(Nov 07, 2024)
Bugfixes
* Add error if image not found ([5730](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5730))
* fix(lb): fix for lb data source collection ([5763](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5763))
* 404 error fix on ibm_is_virtual_network_interface_floating_ip datasource ([5762](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5762))
* LB profile datasource access mode value support ([5773](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5773))
# 1.71.0
Features
* Support Power System
- **Resources**
- ibm_pi_network_interface
- ibm_pi_storage_tiers
- ibm_pi_network_address_group
- ibm_pi_network_address_group_member
- ibm_pi_network_security_group_action
- ibm_pi_network_security_group_member
- ibm_pi_network_security_group_rule
- ibm_pi_network_security_group
- **Datasources**
- ibm_pi_network_interface
- ibm_pi_network_interfaces
- ibm_pi_volume_snapshot
- ibm_pi_volume_snapshots
- ibm_pi_network_address_group
- ibm_pi_network_address_groups
- ibm_pi_network_security_group
- ibm_pi_network_security_groups
* Support Event Notification
- **Resources**
- ibm_en_webhook_template
- **Datasources**
- ibm_en_webhook_template
* Support Event Streams
- **Resources**
- ibm_event_streams_quota
- ibm_event_streams_schema_global_rule
- ibm_event_streams_mirroring_config
- **Datasources**
- ibm_event_streams_quota
- ibm_event_streams_schema_global_rule
- ibm_event_streams_mirroring_config
* Support VPC
- **Datasources**
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway_account_policies
- ibm_is_private_path_service_gateways
- ibm_is_private_path_service_gateway_endpoint_gateway_binding
- ibm_is_private_path_service_gateway_endpoint_gateway_bindings
- **Resources**
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_revoke_account
- ibm_is_private_path_service_gateway_endpoint_gateway_binding_operations
- ibm_is_private_path_service_gateway_operations
Enhancements
* Granular CRN for images ([5646](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5646))
* Granular CRN for instance resources ([5647](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5647))
* granular CRN for volumes ([5651](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5651))
* Add GRS for volume data sources ([5671](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5671))
* Add GRS Attributes/Arguments to pi_volume resource ([5668](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5668))
* Add replication_pool_map to disaster recovery data sources ([5664](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5664))
* Add GRS ([5665](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5665))
* Add source checksum field to image data source ([5663](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5663))
* Add datacenter capability details ([5666](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5666))
* Update Storage Connection ([5667](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5667))
* Add support_systems for sap profile ([5670](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5670))
* Add GRS attributes to pi volume group data sources and related ([5673](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5673))
* Update documentation for ibm_resource_tag ([5700](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5700))
* Add Workspace NSG ([5727](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5727))
* Update database.html.markdown ([5717](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5717))
* Update partnercentersell service ([5721](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5721))
* add orphan_resource_on_delete argument to worker pool resources ([5705](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5705))
* Tekton pipeline re-generated with latest SDK generator ([5715](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5715))
* Added support for vpn gateway connection distribute traffic ([5733](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5733))
* feat(PPS): Add support for private path service gateway and private path load balancer ([5712](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5712))
* Added support for defined_performance changes in is_volume ([5694](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5694))
* feat(routing-table-crn): UI 37487 routing table crn and SDK migration PR ([5708](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5708))
* feat: CBR regenerate provider ([5724](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5724))
* added support for identifier in volume datasource ([5742](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5742))
* re-ordered catalog offering on is_snapshot(s) ([5741](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5741))
* fix on vpn gateway connection ([5737](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5737))
* update kp operations to use flex logger ([5732](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5732))
* ibm_container_vpc_worker_pool - remove Computed for secondary_storage property ([5720](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5720))
* Ended IBM cloud functions support as Event Notifications destination ([5755](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5755))
* Enhance partnercentersellv1 ([5747](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5747))
* fix(toolchain): adopt new error formats ([5756](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5756))
* fix: bump continuous delivery Go SDK version ([5759](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5759))
* Routing table tags support ([5750](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5750))
* Deprecate classic_access on ibm_is_vpc ([5760](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5760))
Bugfixes
* Fix Config Aggregator ([5723](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5723))
* fix rule_group resource panic ([5744](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5744))
* App config bug fix ([5748](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5748))
* fix(EGW): avoid tainting endpoint gateway on timeout when the target PPSG has the access policy as review ([5752](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5752))
* fix(ALB): Fix for ALB creation do not send private path false in request for alb ([5758](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5758))
* [scc] Failure when attempting to update schedule for resource ibm_scc_profile_attachment ([5718](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5718))
# 1.71.0-beta1(Oct 27, 2024)
Features
* Support Power System
- **Resources**
- ibm_pi_network_interface
- ibm_pi_storage_tiers
- ibm_pi_network_address_group
- ibm_pi_network_address_group_member
- ibm_pi_network_security_group_action
- ibm_pi_network_security_group_member
- ibm_pi_network_security_group_rule
- ibm_pi_network_security_group
- **Datasources**
- ibm_pi_network_interface
- ibm_pi_network_interfaces
- ibm_pi_volume_snapshot
- ibm_pi_volume_snapshots
- ibm_pi_network_address_group
- ibm_pi_network_address_groups
- ibm_pi_network_security_group
- ibm_pi_network_security_groups
* Support Event Notification
- **Resources**
- ibm_en_webhook_template
- **Datasources**
- ibm_en_webhook_template
* Support Event Streams
- **Resources**
- ibm_event_streams_quota
- ibm_event_streams_schema_global_rule
- ibm_event_streams_mirroring_config
- **Datasources**
- ibm_event_streams_quota
- ibm_event_streams_schema_global_rule
- ibm_event_streams_mirroring_config
* Support VPC
- **Datasources**
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway_account_policies
- ibm_is_private_path_service_gateways
- ibm_is_private_path_service_gateway_endpoint_gateway_binding
- ibm_is_private_path_service_gateway_endpoint_gateway_bindings
- **Resources**
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_revoke_account
- ibm_is_private_path_service_gateway_endpoint_gateway_binding_operations
- ibm_is_private_path_service_gateway_operations
Enhancements
* Granular CRN for images ([5646](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5646))
* Granular CRN for instance resources ([5647](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5647))
* granular CRN for volumes ([5651](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5651))
* Add GRS for volume data sources ([5671](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5671))
* Add GRS Attributes/Arguments to pi_volume resource ([5668](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5668))
* Add replication_pool_map to disaster recovery data sources ([5664](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5664))
* Add GRS ([5665](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5665))
* Add source checksum field to image data source ([5663](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5663))
* Add datacenter capability details ([5666](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5666))
* Update Storage Connection ([5667](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5667))
* Add support_systems for sap profile ([5670](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5670))
* Add GRS attributes to pi volume group data sources and related ([5673](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5673))
* Update documentation for ibm_resource_tag ([5700](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5700))
* Add Workspace NSG ([5727](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5727))
* Update database.html.markdown ([5717](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5717))
* Update partnercentersell service ([5721](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5721))
* add orphan_resource_on_delete argument to worker pool resources ([5705](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5705))
* Tekton pipeline re-generated with latest SDK generator ([5715](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5715))
* Added support for vpn gateway connection distribute traffic ([5733](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5733))
* feat(PPS): Add support for private path service gateway and private path load balancer ([5712](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5712))
* Added support for defined_performance changes in is_volume ([5694](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5694))
* feat(routing-table-crn): UI 37487 routing table crn and SDK migration PR ([5708](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5708))
* feat: CBR regenerate provider ([5724](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5724))
* added support for identifier in volume datasource ([5742](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5742))
* re-ordered catalog offering on is_snapshot(s) ([5741](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5741))
* fix on vpn gateway connection ([5737](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5737))
* update kp operations to use flex logger ([5732](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5732))
Bugfixes
* Fix Config Aggregator ([5723](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5723))
* fix rule_group resource panic ([5744](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5744))
Features
* Support Power System
- **Resources**
- ibm_pi_network_interface
- ibm_pi_storage_tiers
- ibm_pi_network_address_group
- ibm_pi_network_address_group_member
- ibm_pi_network_security_group_action
- ibm_pi_network_security_group_member
- ibm_pi_network_security_group_rule
- ibm_pi_network_security_group
- **Datasources**
- ibm_pi_network_interface
- ibm_pi_network_interfaces
- ibm_pi_volume_snapshot
- ibm_pi_volume_snapshots
- ibm_pi_network_address_group
- ibm_pi_network_address_groups
- ibm_pi_network_security_group
- ibm_pi_network_security_groups
* Support Event Streams
- **Resources**
- ibm_event_streams_quota
- **Datasources**
- ibm_event_streams_quota
* Support VPC
- **Datasources**
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway_account_policies
- ibm_is_private_path_service_gateways
- ibm_is_private_path_service_gateway_endpoint_gateway_binding
- ibm_is_private_path_service_gateway_endpoint_gateway_bindings
- **Resources**
- ibm_is_private_path_service_gateway_account_policy
- ibm_is_private_path_service_gateway
- ibm_is_private_path_service_gateway_revoke_account
- ibm_is_private_path_service_gateway_endpoint_gateway_binding_operations
- ibm_is_private_path_service_gateway_operations
Enhancements
* Granular CRN for images ([5646](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5646))
* Granular CRN for instance resources ([5647](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5647))
* granular CRN for volumes ([5651](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5651))
* Add GRS for volume data sources ([5671](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5671))
* Add GRS Attributes/Arguments to pi_volume resource ([5668](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5668))
* Add replication_pool_map to disaster recovery data sources ([5664](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5664))
* Add GRS ([5665](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5665))
* Add source checksum field to image data source ([5663](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5663))
* Add datacenter capability details ([5666](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5666))
* Update Storage Connection ([5667](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5667))
* Add support_systems for sap profile ([5670](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5670))
* Add GRS attributes to pi volume group data sources and related ([5673](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5673))
* Update documentation for ibm_resource_tag ([5700](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5700))
* Add Workspace NSG ([5727](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5727))
* Update database.html.markdown ([5717](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5717))
* Update partnercentersell service ([5721](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5721))
* add orphan_resource_on_delete argument to worker pool resources ([5705](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5705))
* Tekton pipeline re-generated with latest SDK generator ([5715](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5715))
* Added support for vpn gateway connection distribute traffic ([5733](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5733))
* feat(PPS): Add support for private path service gateway and private path load balancer ([5712](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5712))
* Added support for defined_performance changes in is_volume ([5694](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5694))
* feat(routing-table-crn): UI 37487 routing table crn and SDK migration PR ([5708](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5708))
Bugfixes
* Fix Config Aggregator ([5723](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5723))
# 1.70.1 (Oct 19, 2024)
BugFixes
* Fix test bucket endpoints ([5695](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5695))
# 1.70.0 (Oct 06, 2024)
Breaking Changes
* update(cloud-databases): Make Service Endpoints as Required argument([5615](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5615))
Features
* Support IAM Access tag
- **Resources**
- ibm_iam_access_tag
* Support VPC
- **Resources**
- ibm_is_subnet_reserved_ip_patch
* Support code Engine
- **Resources**
- ibm_code_engine_function
* Support Configuration Aggregator
- **Resources**
- ibm_config_aggregator_settings
- **Datasources**
- ibm_config_aggregator_configurations
- ibm_config_aggregator_settings
- ibm_config_aggregator_resource_collection_status
Enhancements
* add service_to_service_enabled field to atracker event streams endpoint ([5605](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5605))
* Deprecated ibm_resource_access_tag and replaced it with ibm_iam_access_tag ([5567](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5567))
* SM New error formatting + crypto_key label name changes ([5562](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5562))
* Deprecating alias and bindings APIs and schema items ([5612](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5612))
* update(cloud-databases): Make Service Endpoints Required and send warning when public endpoints are in use ([5402](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5402))
* discourage use of ibm_container_bind_service ([5588](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5588))
* updated resources, data source and documentation for Slack Direct destination support ([5615](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5615))
* IAM Policy Assignment: S2S Policy Assignments ET and AG ([5624](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5624))
* fix for context and history parameter of template assignment ([5640](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5640))
* Updating to latest schematics sdk and updating sch_agent resource to enable force deletion by default ([5660](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5660))
* add support for 4th zone ([5644](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5644))
* add support for CRN attribute for Power Network ([5649](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5649))
* add support for CRN attribute for Power Shared Processor ([5650](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5650))
* add support for CRN attribute for Power Snapshot ([5650](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5650))
* Secrets Manager IAM credentials secrets with S2S ([5678](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5678))
* fix: update error diagnostic reporting in existing Event Streams code ([5685](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5685))
* feat(Catalog Management): support new offering version limit ([5688](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5688))
* sch Agent resource updated to accommodate agent destroy resources ([5691](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5691))
* feat(tekton): add support for fork feature ([5693](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5693))
BugFixes
* The ibm_resource_tag do not detach if tag_type is access or service ([5566](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5566))
* fix(is_share): added empty check and moved source_share_crn outside ([5632](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5632))
* Add test bucket endpoints ([5636](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5636))
* The ibm_resource_tag does not check the response on api tags calls ([5641](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5641))
* Fix incorrect handling of trusted profile static CRN identities ([5681](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5681))
* Fix multibyte character and optional attributes fix for Cloud logs ([5679](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5679))
* fix(lb-pool-member): Add a nil check before accessing member weight ([5682](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5682))
* Fix unicode characters for name fields in cloud logs resources ([5698](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5698))
# 1.70.0-beta0(Sep 22, 2024)
Breaking Changes
* update(cloud-databases): Make Service Endpoints as Required argument([5615](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5615))
Features
* Support IAM Access tag
- **Resources**
- ibm_iam_access_tag
* Support VPC
- **Resources**
- ibm_is_subnet_reserved_ip_patch
* Support code Engine
- **Resources**
- ibm_code_engine_function
Enhancements
* add service_to_service_enabled field to atracker event streams endpoint ([5605](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5605))
* Deprecated ibm_resource_access_tag and replaced it with ibm_iam_access_tag ([5567](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5567))
* SM New error formatting + crypto_key label name changes ([5562](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5562))
* Deprecating alias and bindings APIs and schema items ([5612](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5612))
* update(cloud-databases): Make Service Endpoints Required and send warning when public endpoints are in use ([5402](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5402))
* discourage use of ibm_container_bind_service ([5588](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5588))
* updated resources, data source and documentation for Slack Direct destination support ([5615](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5615))
* IAM Policy Assignment: S2S Policy Assignments ET and AG ([5624](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5624))
* fix for context and history parameter of template assignment ([5640](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5640))
* Updating to latest schematics sdk and updating sch_agent resource to enable force deletion by default ([5660](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5660))
* add support for 4th zone ([5644](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5644))
BugFixes
* The ibm_resource_tag do not detach if tag_type is access or service ([5566](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5566))
* fix(is_share): added empty check and moved source_share_crn outside ([5632](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5632))
* Add test bucket endpoints ([5636](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5636))
* The ibm_resource_tag does not check the response on api tags calls ([5641](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5641))
# 1.69.2(Sep 13, 2024)
* Add region parameter to logs-routing resources and data sources ([5634](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5634))
* fix(is_share): added empty check and moved source_share_crn outside ([5632](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5632))
# 1.69.1(Sep 10, 2024)
BugFixes
* BUG: 1.69.0 panic when attempting to update ibm_resource_instance ([5618](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5618))
* fix: unexpected topic state change and acceptance test ([5620](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5620))
* docs: add missing target_type from ibm_atracker_target documentation ([5627](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5627))
* wait_till for Classic Clusters data source is not working (ibm_container_cluster) ([5611](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5611))
* ibm_is_instance for catalog images is not allowing vsi creation with VNI ([5629](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5629))
* Updated documents for vpn gateway connection ([5628](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5628))
# 1.69.0(Sep 04, 2024)
Features
* Support Cloud Logs Routing
- **Datasources**
- ibm_logs_router_tenant
- **Resources**
- ibm_logs_router_tenants
- ibm_logs_router_targets
* Support EN
- **Datasources**
- ibm_en_metrics
- ibm_en_smtp_allowed_ips
* Support Partner Center Sell
- **Resources**
- ibm_onboarding_registration
- ibm_onboarding_product
- ibm_onboarding_iam_registration
- ibm_onboarding_catalog_product
- ibm_onboarding_catalog_plan
- ibm_onboarding_catalog_deployment
- ibm_onboarding_resource_broker
Enhancements
* Deprecate `force_delete` attribute of ibm_kms_rings ([5539](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5539))
* feat(tekton): Add support for CEL filtering ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* PKI HSM Addition ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* updated error messages for catalog service ([5553](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5553))
* feat(CIS): Origin Post Quantum Encryption and Max HTTP Version ([5504](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5504))
* refactor of instance network attachment reference to use vni ([5563](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5563))
* Update storage types docs ([5569](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5569))
* Force delete subresources during kmip_adapter destroy, avoid casting panics ([5565](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5565))
* Add support for retry of deletion of resource group ([5537](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5537))
* Remove beta for logs service docs ([5581](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5581))
* feat: document tagging and enhanced metrics ([5604](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5604))
* move wait_till logic into function, integrate it into cluster datasource ([5540](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5540))
BugFixes
* fix(docs): doc section fix for share accessor binding data sources ([5559](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5559))
* Fix panics on alerts resource ([5561](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5561))
* ibm_is_lb: Total provision time too long ([5523](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5523))
* ibm_pi_image docs should link to the catalog images ibm_pi_catalog_images ([5047](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5047))
* Resource controller can't able to update service-endpoint for event-stream instance ([5568](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5568))
* The terraform-provider-ibm_v1.68.1 plugin crashed when trying to update Code Engine Secrets ([5582](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5582))
* ibm_scc_profile_attachment does not update attachment parameters ([5535](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5535))
* fix: wait for async instance update ([5601](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5601))
* Updated ibm_is_subnet_reserved_ip docs ([5606](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5606))
# 1.69.0-beta1 (Aug 31, 2024)
Features
* Support Cloud Logs Routing
- **Datasources**
- ibm_logs_router_tenant
- **Resources**
- ibm_logs_router_tenants
- ibm_logs_router_targets
* Support EN
- **Datasources**
- ibm_en_metrics
- ibm_en_smtp_allowed_ips
* Support Partner Center Sell
- **Resources**
- ibm_onboarding_registration
- ibm_onboarding_product
- ibm_onboarding_iam_registration
- ibm_onboarding_catalog_product
- ibm_onboarding_catalog_plan
- ibm_onboarding_catalog_deployment
- ibm_onboarding_resource_broker
Enhancements
* Deprecate `force_delete` attribute of ibm_kms_rings ([5539](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5539))
* feat(tekton): Add support for CEL filtering ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* PKI HSM Addition ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* updated error messages for catalog service ([5553](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5553))
* feat(CIS): Origin Post Quantum Encryption and Max HTTP Version ([5504](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5504))
* refactor of instance network attachment reference to use vni ([5563](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5563))
* Update storage types docs ([5569](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5569))
* Force delete subresources during kmip_adapter destroy, avoid casting panics ([5565](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5565))
* Add support for retry of deletion of resource group ([5537](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5537))
* Remove beta for logs service docs ([5581](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5581))
BugFixes
* fix(docs): doc section fix for share accessor binding data sources ([5559](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5559))
* Fix panics on alerts resource ([5561](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5561))
* ibm_is_lb: Total provision time too long ([5523](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5523))
* ibm_pi_image docs should link to the catalog images ibm_pi_catalog_images ([5047](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5047))
* Resource controller can't able to update service-endpoint for event-stream instance ([5568](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5568))
* The terraform-provider-ibm_v1.68.1 plugin crashed when trying to update Code Engine Secrets ([5582](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5582))
* ibm_scc_profile_attachment does not update attachment parameters ([5535](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5535))
# 1.69.0-beta0 (Aug 22, 2024)
Features
* Support Cloud Logs Routing
- **Datasources**
- ibm_logs_router_tenant
- **Resources**
- ibm_logs_router_tenants
- ibm_logs_router_targets
* Support EN
- **Datasources**
- ibm_en_metrics
- ibm_en_smtp_allowed_ips
Enhancements
* Deprecate `force_delete` attribute of ibm_kms_rings ([5503](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5503))
* feat(tekton): Add support for CEL filtering ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* PKI HSM Addition ([5531](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5531))
* updated error messages for catalog service ([5553](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5553))
* feat(CIS): Origin Post Quantum Encryption and Max HTTP Version ([5504](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5504))
* refactor of instance network attachment reference to use vni ([5563](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5563))
BugFixes
* fix(docs): doc section fix for share accessor binding data sources ([5559](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5559))
* Fix panics on alerts resource ([5561](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5561))
* ibm_is_lb: Total provision time too long ([5523](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5523))
# 1.68.1 (Aug 12, 2024)
BugFixes
* Fix code engine job regression ([5545](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5545))
* Update(Cloud-Databases): Added hints for region and location mismatches ([5557](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5557))
* fix(Cloud-Databases): Remove deprecated connectionstrings attribute ([5554](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5554))
* remove the return value from waitForVpcCluster ([5557](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5557))
* fix: read endpoint type from schema ([5552](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5552))
# 1.68.0 (Aug 04, 2024)
Features
* Support CBR
- **Datasources**
- ibm_cbr_zone_addresses
- **Resources**
- ibm_cbr_zone_addresses
* Support CIS
- **Datasources**
- ibm_cis_origin_certificates
- **Resources**
- ibm_cis_advanced_certificate_pack_order
- ibm_cis_origin_certificate_order
* Support VPC
- **Resources**
- ibm_is_bare_metal_server_initialization
Enhancements
* Add dhcp network support for stratos ([5503](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5503))
* IAM Policy Assignment: S2S Policy Assignments ([5499](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5499))
* Code Engine Provider and Documentation Update ([5347](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5347))
* move wait_till logic into function, integrate it into vpc_cluster datasource ([5476](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5346))
* Remove hardcoded values for private and direct cos config endpoint ([5484](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5484))
* feat(bm-dynamic-bandwidth): Support for bandwidth in bare metal ([5493](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5493))
* Doc update for ODF ([5454](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5454))
* feat(fs-cross-account): Support for file share cross account access ([5510](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5510))
* feat Bm firmware update ([5519](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5519))
* Changing the documentation for SCC ([5456](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5456))
* feat(lb-parameterized-redirect): Update doc to specify parameterized url redirect ([5521](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5521))
* chore(Cloud-Databases): Remove Datastax ([5511](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5511))
* feat(ResourceController): Added onetime_credentials to ResourceInstance and ResourceKey read schemas ([5532](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5532))
* Add PhysicalAddress and CapabilitiesManagedBySatellite to Terraform SatelliteLocation ([5530](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5530))
* Added support for bm reinitialization ([5520](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5520))
BugFixes
* fix(CIS): updating managed ruleset documents ([5488](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5488))
* fix(ins-keys): Make VSI keys optional ([5518](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5518))
* fix(is-volume): Set catalogoffering computed attribute empty list ([5514](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5514))
* add import_on_create param to ibm_container_vpc_worker_pool doc ([5506](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5506))
* [Doc]Update Doc for E1080 Support ([5536](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5536))
* Fix(iam-identity):trusted profile templates ([5440](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5440))
* S2S documentation note for ibm_kms_key and minor linting fixes ([5529](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5529))
# 1.68.0-beta0 (July 23, 2024)
Features
* Support CBR
- **Datasources**
- ibm_cbr_zone_addresses
- **Resources**
- ibm_cbr_zone_addresses
* Support CIS
- **Datasources**
- ibm_cis_origin_certificates
- **Resources**
- ibm_cis_advanced_certificate_pack_order
- ibm_cis_origin_certificate_order
Enhancements
* Add dhcp network support for stratos ([5503](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5503))
* IAM Policy Assignment: S2S Policy Assignments ([5499](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5499))
* Code Engine Provider and Documentation Update ([5347](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5347))
* move wait_till logic into function, integrate it into vpc_cluster datasource ([5476](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5346))
* Remove hardcoded values for private and direct cos config endpoint ([5484](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5484))
* feat(bm-dynamic-bandwidth): Support for bandwidth in bare metal ([5493](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5493))
* Doc update for ODF ([5454](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5454))
* feat(fs-cross-account): Support for file share cross account access ([5510](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5510))
* feat Bm firmware update ([5519](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5519))
* Changing the documentation for SCC ([5456](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5456))
* feat(lb-parameterized-redirect): Update doc to specify parameterized url redirect ([5521](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5521))
BugFixes
* fix(CIS): updating managed ruleset documents ([5488](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5488))
* fix(ins-keys): Make VSI keys optional ([5518](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5518))
* fix(is-volume): Set catalogoffering computed attribute empty list ([5514](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5514))
* add import_on_create param to ibm_container_vpc_worker_pool doc ([5506](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5506))
# 1.67.1 (July 05, 2024)
BugFixes
* Error: The terraform-provider-ibm_v1.67.0 plugin crashed! ([5485](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5485))
* Fix for adding retention rule issue for existing bucket ([5481](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5481))
# 1.67.0 (July 02, 2024)
Features
* Support MQCloud
- **Datasources**
- ibm_mqcloud_queue_manager_options
* Support VPC
- **Datasources**
- ibm_is_vpn_gateway_connection_local_cidrs
- ibm_is_vpn_gateway_connection_peer_cidrs
* Support Cloud Logs
- **Datasources**
- ibm_logs_dashboard_folders
- ibm_logs_data_usage_metrics
- ibm_logs_enrichment
- ibm_logs_data_access_rule
- **Resources**
- ibm_logs_dashboard_folders
- ibm_logs_data_usage_metrics
- ibm_logs_enrichment
- ibm_logs_data_access_rule
* Support Transite Gateway
- **Resources**
- ibm_tg_connection_rgre_tunnel
* Support Power VS
- **Datasources**
- ibm_pi_available_hosts
- ibm_pi_host_group
- ibm_pi_host_groups
- ibm_pi_host
- ibm_pi_hosts
- **Resources**
- ibm_pi_host_group
Enhancements
* Adding default prefixfiletr for TGW connection dependency ([5406](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5406))
* Add ams channels config support to keystore resource ([5411](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5411))
* fix(CatalogManagement): remove deprecated arguments not supported in latest sdk ([5405](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5405))
* support for terraform v1.6 in schematics workspace ([5405](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5405))
* support Management Data Events in COS ([5277](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5277))
* Support for vpn advanced configurations ([5407](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5407))
* support for snapshot crn ([5399](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5399))
* enhancement(sg): added filters on sg data source ([5390](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5390))
* Billing and Metring for images- BM3PI ([5419](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5419))
* Support for protocol state filtering mode in VNI protocol ([5428](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5428))
* Support for confidential compute profiles in instance and instance template ([5430](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5430))
* Project service: support for ca-tor region, support for auto_deploy feature ([5430](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5430))
* Transit Gateway: Adding new connection type Redundant GRE to the transite gateway ([5433](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5433))
* Support deploymentTarget for Power Instance ([5446](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5446))
* Datasource ibm_catalog_cm by Private Catalog Name ([5434](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5434))
* Add host_id to Power SPP ([5447](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5447))
* Add initialize fault attribute to nil on first read ([5420](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5420))
* Allow resizing kubernetes service worker-pools to 0 ([5460](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5460))
* Fix managed ruleset apis ([5417](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5417))
* Image import for Power Image ([5448](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5448))
* UI 35145 os image user data format ([5467](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5467))
BugFixes
* store_value argument ignored when creating a service api key ([4615](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4615))
* Adding PAG changes ([5421](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5421)
* Fix logs resources and support dashboard_folder resource ([5426](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5426))
* Fix policy references bug in AG templates ([5427](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5427))
* ibm_cos_bucket doesn't have the right value for s3_endpoint_public when endpoint_type is set to private ([5404](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5404))
* doc update for vni in instance and shares ([5429](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5429))
* Update tagging logic in volume attachments in is_instance ([5029](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5029))
* fix(MQ on Cloud): options data source ([5438](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5438))
* Update doc for vm no storage ([5445](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5445))
* IAM user invite always shows force new due to case sensitive of email address ([5462](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5462))
* fix(lb): Lb pool member target_id update fix ([5457](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5457))
* Added an empty check on protocol_state_filtering_mode ([5468](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5468))
* fix(vpngwc): bug fix for local and peer ([5458](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5458))
* Updated docs for confidential compute mode in is_instance ([5477](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5477))
* fix admin_state_up default issue on vpn_gateway_connection ([5479](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5479))
# 1.67.0-beta1 (Jun 19, 2024)
BugFixes
* fix(MQ on Cloud): options data source ([5438](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5438))
# 1.67.0-beta0 (Jun 18, 2024)
Features
* Support MQCloud
- **Datasources**
- ibm_mqcloud_queue_manager_options
* Support VPC
- **Datasources**
- ibm_is_vpn_gateway_connection_local_cidrs
- ibm_is_vpn_gateway_connection_peer_cidrs
* Support Cloud Logs
- **Resources**
- ibm_logs_dashboard_folder
Enhancements
* Adding default prefixfiletr for TGW connection dependency ([5406](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5406))
* Add ams channels config support to keystore resource ([5411](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5411))
* fix(CatalogManagement): remove deprecated arguments not supported in latest sdk ([5405](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5405))
* support for terraform v1.6 in schematics workspace ([5405](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5405))
* support Management Data Events in COS ([5277](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5277))
* Support for vpn advanced configurations ([5407](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5407))
* support for snapshot crn ([5399](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5399))
* enhancement(sg): added filters on sg data source ([5390](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5390))
* Billing and Metring for images- BM3PI ([5419](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5419))
* Support for protocol state filtering mode in VNI protocol ([5428](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5428))
* Support for confidential compute profiles in instance and instance template ([5430](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5430))
* Project service: support for ca-tor region, support for auto_deploy feature ([5430](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5430))
BugFixes
* store_value argument ignored when creating a service api key ([4615](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4615))
* Adding PAG changes ([5421](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5421)
* Fix logs resources and support dashboard_folder resource ([5426](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5426))
* Fix policy references bug in AG templates ([5427](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5427))
* ibm_cos_bucket doesn't have the right value for s3_endpoint_public when endpoint_type is set to private ([5404](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5404))
* doc update for vni in instance and shares ([5429](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5429))
* Update tagging logic in volume attachments in is_instance ([5029](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5029))
# 1.66.0 (May 31, 2024)
Features
* Support Cloud Logs
- **Datasources**
- ibm_logs_alert
- ibm_logs_alerts
- ibm_logs_rule_group
- ibm_logs_rule_groups
- ibm_logs_policy
- ibm_logs_policies
- ibm_logs_dashboard
- ibm_logs_e2m
- ibm_logs_e2ms
- ibm_logs_outgoing_webhook
- ibm_logs_outgoing_webhooks
- ibm_logs_view_folder
- ibm_logs_view_folders
- ibm_logs_view
- ibm_logs_views
- **Resources**
- ibm_logs_alert
- ibm_logs_rule_group
- ibm_logs_policy
- ibm_logs_dashboard
- ibm_logs_e2m
- ibm_logs_outgoing_webhook
- ibm_logs_view_folder
- ibm_logs_view
* Support Event Notification
- **Datasources**
- ibm_en_smtp_configuration
- ibm_en_smtp_configurations
- ibm_en_smtp_user
- ibm_en_smtp_users
- ibm_en_slack_template
- **Resources**
- ibm_en_smtp_configuration
- ibm_en_smtp_user
- ibm_en_slack_template
- ibm_en_smtp_setting
* Support CIS
- **Datasources**
- ibm_cis_rulesets
- ibm_cis_ruleset_versions
- ibm_cis_ruleset_rules_by_tag
- ibm_cis_ruleset_entrypoint_versions
- **Resources**
- ibm_cis_ruleset
- ibm_cis_ruleset_version_detach
- ibm_cis_ruleset_rule
- ibm_cis_ruleset_entrypoint_version
* Support KMS
- **Datasources**
- ibm_kms_kmip_adapter
- ibm_kms_kmip_adapters
- ibm_kms_kmip_client_cert
- ibm_kms_kmip_client_certs
- ibm_kms_kmip_object
- ibm_kms_kmip_objects
- **Resources**
- ibm_kms_kmip_adapter
- ibm_kms_kmip_client_cert
* Support IAM
- **Resources**
- ibm_iam_policy_assignment
Enhancements
* Add empty validation for console languages ([5336](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5336))
* Lower timeout for placement-group add/delete to 10 minutes ([5335](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5335))
* align Projects terraform provider to latest API spec ([5293](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5293))
* feat(Catalog Management): support plan_id on offering instances ([5337](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5337))
* remove workerpool related fields from vpc cluster Read ([5287](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5287))
* Add Fault Attribute to Pi_Instance ([5344](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5344))
* Support outbound-traffic-protection ([5268](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5268))
* scc fix: ability to add profile_version during create ([5332](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5332))
* update documentation with instructions to provide public access to bucket ([1268](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/1268))
* Docfix: name change Activity Tracker to Activity Tracker Event Routing ([5312](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5312))
* wait for kms apply for cluster provisioning ([5383](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5383))
* ContinuousTargetOccurence updates ([5393](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5393))
* Restrict to old multitenant ([5395](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5395))
* Update Usage Reports terraform code to support new error handling ([5365](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5365))
* regenerate code for projects ([5375](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5375))
* ICD: Add switchover warning for Old Multitenant ([5395](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5395))
* Add support for role 'NONE' ([5400](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5400))
BugFixes
* Fix snapshot markdown ([5331](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5331))
* Resource ibm_scc_rule creation issue ([5327](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5327))
* Enterprise: Added IAM attributes for reference in enterprise markdown ([5334](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5334))
* fix(security-group-rule): Wrong error message when remote value wrong ([5348](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5348))
* updating docs for SCC profile attachment notifications ([5357](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5357))
* updated the docs for vpc security group rule ([5360](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5360))
* description property of cis_filter and cis_firewall_rule bugged ([5378](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5378))
* SM imported cert bug fix ([5392](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5392))
* fix(tg): fixed global change issue ([5366](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5366))
* fix instance policies to set endpoint type when api url specifies so ([5394](https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5394))
# 1.66.0-beta0 (May 18, 2024)
Features
* Support Cloud Logs
- **Datasources**
- ibm_logs_alert
- ibm_logs_alerts
- ibm_logs_rule_group
- ibm_logs_rule_groups
- ibm_logs_policy
- ibm_logs_policies
- ibm_logs_dashboard
- ibm_logs_e2m
- ibm_logs_e2ms
- ibm_logs_outgoing_webhook
- ibm_logs_outgoing_webhooks
- ibm_logs_view_folder
- ibm_logs_view_folders
- ibm_logs_view
- ibm_logs_views
- **Resources**
- ibm_logs_alert
- ibm_logs_rule_group
- ibm_logs_policy
- ibm_logs_dashboard
- ibm_logs_e2m
- ibm_logs_outgoing_webhook
- ibm_logs_view_folder
- ibm_logs_view
* Support Event Notification
- **Datasources**
- ibm_en_smtp_configuration
- ibm_en_smtp_configurations
- ibm_en_smtp_user
- ibm_en_smtp_users
- ibm_en_slack_template
- **Resources**
- ibm_en_smtp_configuration
- ibm_en_smtp_user
- ibm_en_slack_template
- ibm_en_smtp_setting
* Support CIS
- **Datasources**
- ibm_cis_rulesets
- ibm_cis_ruleset_versions
- ibm_cis_ruleset_rules_by_tag
- ibm_cis_ruleset_entrypoint_versions
- **Resources**
- ibm_cis_ruleset
- ibm_cis_ruleset_version_detach
- ibm_cis_ruleset_rule
- ibm_cis_ruleset_entrypoint_version
* Support KMS
- **Datasources**
- ibm_kms_kmip_adapter
- ibm_kms_kmip_adapters
- ibm_kms_kmip_client_cert
- ibm_kms_kmip_client_certs
- ibm_kms_kmip_object
- ibm_kms_kmip_objects
- **Resources**
- ibm_kms_kmip_adapter
- ibm_kms_kmip_client_cert
* Support IAM
- **Resources**
- ibm_iam_policy_assignment
Enhancements
* Add empty validation for console languages ([5336](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5336))
* Lower timeout for placement-group add/delete to 10 minutes ([5335](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5335))
* align Projects terraform provider to latest API spec ([5293](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5293))
* feat(Catalog Management): support plan_id on offering instances ([5337](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5337))
* remove workerpool related fields from vpc cluster Read ([5287](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5287))
* Add Fault Attribute to Pi_Instance ([5344](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5344))
* Support outbound-traffic-protection ([5268](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5268))
* scc fix: ability to add profile_version during create ([5332](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5332))
BugFixes
* Fix snapshot markdown ([5331](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5331))
* Resource ibm_scc_rule creation issue ([5327](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5327))
* Enterprise: Added IAM attributes for reference in enterprise markdown ([5334](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5334))
* fix(security-group-rule): Wrong error message when remote value wrong ([5348](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5348))
* updating docs for SCC profile attachment notifications ([5357](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5357))
* updated the docs for vpc security group rule ([5360](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5360))
# 1.65.1 (May 17, 2024)
BugFixes
* fix(bm-profiles): resolved nil pointer on resource type ([5354](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5354))
* update kms instance policies ([5346](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5346))
* Fix to handle crash for cloudshell ([5363](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5363))
# 1.65.0 (May 06, 2024)
Features
* Support for VMware as a Service API
- **Datasources**
- ibm_vmaas_vdc
- **Resources**
- ibm_vmaas_vdc
* Support for PowerVS
- **Datasources**
- ibm_pi_networks
Enhancements
* align Projects terraform provider to latest API spec ([5252](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5252))
* Add power edge details to workspace data source ([5205](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5205))
* feat(tekton): add locked properties ([5274](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5274))
* Added support for IBM Cloud Logs atracker targets ([5270](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5270))
* Deprecate vtl attributes in data source/resource ([5265](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5265))
* Update PI Image import/export and capture cos region doc ([5273](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5273))
* CBR typeset change for cbr rule/zone and adding CBR retries ([5246](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5246))
* Fix data assignment APIs ([5306](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5306))
* feat: wrap provider to create new error structure ([5278](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5278))
* ODF workerpool support ([5283](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5283))
* fix(Cloud Databases):Incorporate new client-error-toolchain in datasources ([5320](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5320))
* Added IAM fields in enterprise create child account response ([5313](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5313))
* ODF 4.15 Templates for add-on and satellite ([5316](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5316))
* Added support for snapshot service tags ([5326](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5326))
BugFixes
* Fix deleting instances with replicant attribute set ([5176](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5176))
* fix access group resource: recreate ag when it is deleted outside terraform ([5304](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5304))
* fix(docs): fixed documents for network acl and rules ([5302](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5302))
* add fix for timeouts for observe logging resource ([5300](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5300))
* Produce error when selecting invalid region in toolchain service ([5297](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5297))
* Fix instance policy drift ([5308](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5308))
* fix access group members resource: recreate ag members when it is deleted outside terraform ([5317](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5317))
* updated host_flavor id docs ([5323](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5323))
* fix(docs): Fix bm initialization doc titile ([5330](https://github.com/IBM-Cloud/terraform-provider-ibm/pull/5330))
# 1.65.0-beta0 (Apr 27, 2024)