Skip to content

Commit 3bf6e97

Browse files
committed
Changelog and some test changes
1 parent 1056b1c commit 3bf6e97

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Lists the changes in the provider.
44

5+
## Version 0.8.1
6+
7+
- updated documentation, examples and tests to match code changes.
8+
59
## Version 0.8.0
610

711
- update gocmlclient to 0.1.0, supporting CML 2.7.0

Diff for: internal/provider/resource/lifecycle/lifecycle_test.go

+16-16
Original file line numberDiff line numberDiff line change
@@ -527,13 +527,13 @@ resource "cml2_link" "l2" {
527527
resource "cml2_lifecycle" "top" {
528528
lab_id = cml2_lab.this.id
529529
depends_on = [
530-
cml2_node.ext.id,
531-
cml2_node.ums.id,
532-
cml2_node.r1.id,
533-
cml2_node.r2.id,
534-
cml2_link.l0.id,
535-
cml2_link.l1.id,
536-
cml2_link.l2.id,
530+
cml2_node.ext,
531+
cml2_node.ums,
532+
cml2_node.r1,
533+
cml2_node.r2,
534+
cml2_link.l0,
535+
cml2_link.l1,
536+
cml2_link.l2,
537537
]
538538
}
539539
`, cfg)
@@ -602,15 +602,15 @@ resource "cml2_link" "l3" {
602602
resource "cml2_lifecycle" "top" {
603603
lab_id = cml2_lab.this.id
604604
depends_on = [
605-
cml2_node.ext.id,
606-
cml2_node.ums.id,
607-
cml2_node.r1.id,
608-
cml2_node.r2.id,
609-
cml2_node.r3.id,
610-
cml2_link.l0.id,
611-
cml2_link.l1.id,
612-
cml2_link.l2.id,
613-
cml2_link.l3.id,
605+
cml2_node.ext,
606+
cml2_node.ums,
607+
cml2_node.r1,
608+
cml2_node.r2,
609+
cml2_node.r3,
610+
cml2_link.l0,
611+
cml2_link.l1,
612+
cml2_link.l2,
613+
cml2_link.l3,
614614
]
615615
}
616616
`, cfg)

0 commit comments

Comments
 (0)