There are 2 failures, 0 warnings, and 0 notices.
#github
1 messages ยท Page 87 of 1
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
[SevenTV/chatterino7] branch deleted: troy/fix\-scaling
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
4d462ee fix: dont use a pointer for the label and delet... - LosFarmosCTL
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
1c7ef9c remove websocket reference - TroyKomodo
0fac2e1 fix format + minor nits - TroyKomodo
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 3 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 3 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 4 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 3 failures, 0 warnings, and 0 notices.
You could use the stl here:
#include <algorithm>
bool found{std::any_of(vec1.begin(), vec1.end(), [&vec2](auto const &x) {
return std::find(vec2.begin(), vec2.end(), x) != vec2.end();
}))};
If you wanna be consistent with other changes you've made, you could do this to avoid another call to getApp and avoid repetition
if (auto eventApi = getApp()->twitch->eventApi)
eventApi->joinChannel(this->getName());
but that's honestly just nitpicking
I'm not aware of the context of the PR but this function name is honestly pretty hard to understand
Why not use a ranged for here? You can just dereference the shared_ptr to get a reference to the EmoteMap and then use it accordingly in the entire function
Where is the cpp delete
to free the memory, why not just use a smartptr here?
The whole condition is not needed, just initialize the variable in the class/header to nullptr
Initialize to nullptr here directly (related to the comment in the related .cpp file) and/or swap this with a smart pointer anyway.
This is never deleted
if (auto removed =
SeventvEmotes::removeEmote(this->seventvEmotes_, action.emoteName))
For consistency with the rest of the code
It is never deallocated because once running we don't stop it, the setting to disable it requires a restart.
Note: you don't even use removed anyway so might as well not have it
if (SeventvEmotes::removeEmote(this->seventvEmotes_, action.emoteName))
Code flow will be better if you invert that condition and return
if (!result.has_value())
return;
Same comment as in another file, for consistency:
if (auto eventApi = getApp()->twitch->eventApi)
eventApi->joinChannel(this->getName());
and/or swap this with a smart pointer anyway.
I agree. I've been following PubSub, which uses a c-style pointer.
Changed it to unique_ptr.
We're following the addOrReplaceTimeout method name.
@Nerixyz Thanks for your contribution to our branch of the Chatterino project. I assigned you the Contributor chat badge, which you can turn it on within the Wardrobe on 7tv.app (top right, golden hanger icon).
46562af chore(deps-dev): bump @typescript-eslint/parser... - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.4
Bumps @typescript-eslint/parser from 5.29.0 to 5.30.4.
Release notes
Sourced from @โtypescript-eslint/parser's releases.
v5.30.4
5.30.4 (2022-07-03)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
v5.30.3
5.30.3 (2022-07-01)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
v5.30.2
5.30.2 (2022-07-01)
Note: Version bump only for package @โtypescript-eslint/ty...
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.0
0157840 chore(deps-dev): bump @typescript-eslint/eslint... - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.4
Bumps @typescript-eslint/eslint-plugin from 5.29.0 to 5.30.4.
Release notes
Sourced from @โtypescript-eslint/eslint-plugin's releases.
v5.30.4
5.30.4 (2022-07-03)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
v5.30.3
5.30.3 (2022-07-01)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
v5.30.2
5.30.2 (2022-07-01)
Note: Version bump only for package @...
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.0
There are 2 failures, 0 warnings, and 0 notices.
f9f10c4 Bump github.com/aws/aws-sdk-go-v2 from 1.16.5 t... - dependabot[bot]
[SevenTV/image-processor] New branch created: dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-v2\-1\.16\.6
Bumps github.com/aws/aws-sdk-go-v2 from 1.16.5 to 1.16.6.
Changelog
Sourced from github.com/aws/aws-sdk-go-v2's changelog.
Release (2022-07-01)
General Highlights
Dependency Update: Updated to the latest SDK module versions
Module Highlights
github.com/aws/aws-sdk-go-v2/service/databasemigrationservice: v1.20.0
Feature: Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Orac...
02ccd8a Bump github.com/valyala/fasthttp from 1.37.0 to... - dependabot[bot]
[SevenTV/image-processor] New branch created: dependabot/go\_modules/go/dev/github\.com/valyala/fasthttp\-1\.38\.0
[image-processor:dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47] 1 new commit
4659e74 Bump github.com/aws/aws-sdk-go from 1.44.37 to ... - dependabot[bot]
[SevenTV/image-processor] New branch created: dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47
Bumps github.com/aws/aws-sdk-go from 1.44.37 to 1.44.47.
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.44.47 (2022-07-01)
Service Client Updates
service/dms: Updates service API and documentation
Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle.
service/rds: Updates service API, documentation, waiters, paginators, and examples
Adds suppor...
[SevenTV/image-processor] branch deleted: dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.42
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
b011cc6 Bump github.com/aws/aws-sdk-go from 1.43.31 to ... - dependabot[bot]
Bumps github.com/aws/aws-sdk-go from 1.43.31 to 1.44.47.
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.44.47 (2022-07-01)
Service Client Updates
service/dms: Updates service API and documentation
Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle.
service/rds: Updates service API, documentation, waiters, paginators, and examples
Adds suppor...
[SevenTV/ServerGo] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47
[SevenTV/ServerGo] branch deleted: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.42
Checklist
- [X] I'm reporting a problem with Chatterino
- [X] I've verified that I'm running the most recent nightly build or stable release
- [X] I've looked for my problem on the wiki
- [X] I've searched the issues and pull requests for similar looking reports
Describe your issue
Paints render in system messages like timeouts. I would expect that either both the username color is rende...
[Website] Branch ci/update\-locale was force-pushed to `a09ab09`
01279f4 Bump github.com/valyala/fasthttp from 1.34.0 to... - dependabot[bot]
[SevenTV/EventAPI] New branch created: dependabot/go\_modules/dev/github\.com/valyala/fasthttp\-1\.38\.0
Bumps github.com/valyala/fasthttp from 1.34.0 to 1.38.0.
Release notes
Sourced from github.com/valyala/fasthttp's releases.
v1.38.0
16d30c4 Support AIX SO_REUSEADDR and SO_REUSEPORT (#1328) (zhangyongding)
bc24f9d Consolidate TCPKeepalive in server.Serve (#1320) (#1324) (Y.Horie)
8a32089 Add ConnPoolStrategy field to client (#1317) (Thearas)
35aca7b BodyDecoded() for request and responses (#1308) (Sergey Ponomarev)
66cd502 header.go Referer() optimize...
[SevenTV/EventAPI] branch deleted: dependabot/go\_modules/dev/github\.com/valyala/fasthttp\-1\.37\.0
f09496d Bump github.com/aws/aws-sdk-go from 1.44.40 to ... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47
[SevenTV/API] Pull request opened: #31 Bump github\.com/aws/aws\-sdk\-go from 1\.44\.40 to 1\.44\.47
Bumps github.com/aws/aws-sdk-go from 1.44.40 to 1.44.47.
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.44.47 (2022-07-01)
Service Client Updates
service/dms: Updates service API and documentation
Added new features for AWS DMS version 3.4.7 that includes new endpoint settings for S3, OpenSearch, Postgres, SQLServer and Oracle.
service/rds: Updates service API, documentation, waiters, paginators, and examples
Adds suppor...
[SevenTV/API] branch deleted: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.43
d4de50f Bump github.com/vektah/gqlparser/v2 from 2.4.5 ... - dependabot[bot]
Bumps github.com/vektah/gqlparser/v2 from 2.4.5 to 2.4.6.
Release notes
Sourced from github.com/vektah/gqlparser/v2's releases.
v2.4.6
What's Changed
Check for non-enum values on validation by @โameyarao98 in vektah/gqlparser#227
Replace deprecated ioutil pkg with os & io by @โabhinavnair in vektah/gqlparser#228
New Contributors
@โameyarao98 made their first contribution in vektah/gqlparser#227
@โabhinavnair made their first contribution in vekt...
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/vektah/gqlparser/v2\-2\.4\.6
2a42be6 Bump github.com/99designs/gqlgen from 0.17.10 t... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/99designs/gqlgen\-0\.17\.11
[SevenTV/API] Pull request opened: #33 Bump github\.com/99designs/gqlgen from 0\.17\.10 to 0\.17\.11
Bumps github.com/99designs/gqlgen from 0.17.10 to 0.17.11.
Release notes
Sourced from github.com/99designs/gqlgen's releases.
v0.17.11
What's Changed
Replace deprecated ioutil pkg with os & io by @โabhinavnair in 99designs/gqlgen#2254
Fix PR links in CHANGELOG.md by @โskaji in 99designs/gqlgen#2257
Use the go:embed API to lookup templates by @โclayne11 in 99designs/gqlgen#2262
Make uploads content seekable by @โDesuuuu in 99designs/gqlgen#2247
gql...
There are 1 failures, 0 warnings, and 0 notices.
[Website] Branch ci/update\-locale was force-pushed to `466aac7`
81e7ced chore(deps-dev): bump @typescript-eslint/eslint... - dependabot[bot]
Bumps @typescript-eslint/eslint-plugin from 5.29.0 to 5.30.5.
Release notes
Sourced from @โtypescript-eslint/eslint-plugin's releases.
v5.30.5
5.30.5 (2022-07-04)
Bug Fixes
eslint-plugin: [consistent-indexed-object-style] fix record mode fixer for generics with a default value (#5280) (57f032c)
v5.30.4
5.30.4 (2022-07-03)
Bug Fixes
eslint-plugin: [no-base-to-string] add missing apostrophe to messag...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.5
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.4
5e7be2f chore(deps-dev): bump @typescript-eslint/parser... - dependabot[bot]
Bumps @typescript-eslint/parser from 5.29.0 to 5.30.5.
Release notes
Sourced from @โtypescript-eslint/parser's releases.
v5.30.5
5.30.5 (2022-07-04)
Bug Fixes
eslint-plugin: [consistent-indexed-object-style] fix record mode fixer for generics with a default value (#5280) (57f032c)
v5.30.4
5.30.4 (2022-07-03)
Bug Fixes
eslint-plugin: [no-base-to-string] add missing apostrophe to message (#5270) (d320174)
...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.5
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.4
This also applies to hosting messages.
Dependabot tried to merge this PR, but received the following error from GitHub:
You're not authorized to push to this branch. Visit https://docs.github.com/articles/about-protected-branches/ for more information.
84fed76 fix(deps): bump @formkit/vue from 1.0.0-beta.8 ... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/formkit/vue\-1\.0\.0\-beta\.9
Looks like @formkit/themes is up-to-date now, so this is no longer needed.
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/formkit/themes\-1\.0\.0\-beta\.9
3018ba8 chore(deps-dev): bump eslint from 8.18.0 to 8.19.0 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/eslint\-8\.19\.0
Bumps eslint from 8.18.0 to 8.19.0.
Release notes
Sourced from eslint's releases.
v8.19.0
Features
7023628 feat: add importNames support for patterns in no-restricted-imports (#16059) (Brandon Scott)
472c368 feat: fix handling of blockless with statements in indent rule (#16068) (Milos Djermanovic)
Bug Fixes
fc81848 fix: throw helpful exception when rule has wrong return type (#16075) (Bryan Mishkin)
Documentation
3ae0574 docs: Remove duplicate rule ...
41697cb fix(deps): bump vue-router from 4.0.16 to 4.1.1 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vue\-router\-4\.1\.1
Bumps vue-router from 4.0.16 to 4.1.1.
Release notes
Sourced from vue-router's releases.
v4.1.1
Please refer to CHANGELOG.md for details.
v4.1.0
Vue Router 4.1
We are excited to announce the release of Vue Router 4.1 with a few new interesting features, better support for Node ESM and no breaking changes.
Omitting the component/components option in routes
It's now possible to completely omit the component option when defining routes with children. While ne...
96d7042 fix(deps): bump motion from 10.10.0 to 10.11.2 - dependabot[bot]
Bumps motion from 10.10.0 to 10.11.2.
Commits
See full diff in compare view
Dependabot will resolve any conflicts ...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/motion\-10\.11\.2
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/motion\-10\.11\.0
Looks like @typescript-eslint/parser is up-to-date now, so this is no longer needed.
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.5
Looks like eslint is up-to-date now, so this is no longer needed.
Looks like vue-tsc is up-to-date now, so this is no longer needed.
Looks like motion is up-to-date now, so this is no longer needed.
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/motion\-10\.11\.2
Looks like vite is up-to-date now, so this is no longer needed.
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/vite\-2\.9\.13
Looks like vue-router is up-to-date now, so this is no longer needed.
Looks like @typescript-eslint/eslint-plugin is up-to-date now, so this is no longer needed.
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.5
[Website] Branch ci/update\-locale was force-pushed to `d6ae984`
I'm also having this issue, but it's not when I type the emotes, it's during raids, it seems to render a random heart emote before and after other emotes.

12cf01a chore(deps-dev): bump vue-tsc from 0.38.2 to 0.... - dependabot[bot]
Bumps vue-tsc from 0.38.2 to 0.38.3.
Changelog
Sourced from vue-tsc's changelog.
0.38.3 (2022/7/7)
feat: support html, css intellisense for petite-vue (#1471)
fix: avoid unknown jsx property error for vue 2.7 (#1533)
fix: fixed GlobalComponents interface not working edge case (#1489)
fix: stricter slots type extracting (#1522)
fix: nuxt app preview not working
Commits
acc6c3a v0.38.3
See full diff in compare view
...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vue\-tsc\-0\.38\.3
a229e89 chore(deps-dev): bump postcss-html from 1.4.1 t... - dependabot[bot]
Bumps postcss-html from 1.4.1 to 1.5.0.
Release notes
Sourced from postcss-html's releases.
v1.5.0
What's Changed
Update dependency htmlparser2 to v8 by @โrenovate in ota-meshi/postcss-html#49
Fixed incorrect parsing for svelte. by @โota-meshi in ota-meshi/postcss-html#61
Add support for astro component by @โota-meshi in ota-meshi/postcss-html#62
Full Changelog: https://github.com/ota-meshi/postcss-html/compare/v1.4.1...v1.5.0
Commits
22f8a...
[Website] Branch ci/update\-locale was force-pushed to `0226da0`
[SevenTV/chatterino7] Pull request opened: #112 fix\(eventapi\): only remove emotes with the same id
Pull request checklist:
- [ ]
CHANGELOG.mdwas updated, if applicable
Description
This PR fixes the following scenario:
- Emote 1 with name
foois added (typingfooshows emote 1) - Emote 2 with name
foois added (typingfooshows emote 2) - Emote 1 is removed (typing
foowouldn't show any emote; now shows emote 2)
This PR doesn't fix the following scenario:
- Emote 1 with name
foois added (typingfooshows emote 1) - Emote 2 with name
foois added ...
There are 1 failures, 0 warnings, and 0 notices.
491d6b5 fix: Update emote_slots property of EmoteSet - AnatoleAM
[Website] Branch ci/update\-locale was force-pushed to `424b193`
c94e01f fix(deps): bump crowdin/github-action from 1.4.... - dependabot[bot]
Bumps crowdin/github-action from 1.4.9 to 1.4.10.
Release notes
Sourced from crowdin/github-action's releases.
1.4.10
Updated
Bump CLI version to 3.7.9
Commits
12143a6 Merge pull request #121 from crowdin/Version-1.4.10
3c26279 Update README.md
83a28a5 Update README.md
a406cb7 Update README.md
49f4557 Merge pull request #130 from crowdin/add_skip_ref_checkout_option
baf2fd4 add skip_ref_checkout option
61feede Merge pull request #125 from cr...
[SevenTV/Website] New branch created: dependabot/github\_actions/dev/crowdin/github\-action\-1\.4\.10
7b60aa5 fix(deps): bump motion from 10.11.2 to 10.12.0 - dependabot[bot]
Bumps motion from 10.11.2 to 10.12.0.
Commits
See full diff in compare view
Dependabot will resolve any conflicts ...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/motion\-10\.12\.0
75a01c5 chore(deps-dev): bump vite from 2.9.13 to 2.9.14 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vite\-2\.9\.14
Bumps vite from 2.9.13 to 2.9.14.
Changelog
Sourced from vite's changelog.
2.9.14 (2022-07-08)
fix: backport #8979, re-encode url to prevent fs.allow bypass (fixes #8498) (#8990) (adb61c5), closes #8498 #8990
fix: reverts #8471 (da77dee), closes #8471
fix(css): backport #7746 (d4d89b9), closes #7746
fix(css): backport #8936 (#8977) (84ec02a), closes #8936 #8977
Commits
0d13630 release: v2.9.14
adb61c5 fix: backport #8979, re-en...
There are 1 failures, 0 warnings, and 0 notices.
0b3c11c fix(deps): bump @vueuse/core from 8.9.0 to 8.9.1 - dependabot[bot]
f30c861 Bump github.com/aws/aws-sdk-go-v2 from 1.16.5 t... - dependabot[bot]
[SevenTV/image-processor] New branch created: dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-v2\-1\.16\.7
Bumps github.com/aws/aws-sdk-go-v2 from 1.16.5 to 1.16.7.
Commits
5b7b9fc Release 2022-07-05
69a608f Regenerated Clients
0d7445b Update endpoints model
3cb58cb Update API model
6e3856d aws/retry: fix typo in comment at Attempt.HandleFinalize (#1753)
681ca65 service/sqs: Add support for validating message checksums by default (#1748)
7ece169 Release 2022-07-01
e0cb637 Regenerated Clients
56779da Update API model
e614a23 codegen: add support for additio...
[image-processor:dependabot/go\_modules/go/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.51] 1 new commit
d87f2ca Bump github.com/aws/aws-sdk-go from 1.44.37 to ... - dependabot[bot]
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
4c826fe Bump github.com/gofiber/fiber/v2 from 2.31.0 to... - dependabot[bot]
[SevenTV/ServerGo] New branch created: dependabot/go\_modules/dev/github\.com/gofiber/fiber/v2\-2\.35\.0
Bumps github.com/gofiber/fiber/v2 from 2.31.0 to 2.35.0.
Release notes
Sourced from github.com/gofiber/fiber/v2's releases.
v2.35.0
๐ New
Add params parse (#1964)
https://docs.gofiber.io/api/ctx#paramsparser
middleware/monitor: Add some parameters to config for supporting #1936 (#1956)
https://docs.gofiber.io/api/middleware/monitor
๐งน Updates
Binds the param string to a struct use params tag (#1968)
Client: Remove beta warning (#1951)
Bump github.com/va...
[SevenTV/ServerGo] branch deleted: dependabot/go\_modules/dev/github\.com/gofiber/fiber/v2\-2\.34\.1
35d64e7 Bump github.com/aws/aws-sdk-go from 1.43.31 to ... - dependabot[bot]
Bumps github.com/aws/aws-sdk-go from 1.43.31 to 1.44.51.
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.44.51 (2022-07-08)
Service Client Updates
service/backup: Updates service API and documentation
Release v1.44.50 (2022-07-07)
Service Client Updates
service/chime-sdk-meetings: Updates service API and documentation
service/dms: Updates service API and documentation
New api to migrate event subscriptions to event bridge ...
[SevenTV/ServerGo] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.51
[SevenTV/ServerGo] branch deleted: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47
76b153a v2: fix user query if user has no bound emote set - AnatoleAM
There are 2 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 2 failures, 0 warnings, and 0 notices.
There are 3 failures, 0 warnings, and 0 notices.
There are 10 failures, 0 warnings, and 0 notices.
4dd3df2 Bump github.com/aws/aws-sdk-go from 1.44.40 to ... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.52
[SevenTV/API] Pull request opened: #34 Bump github\.com/aws/aws\-sdk\-go from 1\.44\.40 to 1\.44\.52
Bumps github.com/aws/aws-sdk-go from 1.44.40 to 1.44.52.
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.44.52 (2022-07-11)
Service Client Updates
service/ec2: Updates service API, documentation, and paginators
Build, manage, and monitor a unified global network that connects resources running across your cloud and on-premises environments using the AWS Cloud WAN APIs.
service/redshift: Updates service API and documentatio...
[SevenTV/API] branch deleted: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.47
3971849 Bump github.com/99designs/gqlgen from 0.17.10 t... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/99designs/gqlgen\-0\.17\.12
[SevenTV/API] Pull request opened: #35 Bump github\.com/99designs/gqlgen from 0\.17\.10 to 0\.17\.12
Bumps github.com/99designs/gqlgen from 0.17.10 to 0.17.12.
Release notes
Sourced from github.com/99designs/gqlgen's releases.
v0.17.12
What's Changed
Make GET.Do() use ParseQuery() instead of URL.Query() by @โameyarao98 in 99designs/gqlgen#2269
Replace use of strings.Title with cases.Title by @โtmc in 99designs/gqlgen#2268
Fix CreateTodo by @โsj14 in 99designs/gqlgen#2256
New Contributors
@โameyarao98 made their first contribution in 99designs/gqlge...
6b510a8 fix(deps): bump pinia from 2.0.14 to 2.0.15 - dependabot[bot]
Bumps pinia from 2.0.14 to 2.0.15.
Release notes
Sourced from pinia's releases.
pinia@2.0.15
Please refer to CHANGELOG.md for details.
Commits
0e2d2df release: @โpinia/nuxt@โ0.2.0 pinia@2.0.15
8f00c3b build: release script
bd0c52f fix(nuxt): plugin injection on latest Nuxt 3 context (#1433)
08fa257 docs: typos and references
dd20e84 chore: comment fix
40934f0 chore: up deps
8ed5800 chore: add test of whole store
8626aac docs: Add Vue School Sumer Sale b...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/pinia\-2\.0\.15
87e4c11 chore(deps-dev): bump @typescript-eslint/parser... - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.6
Bumps @typescript-eslint/parser from 5.30.5 to 5.30.6.
Release notes
Sourced from @โtypescript-eslint/parser's releases.
v5.30.6
5.30.6 (2022-07-11)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
Changelog
Sourced from @โtypescript-eslint/parser's changelog.
5.30.6 (2022-07-11)
Note: Version bump only for package @โtypescript-eslint/parser
Commits
6fd476c chore: publish v5....
10046a0 chore(deps-dev): bump vue-tsc from 0.38.2 to 0.... - dependabot[bot]
Bumps vue-tsc from 0.38.2 to 0.38.5.
Changelog
Sourced from vue-tsc's changelog.
0.38.5 (2022/7/11)
fix: file path resolve incorrect on windows (#1554, #1555, #1556, #1557, #1558, #1559)
0.38.4 (2022/7/11)
feat: add vueCompilerOptions.strictTemplates (#1418)
fix: don't auto close ``` (#1428)
fix: change unknown slot type from unknown to any (#1541)
fix: SFC templates outline incorrect (#1531)
fix: slot shorthand highlig...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vue\-tsc\-0\.38\.5
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/vue\-tsc\-0\.38\.3
Thanks for this change, perhaps we can look at solutions to fix for both scenarios? Although this might require a bit of refactoring.
They render for both on my instance


but you are correct they didnt use to render.
[SevenTV/Website] New branch created: troy/add\-prod
58e9deb fix(deps): bump @fortawesome/vue-fontawesome fr... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/fortawesome/vue\-fontawesome\-3\.0\.1
14d7941 fix(deps): bump azure/setup-kubectl from 2.1 to... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/github\_actions/dev/azure/setup\-kubectl\-3\.0
eef77f2 Add new locales (#499) - github-actions[bot]
4e0ec87 chore(deps-dev): bump lint-staged from 13.0.2 t... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/lint\-staged\-13\.0\.3
6606ced chore(deps-dev): bump eslint-plugin-prettier fr... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/eslint\-plugin\-prettier\-4\.2\.1
687576a chore(deps-dev): bump postcss-html from 1.4.1 t... - dependabot[bot]
bc8eff9 fix(deps): bump crowdin/github-action from 1.4.... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/postcss\-html\-1\.5\.0
22c268a fix(deps): bump motion from 10.11.2 to 10.12.0 ... - dependabot[bot]
936c1c0 chore(deps-dev): bump vite from 2.9.13 to 2.9.1... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/github\_actions/dev/crowdin/github\-action\-1\.4\.10
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/motion\-10\.12\.0
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/vite\-2\.9\.14
47e2d52 fix(deps): bump @vueuse/core from 8.9.0 to 8.9.... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/vueuse/core\-8\.9\.1
bdb5c5f add prod - TroyKomodo
58e9deb fix(deps): bump @fortawesome/vue-fontawesome fr... - dependabot[bot]
14d7941 fix(deps): bump azure/setup-kubectl from 2.1 to... - dependabot[bot]
eef77f2 Add new locales (#499) - github-actions[bot]
4e0ec87 chore(deps-dev): bump lint-staged from 13.0.2 t... - dependabot[bot]
da510e6 fix(deps): bump pinia from 2.0.14 to 2.0.15 (#524) - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/pinia\-2\.0\.15
6fc8260 chore(deps-dev): bump @typescript-eslint/parser... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/typescript\-eslint/parser\-5\.30\.6
bdb5c5f add prod - TroyKomodo
58e9deb fix(deps): bump @fortawesome/vue-fontawesome fr... - dependabot[bot]
14d7941 fix(deps): bump azure/setup-kubectl from 2.1 to... - dependabot[bot]
eef77f2 Add new locales (#499) - github-actions[bot]
4e0ec87 chore(deps-dev): bump lint-staged from 13.0.2 t... - dependabot[bot]
7039838 chore(deps-dev): bump vue-tsc from 0.38.2 to 0.... - dependabot[bot]
[SevenTV/Website] branch deleted: dependabot/npm\_and\_yarn/dev/vue\-tsc\-0\.38\.5
[SevenTV/API] New branch created: troy/add\-prod
[SevenTV/API] branch deleted: anatole/finish\-v2\-sim
c3e2737 Bump azure/setup-kubectl from 2.0 to 3.0 (#27) - dependabot[bot]
[SevenTV/API] branch deleted: dependabot/github\_actions/dev/azure/setup\-kubectl\-3\.0
[SevenTV/EventAPI] branch deleted: anatole/eventapi\-v3
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an [ignore condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-upda...
de7eac6 Bump azure/setup-kubectl from 2.1 to 3.0 - dependabot[bot]
Bumps azure/setup-kubectl from 2.1 to 3.0.
Release notes
Sourced from azure/setup-kubectl's releases.
v3.0 release
Commits
7f7e5ba: Add node modules and compiled JavaScript from main (#57) (github-actions[bot]) #57
Lower kubectl directory permissions
Commits
7f7e5ba Add node modules and compiled JavaScript from main (#57)
d893f27 bump jest and fix integration test (#55)
0939291 upgraded to Node16 (#53)
d449d75 lower permissions for chmod (#51)...
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an [ignore condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-upda...
[SevenTV/EventAPI] New branch created: dependabot/github\_actions/dev/azure/setup\-kubectl\-3\.0
0d406be Bump golangci/golangci-lint-action from 3.1.0 t... - dependabot[bot]
[SevenTV/EventAPI] New branch created: dependabot/github\_actions/dev/golangci/golangci\-lint\-action\-3\.2\.0
[SevenTV/EventAPI] branch deleted: dependabot/github\_actions/dev/dominikh/staticcheck\-action\-1\.2\.0
[SevenTV/EventAPI] branch deleted: dependabot/github\_actions/dev/docker/setup\-buildx\-action\-2
There are 1 failures, 0 warnings, and 0 notices.
[SevenTV/API] branch deleted: troy/add\-prod
[SevenTV/Website] branch deleted: troy/add\-prod
There are 1 failures, 0 warnings, and 0 notices.
[API] Branch dependabot/go\_modules/dev/github\.com/valyala/fasthttp\-1\.38\.0 was force-pushed to `de72084`
5a50707 Bump github.com/aws/aws-sdk-go from 1.44.42 to ... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-1\.44\.53
Looks like github.com/golang-jwt/jwt/v4 is up-to-date now, so this is no longer needed.
Looks like github.com/99designs/gqlgen is up-to-date now, so this is no longer needed.
[SevenTV/API] branch deleted: dependabot/go\_modules/dev/github\.com/vektah/gqlparser/v2\-2\.4\.6
f9364a8 Bump github.com/aws/aws-sdk-go-v2 from 1.16.5 t... - dependabot[bot]
[SevenTV/API] New branch created: dependabot/go\_modules/dev/github\.com/aws/aws\-sdk\-go\-v2\-1\.16\.7
Bumps github.com/aws/aws-sdk-go-v2 from 1.16.5 to 1.16.7.
Commits
5b7b9fc Release 2022-07-05
69a608f Regenerated Clients
0d7445b Update endpoints model
3cb58cb Update API model
6e3856d aws/retry: fix typo in comment at Attempt.HandleFinalize (#1753)
681ca65 service/sqs: Add support for validating message checksums by default (#1748)
7ece169 Release 2022-07-01
e0cb637 Regenerated Clients
56779da Update API model
e614a23 codegen: add support for additio...
There are 1 failures, 0 warnings, and 0 notices.
1e46c63 fix(deps): bump dompurify from 2.3.8 to 2.3.9 - dependabot[bot]
Bumps dompurify from 2.3.8 to 2.3.9.
Release notes
Sourced from dompurify's releases.
DOMPurify 2.3.9
Made TAG and ATTR config options case-sensitive when parsing XHTML, thanks @โtosmolka
Bumped some dependencies, thanks @โis2ei
Included github-actions in the dependabot config, thanks @โnathannaveen
Commits
52c8eb1 chore: Updated website
6ec9e42 chore: Preparing 2.3.9 release
912245b Merge pull request #695 from cure53/dependabot/npm_and_yarn/she...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/dompurify\-2\.3\.9
There are 1 failures, 0 warnings, and 0 notices.
2f95507 fix(deps): bump @vueuse/core from 8.9.1 to 8.9.2 - dependabot[bot]
Bumps @vueuse/core from 8.9.1 to 8.9.2.
Release notes
Sourced from @โvueuse/core's releases.
v8.9.2
ย ย ย ๐ Features
onClickOutside: Add detectIframe option ย -ย by @โsibbng in vueuse/vueuse#1795
useVModel: Compact with 2.7, fix #1745 ย -ย by @โjiuran in vueuse/vueuse#1798
๐ Bug Fixes
useMagicKeys: Fix setting properties of undefined value ย -ย by @โMatrixbirds in vueuse/vueuse#1856
View changes on GitHub
Commits
dea9961 c...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vueuse/core\-8\.9\.2
There are 1 failures, 0 warnings, and 0 notices.
c335a9d fix(deps): bump marked from 4.0.17 to 4.0.18 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/marked\-4\.0\.18
Bumps marked from 4.0.17 to 4.0.18.
Release notes
Sourced from marked's releases.
v4.0.18
4.0.18 (2022-07-11)
Bug Fixes
fix heading in list item (#2520) (01c98d1)
Commits
459085b chore(release): 4.0.18 [skip ci]
9fb5721 ๐๏ธ build [skip ci]
01c98d1 fix: fix heading in list item (#2520)
c906a1f chore(deps): Bump moment from 2.29.3 to 2.29.4 (#2530)
7b39f94 chore(deps-dev): Bump rollup from 2.75.7 to 2.76.0 (#2528)
9633c19 chore(deps-dev): Bump @โsema...
e2a86e5 fix(deps): bump pinia from 2.0.15 to 2.0.16 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/pinia\-2\.0\.16
Bumps pinia from 2.0.15 to 2.0.16.
Release notes
Sourced from pinia's releases.
pinia@2.0.16
Please refer to CHANGELOG.md for details.
Commits
e2e9f1d release: @โpinia/nuxt@โ0.2.1 pinia@2.0.16
96c0dbc fix: add missing require in exports
0f68174 fix(nuxt): add back the nuxtState
fd833d7 chore(pinia): types when esm exports (#1443)
46775cf fix(nuxt): use context.payload
See full diff in compare view
[: bump stylelint-config-recommen... - dependabot[bot]
Bumps stylelint-config-recommended-scss from 6.0.0 to 7.0.0.
Release notes
Sourced from stylelint-config-recommended-scss's releases.
7.0.0
Changed: updated to stylelint-config-recommended@8.0.0.
Changelog
Sourced from stylelint-config-recommended-scss's changelog.
7.0.0
Changed: updated to stylelint-config-recommended@8.0.0.
Commits
e1b0b3d 7.0.0
3d80802 Prepare 7.0.0
de054eb Bump stylelint-config-recommende...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/stylelint\-config\-recommended\-scss\-7\.0\.0
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
ce49fee chore(deps-dev): bump @typescript-eslint/eslint... - dependabot[bot]
Bumps @typescript-eslint/eslint-plugin from 5.30.5 to 5.30.6.
Release notes
Sourced from @โtypescript-eslint/eslint-plugin's releases.
v5.30.6
5.30.6 (2022-07-11)
Note: Version bump only for package @โtypescript-eslint/typescript-eslint
Changelog
Sourced from @โtypescript-eslint/eslint-plugin's changelog.
5.30.6 (2022-07-11)
Note: Version bump only for package @โtypescript-eslint/eslint-plugin
...
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/typescript\-eslint/eslint\-plugin\-5\.30\.6
a66fa74 fix(deps): bump vue-router from 4.1.1 to 4.1.2 - dependabot[bot]
[SevenTV/Website] New branch created: dependabot/npm\_and\_yarn/dev/vue\-router\-4\.1\.2
Bumps vue-router from 4.1.1 to 4.1.2.
Release notes
Sourced from vue-router's releases.
v4.1.2
Please refer to CHANGELOG.md for details.
Commits
08670e0 release: vue-router@4.1.2
5f3febe fix: allow requiring in cjs context (#1465)
6f0f3ae docs: update changelog link (#1464)
8082035 fix: force relativse link in types exportcs
51193e5 ci: skip bs in forks
0f053db fix(types): allow symbol type (#1460)
2df87ef feat(types): simplify props types
ef27a2d docs...
There are 1 failures, 0 warnings, and 0 notices.
Looks like docker/login-action is no longer a dependency, so this is no longer needed.
Looks like docker/build-push-action is up-to-date now, so this is no longer needed.
Looks like actions/cache is up-to-date now, so this is no longer needed.
Looks like github.com/prometheus/client_golang is up-to-date now, so this is no longer needed.
[SevenTV/EventAPI] branch deleted: dependabot/go\_modules/dev/github\.com/spf13/viper\-1\.12\.0
Looks like golangci/golangci-lint-action is no longer a dependency, so this is no longer needed.
Looks like github.com/valyala/fasthttp is up-to-date now, so this is no longer needed.
[EventAPI] Branch dependabot/github\_actions/dev/azure/setup\-kubectl\-3\.0 was force-pushed to `f2c33e5`
[SevenTV/EventAPI] branch deleted: dependabot/go\_modules/dev/github\.com/valyala/fasthttp\-1\.38\.0
All changes look good
d41705f Bump github.com/prometheus/client_golang from 1... - dependabot[bot]
ebd542a Bump github.com/fasthttp/websocket from 1.4.5 t... - dependabot[bot]
332bee0 Bump actions/setup-node from 2 to 3 (#41) - dependabot[bot]
b2b5cce Bump golangci/golangci-lint-action from 2 to 3.... - dependabot[bot]
1021b4c Bump azure/setup-kubectl from 2.0 to 2.1 (#43) - dependabot[bot]
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.
There are 1 failures, 0 warnings, and 0 notices.