Skip to content

Commit f1e1977

Browse files
Update cadence-idl to latest (#548)
Use latest IDL files in cadence-web by updating package.json with the latest commit hash from uber/cadence-idl
1 parent 43cd2bf commit f1e1977

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"webpack-hot-client": "^1.3.0"
138138
},
139139
"napa": {
140-
"cadence-idl": "uber/cadence-idl#57c717b37a361f441be070ad6bd436328677c5ef"
140+
"cadence-idl": "uber/cadence-idl#e3a59cdd3c3676b0edee2f3262a22379f25b9fa5"
141141
},
142142
"napa-config": {
143143
"cache": false

server/test/domain.test.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ describe('Describe Domain', function() {
3838
failoverInfo: null,
3939
failoverVersion: 0,
4040
configuration: {
41+
AsyncWorkflowConfiguration: null,
4142
badBinaries: null,
4243
emitMetric: true,
4344
historyArchivalStatus: null,
4445
historyArchivalURI: null,
46+
isolationgroups: null,
4547
visibilityArchivalStatus: null,
4648
visibilityArchivalURI: null,
4749
workflowExecutionRetentionPeriodInDays: 14,
@@ -103,11 +105,13 @@ describe('Describe Domain', function() {
103105
failoverVersion: 0,
104106
isGlobalDomain: true,
105107
configuration: {
108+
AsyncWorkflowConfiguration: null,
106109
badBinaries: null,
107110
workflowExecutionRetentionPeriodInDays: 14,
108111
emitMetric: true,
109112
historyArchivalStatus: null,
110113
historyArchivalURI: null,
114+
isolationgroups: null,
111115
visibilityArchivalStatus: null,
112116
visibilityArchivalURI: null,
113117
},

server/test/history.test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const wfHistoryThrift = [
5050
cronSchedule: null,
5151
firstDecisionTaskBackoffSeconds: null,
5252
firstExecutionRunId: null,
53+
firstScheduledTimeNano: null,
5354
header: null,
5455
initiator: null,
5556
lastCompletionResult: null,
@@ -58,7 +59,9 @@ const wfHistoryThrift = [
5859
parentInitiatedEventId: null,
5960
parentWorkflowDomain: null,
6061
parentWorkflowExecution: null,
62+
partitionConfig: null,
6163
prevAutoResetPoints: null,
64+
requestId: null,
6265
retryPolicy: null,
6366
searchAttributes: null,
6467
taskStartToCloseTimeoutSeconds: 30,
@@ -121,6 +124,7 @@ const wfHistoryGrpc = [
121124
cronSchedule: null,
122125
firstDecisionTaskBackoff: null,
123126
firstExecutionRunId: null,
127+
firstScheduledTimeNano: null,
124128
header: null,
125129
initiator: null,
126130
lastCompletionResult: null,
@@ -129,7 +133,9 @@ const wfHistoryGrpc = [
129133
parentInitiatedEventId: null,
130134
parentWorkflowDomain: null,
131135
parentWorkflowExecution: null,
136+
partitionConfig: null,
132137
prevAutoResetPoints: null,
138+
requestId: null,
133139
retryPolicy: null,
134140
searchAttributes: null,
135141
taskStartToCloseTimeout: { seconds: 30 },

server/test/workflows.test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,12 @@ describe('Listing Workflows', function() {
3838
executionTime: null,
3939
memo: null,
4040
parentDomainId: null,
41+
parentDomainName: null,
4142
parentExecution: null,
43+
parentInitatedId: null,
44+
partitionConfig: null,
4245
searchAttributes: null,
46+
updateTime: null,
4347
};
4448
const demoExecGrpc = {
4549
workflowExecution: {
@@ -59,8 +63,12 @@ describe('Listing Workflows', function() {
5963
executionTime: null,
6064
memo: null,
6165
parentDomainId: null,
66+
parentDomainName: null,
6267
parentExecution: null,
68+
parentInitatedId: null,
69+
partitionConfig: null,
6370
searchAttributes: null,
71+
updateTime: null,
6472
};
6573
const demoExecJson = Object.assign({}, demoExecThrift, {
6674
startTime: '2017-11-10T21:30:00.000Z',

0 commit comments

Comments
 (0)