-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## What this PR does / why we need it It's significantly more complicated to upgrade Go in this repo since it's effectively a monorepo now. This means that restenciling with Go minor version bumps will not work without PRs like this. I also had to update the `golang.org/x/tools/cmd/stringer` version as using an ancient version broke with Go 1.22. ## Notes for reviewers A restencil was needed due to various incompatibilities. This was added to a separate commmit.
- Loading branch information
Showing
15 changed files
with
1,665 additions
and
2,350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,19 @@ | |
# syntax, such as anchors, will be fixed automatically. | ||
version: 2.1 | ||
orbs: | ||
shared: getoutreach/shared@2.25.1 | ||
shared: getoutreach/shared@2.28.1 | ||
queue: eddiewebb/[email protected] | ||
## <<Stencil::Block(CircleCIExtraOrbs)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
parameters: | ||
rebuild_cache: | ||
type: boolean | ||
default: false | ||
## <<Stencil::Block(CircleCIExtraParams)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
# Extra contexts to expose to all jobs below | ||
contexts: &contexts | ||
|
@@ -76,7 +82,8 @@ workflows: | |
|
||
release: | ||
when: | ||
not: << pipeline.parameters.rebuild_cache >> | ||
and: | ||
- not: << pipeline.parameters.rebuild_cache >> | ||
jobs: | ||
## <<Stencil::Block(circleWorkflowJobs)>> | ||
|
||
|
@@ -96,12 +103,19 @@ workflows: | |
- shared/test | ||
filters: | ||
branches: | ||
only: *release_branches | ||
|
||
# Dryrun release for PRs. | ||
- shared/release: | ||
<<: *release | ||
only: main | ||
# Dryrun for PRs | ||
- shared/pre-release: &pre-release | ||
dryrun: true | ||
context: *contexts | ||
## <<Stencil::Block(circlePreReleaseDryRunExtra)>> | ||
|
||
## <</Stencil::Block>> | ||
requires: | ||
## <<Stencil::Block(circlePreReleaseDryRunRequires)>> | ||
|
||
## <</Stencil::Block>> | ||
- shared/test | ||
filters: | ||
branches: | ||
ignore: *release_branches | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
go 1.21 | ||
go 1.22 | ||
|
||
toolchain go1.22.6 | ||
|
||
use . | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"license": "UNLICENSED", | ||
"devDependencies": { | ||
"@semantic-release/commit-analyzer": "^10.0.1", | ||
"@semantic-release/commit-analyzer": "^12.0.0", | ||
"@semantic-release/exec": "^6.0.3", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^9.0.3", | ||
"@semantic-release/npm": "^10.0.4", | ||
"@semantic-release/release-notes-generator": "^11.0.3", | ||
"conventional-changelog-conventionalcommits": "^6.0.0", | ||
"@semantic-release/github": "^10.0.3", | ||
"@semantic-release/npm": "^12.0.0", | ||
"@semantic-release/release-notes-generator": "^13.0.0", | ||
"conventional-changelog-conventionalcommits": "^7.0.2", | ||
"prettier": "^2.8.8", | ||
"semantic-release": "^21.0.5", | ||
"semver": "^7.5.2" | ||
"semantic-release": "^23.0.8", | ||
"semver": "^7.6.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.