tweaks to release/ci deprecations; release/ci logging improvements; pin golang to 1.21.3+; pin node to 18.x across all platforms

This commit is contained in:
Michael Quigley 2023-10-11 11:40:42 -04:00
parent b2c9c1a58d
commit f98a164e62
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
4 changed files with 19 additions and 17 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: setup-go - name: setup-go
uses: actions/setup-go@v3 uses: actions/setup-go@v3
with: with:
go-version: 1.21.0 go-version: '>=1.21.3'
- name: setup-node - name: setup-node
uses: actions/setup-node@v3 uses: actions/setup-node@v3

View File

@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '>=1.21.0' go-version: '>=1.21.3'
cache: true cache: true
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
@ -43,7 +43,7 @@ jobs:
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: latest
args: release --skip-publish --config .goreleaser-linux.yml args: release --skip=publish --config .goreleaser-linux.yml
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -66,12 +66,12 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '>=1.21.0' go-version: '>=1.21.3'
cache: true cache: true
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16.x node-version: 18.x
- run: npm install - run: npm install
working-directory: ui working-directory: ui
@ -85,7 +85,7 @@ jobs:
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: latest
args: release --skip-publish --config .goreleaser-linux-arm64.yml args: release --skip=publish --config .goreleaser-linux-arm64.yml
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -108,12 +108,12 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '>=1.21.0' go-version: '>=1.21.3'
cache: true cache: true
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16.x node-version: 18.x
- run: npm install - run: npm install
working-directory: ui working-directory: ui
@ -127,7 +127,7 @@ jobs:
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: latest
args: release --skip-publish --config .goreleaser-linux-armhf.yml args: release --skip=publish --config .goreleaser-linux-armhf.yml
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -157,12 +157,12 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '>=1.21.0' go-version: '>=1.21.3'
cache: true cache: true
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16.x node-version: 18.x
- run: npm install - run: npm install
working-directory: ui working-directory: ui
@ -176,7 +176,7 @@ jobs:
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: latest
args: release --skip-publish --config .goreleaser-darwin.yml args: release --skip=publish --config .goreleaser-darwin.yml
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AC_USERNAME: ${{ secrets.AC_USERNAME }} AC_USERNAME: ${{ secrets.AC_USERNAME }}
@ -201,12 +201,12 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: '>=1.21.0' go-version: '>=1.21.3'
cache: true cache: true
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: 16.x node-version: 18.x
- run: npm install - run: npm install
working-directory: ui working-directory: ui
@ -220,7 +220,7 @@ jobs:
with: with:
distribution: goreleaser distribution: goreleaser
version: latest version: latest
args: release --skip-publish --config .goreleaser-windows.yml args: release --skip=publish --config .goreleaser-windows.yml
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -10,7 +10,7 @@ builds:
goarch: goarch:
- amd64 - amd64
hooks: hooks:
post: gon build/gon-amd64.hcl post: gon -log-level=info build/gon-amd64.hcl
- id: zrok-arm64 - id: zrok-arm64
main: ./cmd/zrok main: ./cmd/zrok
@ -23,4 +23,4 @@ builds:
goarch: goarch:
- arm64 - arm64
hooks: hooks:
post: gon build/gon-arm64.hcl post: gon -log-level=info build/gon-arm64.hcl

View File

@ -2,6 +2,8 @@
CHANGE: The title color of the header was changed from white to flourescent green, to better match the overall branding CHANGE: The title color of the header was changed from white to flourescent green, to better match the overall branding
CHANGE: Tweaks to build and release process for logging and deprecations. Pin golang version at 1.21.3+ and node version at 18.x across all platforms
# v0.4.7 # v0.4.7
FEATURE: OAuth authentication with the ability to restrict authenticated users to specified domains for `zrok share public`. Supports both Google and GitHub authentication in this version. More authentication providers, and extensibility to come in future `zrok` releases. See the OAuth configuration guide at `docs/guides/self-hosting/oauth/configuring-oauth.md` for details (https://github.com/openziti/zrok/issues/45, https://github.com/openziti/zrok/issues/404) FEATURE: OAuth authentication with the ability to restrict authenticated users to specified domains for `zrok share public`. Supports both Google and GitHub authentication in this version. More authentication providers, and extensibility to come in future `zrok` releases. See the OAuth configuration guide at `docs/guides/self-hosting/oauth/configuring-oauth.md` for details (https://github.com/openziti/zrok/issues/45, https://github.com/openziti/zrok/issues/404)