Skip to content

Commit 77fb2c7

Browse files
authored
update DSL version from alpha1, alpha2, alpha5 to 1.0.0 across multip… (#1082)
* update DSL version from alpha1, alpha2, alpha5 to 1.0.0 across multiple YAML files Signed-off-by: Gilles Barbier <[email protected]> * fix(contributing): reverting pre-release versioning format Signed-off-by: Gilles Barbier <[email protected]> --------- Signed-off-by: Gilles Barbier <[email protected]>
1 parent 9689666 commit 77fb2c7

File tree

85 files changed

+144
-144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+144
-144
lines changed

.ci/validation/package-lock.json

+6-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.ci/validation/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "validation",
3-
"version": "0.9.0-snapshot",
3+
"version": "1.0.0",
44
"description": "",
55
"main": "src/index.js",
66
"scripts": {

.ci/validation/src/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ export module SWSchemaValidator {
2424
const ajv = new Ajv({ strict: false, allowUnionTypes: true });
2525
addFormats(ajv);
2626

27-
const workflowSchemaId =
28-
"https://serverlessworkflow.io/schemas/1.0.0-alpha5/workflow.yaml";
27+
const workflowSchemaId = "https://serverlessworkflow.io/schemas/1.0.0/workflow.yaml";
2928
const schemaPath = "../../../schema";
3029
export const defaultEncoding = "utf-8";
3130

.ci/validation/test/fixtures/invalid/extra-property-in-call.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
document:
2-
dsl: '1.0.0-alpha5'
2+
dsl: '1.0.0'
33
namespace: examples
44
name: two-tasks-in-one-item
55
version: '0.1.0'

.ci/validation/test/fixtures/invalid/listen-any-until-any-until.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
document:
2-
dsl: '1.0.0-alpha1'
2+
dsl: '1.0.0'
33
namespace: test
44
name: listen-to-any
55
version: '0.1.0'

.ci/validation/test/fixtures/invalid/two-tasks-in-one-item.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
document:
2-
dsl: '1.0.0-alpha5'
2+
dsl: '1.0.0'
33
namespace: examples
44
name: two-tasks-in-one-item
55
version: '0.1.0'

ctk/features/branch.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Composite Task
88
Given a workflow with definition:
99
"""yaml
1010
document:
11-
dsl: '1.0.0-alpha5'
11+
dsl: '1.0.0'
1212
namespace: default
1313
name: fork
1414
version: '1.0.0'

ctk/features/call.feature

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Feature: Call Task
1111
Given a workflow with definition:
1212
"""yaml
1313
document:
14-
dsl: '1.0.0-alpha5'
14+
dsl: '1.0.0'
1515
namespace: default
1616
name: http-call-with-content-output
1717
version: '1.0.0'
@@ -40,7 +40,7 @@ Feature: Call Task
4040
Given a workflow with definition:
4141
"""yaml
4242
document:
43-
dsl: '1.0.0-alpha5'
43+
dsl: '1.0.0'
4444
namespace: default
4545
name: http-call-with-response-output
4646
version: '1.0.0'
@@ -68,7 +68,7 @@ Feature: Call Task
6868
Given a workflow with definition:
6969
"""yaml
7070
document:
71-
dsl: '1.0.0-alpha5'
71+
dsl: '1.0.0'
7272
namespace: default
7373
name: http-call-with-basic-auth
7474
version: '1.0.0'
@@ -98,7 +98,7 @@ Feature: Call Task
9898
Given a workflow with definition:
9999
"""yaml
100100
document:
101-
dsl: '1.0.0-alpha5'
101+
dsl: '1.0.0'
102102
namespace: default
103103
name: openapi-call-with-content-output
104104
version: '1.0.0'
@@ -127,7 +127,7 @@ Feature: Call Task
127127
Given a workflow with definition:
128128
"""yaml
129129
document:
130-
dsl: '1.0.0-alpha5'
130+
dsl: '1.0.0'
131131
namespace: default
132132
name: openapi-call-with-response-output
133133
version: '1.0.0'

ctk/features/data-flow.feature

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Data Flow
88
Given a workflow with definition:
99
"""yaml
1010
document:
11-
dsl: '1.0.0-alpha5'
11+
dsl: '1.0.0'
1212
namespace: default
1313
name: output-filtering
1414
version: '1.0.0'
@@ -36,7 +36,7 @@ Feature: Data Flow
3636
Given a workflow with definition:
3737
"""yaml
3838
document:
39-
dsl: '1.0.0-alpha5'
39+
dsl: '1.0.0'
4040
namespace: default
4141
name: output-filtering
4242
version: '1.0.0'
@@ -65,7 +65,7 @@ Feature: Data Flow
6565
Given a workflow with definition:
6666
"""yaml
6767
document:
68-
dsl: '1.0.0-alpha5'
68+
dsl: '1.0.0'
6969
namespace: default
7070
name: non-object-output
7171
version: '1.0.0'

ctk/features/do.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Composite Task
88
Given a workflow with definition:
99
"""yaml
1010
document:
11-
dsl: '1.0.0-alpha5'
11+
dsl: '1.0.0'
1212
namespace: default
1313
name: do
1414
version: '1.0.0'

ctk/features/emit.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Emit Task
88
Given a workflow with definition:
99
"""yaml
1010
document:
11-
dsl: '1.0.0-alpha5'
11+
dsl: '1.0.0'
1212
namespace: default
1313
name: emit
1414
version: '1.0.0'

ctk/features/flow.feature

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Feature: Flow Directive
77
Given a workflow with definition:
88
"""yaml
99
document:
10-
dsl: '1.0.0-alpha5'
10+
dsl: '1.0.0'
1111
namespace: default
1212
name: implicit-sequence
1313
version: '1.0.0'
@@ -35,7 +35,7 @@ Feature: Flow Directive
3535
Given a workflow with definition:
3636
"""yaml
3737
document:
38-
dsl: '1.0.0-alpha5'
38+
dsl: '1.0.0'
3939
namespace: default
4040
name: explicit-sequence
4141
version: '1.0.0'

ctk/features/for.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Feature: For Task
1010
Given a workflow with definition:
1111
"""yaml
1212
document:
13-
dsl: '1.0.0-alpha5'
13+
dsl: '1.0.0'
1414
namespace: default
1515
name: for
1616
version: '1.0.0'

ctk/features/raise.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Feature: Raise Task
77
Given a workflow with definition:
88
"""yaml
99
document:
10-
dsl: '1.0.0-alpha5'
10+
dsl: '1.0.0'
1111
namespace: default
1212
name: raise-custom-error
1313
version: '1.0.0'

ctk/features/set.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Set Task
88
Given a workflow with definition:
99
"""yaml
1010
document:
11-
dsl: '1.0.0-alpha5'
11+
dsl: '1.0.0'
1212
namespace: default
1313
name: set
1414
version: '1.0.0'

ctk/features/switch.feature

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Feature: Switch Task
77
Given a workflow with definition:
88
"""yaml
99
document:
10-
dsl: '1.0.0-alpha5'
10+
dsl: '1.0.0'
1111
namespace: default
1212
name: switch-match
1313
version: '1.0.0'
@@ -52,7 +52,7 @@ Feature: Switch Task
5252
Given a workflow with definition:
5353
"""yaml
5454
document:
55-
dsl: '1.0.0-alpha5'
55+
dsl: '1.0.0'
5656
namespace: default
5757
name: switch-default-implicit
5858
version: '1.0.0'
@@ -95,7 +95,7 @@ Feature: Switch Task
9595
Given a workflow with definition:
9696
"""yaml
9797
document:
98-
dsl: '1.0.0-alpha5'
98+
dsl: '1.0.0'
9999
namespace: default
100100
name: switch-default-implicit
101101
version: '1.0.0'

ctk/features/try.feature

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Feature: Try Task
1111
Given a workflow with definition:
1212
"""yaml
1313
document:
14-
dsl: '1.0.0-alpha5'
14+
dsl: '1.0.0'
1515
namespace: default
1616
name: try-catch-404
1717
version: '1.0.0'
@@ -55,7 +55,7 @@ Feature: Try Task
5555
Given a workflow with definition:
5656
"""yaml
5757
document:
58-
dsl: '1.0.0-alpha5'
58+
dsl: '1.0.0'
5959
namespace: default
6060
name: try-catch-503
6161
version: '1.0.0'

0 commit comments

Comments
 (0)