Skip to content

Commit 2a41592

Browse files
authored
Merge branch 'main' into v1.4
2 parents 8ed1680 + 0bba308 commit 2a41592

File tree

16 files changed

+175
-14
lines changed

16 files changed

+175
-14
lines changed

.github/workflows/api-compat-verification.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: API compatibility verification
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
jobs:
911
api-compat-verification:

.github/workflows/artifact-size-metrics.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Artifact Size Metrics
22
on:
33
pull_request:
44
types: [ opened, synchronize, reopened, labeled, unlabeled ]
5-
branches: [ main ]
5+
branches:
6+
- main
7+
- '*-main'
68
release:
79
types: [published]
810

.github/workflows/changelog-verification.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Changelog verification
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
jobs:
911
changelog-verification:

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
7+
- '*-main'
68
pull_request:
79
workflow_dispatch:
810

.github/workflows/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Dependabot Dependency Submission
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
7+
- '*-main'
68

79
permissions:
810
contents: write

.github/workflows/kat-transform.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Kat Transform
33
on:
44
pull_request:
55
types: [ opened, synchronize, reopened, labeled, unlabeled ]
6-
branches: [ main ]
6+
branches:
7+
- main
8+
- '*-main'
79

810
# Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed
911
concurrency:

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ on:
55
branches:
66
- '**'
77
- '!main'
8+
- '!*-main'
89
pull_request:
9-
branches: [ main ]
10+
branches:
11+
- main
12+
- '*-main'
1013
workflow_dispatch:
1114

1215
env:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ out/
88
# Compiled class file
99
*.class
1010
*.klib
11+
.kotlin/
1112

1213
# Log file
1314
*.log

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.3.34] - 01/10/2025
4+
5+
## [1.3.33] - 01/10/2025
6+
37
## [1.3.32] - 01/06/2025
48

59
### Fixes

codegen/protocol-tests/model/error-correction-tests.smithy

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ operation SayHello { output: TestOutputDocument, errors: [Error] }
3737
@http(method: "POST", uri: "/")
3838
operation SayHelloXml { output: TestOutput, errors: [Error] }
3939

40-
structure TestOutputDocument with [TestStruct] { innerField: Nested, @required document: Document }
40+
structure TestOutputDocument with [TestStruct] {
41+
innerField: Nested,
42+
// FIXME: This trait fails smithy validator
43+
// @required
44+
document: Document
45+
}
4146
structure TestOutput with [TestStruct] { innerField: Nested }
4247

4348
@mixin
@@ -60,7 +65,8 @@ structure TestStruct {
6065
@required
6166
nestedListValue: NestedList
6267

63-
@required
68+
// FIXME: This trait fails smithy validator
69+
// @required
6470
nested: Nested
6571

6672
@required
@@ -91,7 +97,8 @@ union MyUnion {
9197
}
9298

9399
structure Nested {
94-
@required
100+
// FIXME: This trait fails smithy validator
101+
// @required
95102
a: String
96103
}
97104

0 commit comments

Comments
 (0)