Skip to content

Commit bfef0d7

Browse files
committed
Merge branch '1.10-updates'
2 parents bf3f881 + f528049 commit bfef0d7

39 files changed

+222
-86
lines changed

cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/client/v3/applications/ReactorApplicationsV3Test.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,6 @@ public void listDroplets() {
744744
.lifecycle(Lifecycle.builder()
745745
.type(org.cloudfoundry.client.v3.Type.BUILDPACK)
746746
.data(BuildpackData.builder()
747-
.buildpack(null)
748747
.stack(null)
749748
.build())
750749
.build())

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/GET_response.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
"lifecycle": {
2424
"type": "buildpack",
2525
"data": {
26-
"buildpack": "name-2374",
26+
"buildpacks": [
27+
"name-2374"
28+
],
2729
"stack": "name-2375"
2830
}
2931
},
@@ -73,7 +75,9 @@
7375
"lifecycle": {
7476
"type": "buildpack",
7577
"data": {
76-
"buildpack": "name-2372",
78+
"buildpacks": [
79+
"name-2372"
80+
],
7781
"stack": "name-2373"
7882
}
7983
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/GET_{id}_droplets_response.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"lifecycle": {
2020
"type": "buildpack",
2121
"data": {
22-
"buildpack": null,
2322
"stack": null
2423
}
2524
},
@@ -34,7 +33,9 @@
3433
"type": "sha1",
3534
"value": "0cd90dd63dd9f42db25340445d203fba25c69cf6"
3635
},
37-
"buildpack": "ruby 1.6.14",
36+
"buildpacks": [
37+
"ruby 1.6.14"
38+
],
3839
"stack": "cflinuxfs2"
3940
},
4041
"environment_variables": {

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/GET_{id}_response.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lifecycle": {
99
"type": "buildpack",
1010
"data": {
11-
"buildpack": "name-2431",
11+
"buildpacks": [
12+
"name-2431"
13+
],
1214
"stack": "name-2432"
1315
}
1416
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/PATCH_{id}_request.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"lifecycle": {
88
"type": "buildpack",
99
"data": {
10-
"buildpack": "http://gitwheel.org/my-app",
10+
"buildpacks": [
11+
"http://gitwheel.org/my-app"
12+
],
1113
"stack": "redhat"
1214
}
1315
}

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/PATCH_{id}_response.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lifecycle": {
99
"type": "buildpack",
1010
"data": {
11-
"buildpack": "http://gitwheel.org/my-app",
11+
"buildpacks": [
12+
"http://gitwheel.org/my-app"
13+
],
1214
"stack": "redhat"
1315
}
1416
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/POST_request.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"lifecycle": {
77
"type": "buildpack",
88
"data": {
9-
"buildpack": "name-2443",
9+
"buildpacks": [
10+
"name-2443"
11+
],
1012
"stack": "name-2444"
1113
}
1214
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/POST_response.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lifecycle": {
99
"type": "buildpack",
1010
"data": {
11-
"buildpack": "name-2443",
11+
"buildpacks": [
12+
"name-2443"
13+
],
1214
"stack": "default-stack-name"
1315
}
1416
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/PUT_{id}_current_droplet_response.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lifecycle": {
99
"type": "buildpack",
1010
"data": {
11-
"buildpack": "name-2420",
11+
"buildpacks": [
12+
"name-2420"
13+
],
1214
"stack": "name-2421"
1315
}
1416
},

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/apps/PUT_{id}_start_response.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"lifecycle": {
99
"type": "buildpack",
1010
"data": {
11-
"buildpack": "name-2438",
11+
"buildpacks": [
12+
"name-2438"
13+
],
1214
"stack": "name-2439"
1315
}
1416
},

0 commit comments

Comments
 (0)