Skip to content

Commit

Permalink
prepare 8.2.3 release (#284)
Browse files Browse the repository at this point in the history
## [8.2.3] - 2024-01-29
### Changed:
- Continuous integration was migrated from CircleCI to Github Actions.
- Bumped supported Go versions from 1.21.5 to 1.21.6, and 1.20.12 to
1.20.13
- Bumped base AWS SDK from 1.18 to 1.24, AWS config module from 1.18 to
1.26, AWS credentials module from 1.13 to 1.16 and AWS dynamodb module
from 1.19 to 1.27

### Fixed:
- Offline Mode file watcher should now correctly handle atomic updates
to the archive. Thanks, @gmckerrell.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Eli Bishop <[email protected]>
Co-authored-by: LaunchDarklyReleaseBot <[email protected]>
Co-authored-by: Moshe Good <[email protected]>
Co-authored-by: Moshe Good <[email protected]>
Co-authored-by: LaunchDarklyCI <[email protected]>
Co-authored-by: hroederld <[email protected]>
Co-authored-by: Dan Richelson <[email protected]>
Co-authored-by: Dan Richelson <[email protected]>
Co-authored-by: Ben Woskow <[email protected]>
Co-authored-by: Ben Woskow <[email protected]>
Co-authored-by: Louis Chan <[email protected]>
Co-authored-by: Louis Chan <[email protected]>
Co-authored-by: Casey Waldren <[email protected]>
Co-authored-by: Phil Z <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew M. Keeler <[email protected]>
Co-authored-by: Ember Stevens <[email protected]>
Co-authored-by: Molly <[email protected]>
Co-authored-by: ld-repository-standards[bot] <113625520+ld-repository-standards[bot]@users.noreply.github.com>
Co-authored-by: Kane Parkinson <[email protected]>
Co-authored-by: Ember Stevens <[email protected]>
Co-authored-by: Shalini Singh <[email protected]>
Co-authored-by: Shalini Singh <[email protected]>
Co-authored-by: Ryan Lamb <[email protected]>
Co-authored-by: Graeme McKerrell <[email protected]>
  • Loading branch information
26 people authored Jan 29, 2024
1 parent 3a1b4f5 commit 867897c
Show file tree
Hide file tree
Showing 29 changed files with 596 additions and 439 deletions.
359 changes: 0 additions & 359 deletions .circleci/config.yml

This file was deleted.

4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE/update_go_versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@ Note that between major releases, the Go team often ships multiple minor version

Run locally:
```bash
./scripts/update-go-release-version.sh {{ env.OFFICIAL_LATEST_VERSION }}
./scripts/update-go-release-version.sh {{ env.OFFICIAL_LATEST_VERSION }} {{ env.OFFICIAL_PENULTIMATE_VERSION }}
```

Then modify `.circle/config.yml`'s `go-previous-version` variable to `{{ env.OFFICIAL_PENULTIMATE_VERSION}}`.
27 changes: 27 additions & 0 deletions .github/actions/benchmarks/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Benchmarks
description: "Runs Relay's performance benchmarks."
inputs:
go-version:
description: 'Go version to use for build & test.'
required: true


runs:
using: composite
steps:
- name: Setup Go ${{ inputs.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ inputs.go-version }}

- name: Run Benchmarks
id: benchmarks
shell: bash
run: make benchmarks | tee benchmarks.txt

- name: Upload Results
if: steps.benchmarks.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: Benchmarks-go${{ inputs.go-version }}
path: benchmarks.txt
Loading

0 comments on commit 867897c

Please sign in to comment.