Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #33 from krancour/stable-api
Browse files Browse the repository at this point in the history
switch to stable api
  • Loading branch information
krancour authored Nov 19, 2021
2 parents 64fe292 + 65c521a commit 28476f5
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .brigade/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "brigade-acr-gateway-ci-cd",
"dependencies": {
"@brigadecore/brigadier": "^2.0.0-beta.1"
"@brigadecore/brigadier": "^2.0.0-rc.1"
}
}
24 changes: 15 additions & 9 deletions .brigade/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@
# yarn lockfile v1


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

"@types/node@^14.14.11":
version "14.17.6"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.6.tgz#cc61c8361c89e70c468cda464d1fa3dd7e5ebd62"
integrity sha512-iBxsxU7eswQDGhlr3AiamBxOssaYxbM+NKXVil8jg9yFXvrfEFbDumLD/2dMTB+zYyg7w+Xjt8yuxfdbUHAtcQ==
"@types/node@^16.10.3":
version "16.11.8"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.8.tgz#a1aeb23f0aa33cb111e64ccaa1687b2ae0423b69"
integrity sha512-hmT5gfpRkkHr7DZZHMf3jBe/zNcVGN+jXSL2f8nAsYfBPxQFToKwQlS/zES4Sjp488Bi73i+p6bvrNRRGU0x9Q==

[email protected]:
version "4.4.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
integrity sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ the gateway, provided they've originated from the fictitious
(see the `registry` qualifier and `repo` label).

```yaml
apiVersion: brigade.sh/v2-beta
apiVersion: brigade.sh/v2
kind: Project
metadata:
id: acr-demo
Expand Down Expand Up @@ -217,7 +217,7 @@ spec:
In the alternative example below, we subscribe _only_ to `push` events:

```yaml
apiVersion: brigade.sh/v2-beta
apiVersion: brigade.sh/v2
kind: Project
metadata:
id: acr-demo
Expand Down
4 changes: 2 additions & 2 deletions examples/project.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/brigadecore/brigade/v2/v2/apiserver/schemas/project.json
apiVersion: brigade.sh/v2-beta
# yaml-language-server: $schema=https://schemas.brigade.sh/schemas-v2/project.json
apiVersion: brigade.sh/v2
kind: Project
metadata:
id: acr-demo
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.17

require (
github.com/brigadecore/brigade-foundations v0.3.0
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1
github.com/gorilla/mux v1.8.0
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/brigadecore/brigade-foundations v0.3.0 h1:galsMzxSprURAEc2pxsmYJandiW4D+Npchx6ZiBIHkY=
github.com/brigadecore/brigade-foundations v0.3.0/go.mod h1:edMgSJCUgfHN1RNGiiVOTRW4X4VykBLgssgWHPZK7Sg=
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1 h1:diVZz6uGMAS2eImx39A15ZRP2eoitiC4TbhcgNVUwIg=
github.com/brigadecore/brigade/sdk/v2 v2.0.0-beta.1/go.mod h1:rB3y/pIheORX5AHbxaSAw5Xr/U6bUAUtSLkgJcbOHIY=
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1 h1:VVGS/GOA1jSmEXTIOk54rf9GsqCxwosoulrA1OwC2xg=
github.com/brigadecore/brigade/sdk/v2 v2.0.0-rc.1/go.mod h1:rB3y/pIheORX5AHbxaSAw5Xr/U6bUAUtSLkgJcbOHIY=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down

0 comments on commit 28476f5

Please sign in to comment.