-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded Jaeger exporter to use OTLP HTTP
- Loading branch information
Showing
21 changed files
with
333 additions
and
1,407 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## v1.1.0 - 2024-08-11 | ||
|
||
### Fixed | ||
* `Monthly` interval is now the same week every month (eg, first Monday of every month) - [#27](https://github.com/chat-roulettte/chat-roulette/pull/27) | ||
|
||
### Added | ||
* `QuadWeekly` interval option to preserve the old behavior of `Monthly` - [#27](https://github.com/chat-roulettte/chat-roulette/pull/27) | ||
|
||
### Changed | ||
* Jaeger now uses OTLP HTTP exporter - [#28](https://github.com/chat-roulettte/chat-roulette/pull/28) |
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 |
---|---|---|
|
@@ -18,15 +18,15 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.22 | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.50.1 | ||
version: v1.60.1 | ||
|
||
test: | ||
name: test | ||
|
@@ -35,7 +35,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.22 | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
@@ -46,7 +46,7 @@ jobs: | |
- name: Setup gotestsum | ||
uses: autero1/[email protected] | ||
with: | ||
gotestsum_version: 1.8.2 | ||
gotestsum_version: 1.12.0 | ||
|
||
- name: Run tests | ||
run: make go/testsum | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ go/tools: | |
go install github.com/miniscruff/[email protected] | ||
|
||
go/tidy: | ||
go mod tidy -compat=1.19 | ||
go mod tidy -compat=1.22 | ||
|
||
go/test: | ||
go test -v --cover ./... | ||
|
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
Oops, something went wrong.