Skip to content

Commit 03bcc58

Browse files
authored
Merge pull request #35 from krancour/stable-api
switch to stable api
2 parents 7858e8a + 29e596e commit 03bcc58

File tree

6 files changed

+22
-16
lines changed

6 files changed

+22
-16
lines changed

.brigade/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brigade-cloudevents-gateway-ci-cd",
33
"dependencies": {
4-
"@brigadecore/brigadier": "^2.0.0-beta.1"
4+
"@brigadecore/brigadier": "^2.0.0-rc.1"
55
}
66
}

.brigade/yarn.lock

+15-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22
# yarn lockfile v1
33

44

5-
"@brigadecore/brigadier@^2.0.0-beta.1":
6-
version "2.0.0-beta.1"
7-
resolved "https://registry.yarnpkg.com/@brigadecore/brigadier/-/brigadier-2.0.0-beta.1.tgz#8abd9461d445d1d13c83404cec22c16f3cbc2104"
8-
integrity sha512-PoDfSAYMpqXyhTP+DBE7B1xHXtCxuW7SCLcH9/yQyr4kgeKxsAyYvy1baQx1G5ujpWcKX4ULmxf7dsJdHPX+3w==
5+
"@brigadecore/brigadier@^2.0.0-rc.1":
6+
version "2.0.0-rc.1"
7+
resolved "https://registry.yarnpkg.com/@brigadecore/brigadier/-/brigadier-2.0.0-rc.1.tgz#e653815a475261db501d3262512f8f5fc8b37ffd"
8+
integrity sha512-k56htqw5L/PKA8xNqLEGzbqx1OmMzqHWxqL7SKvrCAElZsTqZuFvZJZs4RWPl66k9zegZ5ol977g0QcQxae2tw==
99
dependencies:
10-
"@types/node" "^14.14.11"
10+
"@types/node" "^16.10.3"
11+
typescript "4.4.3"
1112

12-
"@types/node@^14.14.11":
13-
version "14.17.6"
14-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.6.tgz#cc61c8361c89e70c468cda464d1fa3dd7e5ebd62"
15-
integrity sha512-iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ==
13+
"@types/node@^16.10.3":
14+
version "16.11.8"
15+
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.8.tgz#a1aeb23f0aa33cb111e64ccaa1687b2ae0423b69"
16+
integrity sha512-hmT5gfpRkkHr7DZZHMf3jBe/zNcVGN+jXSL2f8nAsYfBPxQFToKwQlS/zES4Sjp488Bi73i+p6bvrNRRGU0x9Q==
17+
18+
19+
version "4.4.3"
20+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
21+
integrity sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ listen for CloudEvents that were sent to your gateway and, in turn, emitted into
156156
Brigade's event bus:
157157

158158
```yaml
159-
apiVersion: brigade.sh/v2-beta
159+
apiVersion: brigade.sh/v2
160160
kind: Project
161161
metadata:
162162
id: cloudevents-demo

examples/project.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# yaml-language-server: $schema=https://raw.githubusercontent.com/brigadecore/brigade/v2/v2/apiserver/schemas/project.json
2-
apiVersion: brigade.sh/v2-beta
1+
# yaml-language-server: $schema=https://schemas.brigade.sh/schemas-v2/project.json
2+
apiVersion: brigade.sh/v2
33
kind: Project
44
metadata:
55
id: cloudevents-demo

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.17
44

55
require (
66
github.com/brigadecore/brigade-foundations v0.3.0
7-
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1
7+
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1
88
github.com/cloudevents/sdk-go/v2 v2.4.1
99
github.com/gorilla/mux v1.8.0
1010
github.com/pkg/errors v0.9.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/brigadecore/brigade-foundations v0.3.0 h1:galsMzxSprURAEc2pxsmYJandiW4D+Npchx6ZiBIHkY=
22
github.com/brigadecore/brigade-foundations v0.3.0/go.mod h1:edMgSJCUgfHN1RNGiiVOTRW4X4VykBLgssgWHPZK7Sg=
3-
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1 h1:diVZz6uGMAS2eImx39A15ZRP2eoitiC4TbhcgNVUwIg=
4-
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1/go.mod h1:rB3y/pIheORX5AHbxaSAw5Xr/U6bUAUtSLkgJcbOHIY=
3+
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1 h1:VVGS/GOA1jSmEXTIOk54rf9GsqCxwosoulrA1OwC2xg=
4+
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1/go.mod h1:rB3y/pIheORX5AHbxaSAw5Xr/U6bUAUtSLkgJcbOHIY=
55
github.com/cloudevents/sdk-go/v2 v2.4.1 h1:rZJoz9QVLbWQmnvLPDFEmv17Czu+CfSPwMO6lhJ72xQ=
66
github.com/cloudevents/sdk-go/v2 v2.4.1/go.mod h1:MZiMwmAh5tGj+fPFvtHv9hKurKqXtdB9haJYMJ/7GJY=
77
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=

0 commit comments

Comments
 (0)