Commit graph

3038 commits

Author SHA1 Message Date
renovate[bot]
e1f15de101 chore(deps): update dependency eslint-plugin-storybook to v0.6.15 2023-10-26 13:14:29 -07:00
Owncast
f01ba6725a Commit screenshots 2023-10-26 13:14:29 -07:00
renovate[bot]
b1950b3d23 fix(deps): update dependency @fontsource/inter to v5.0.13 (#3354)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:14:29 -07:00
renovate[bot]
9db9a24d58 fix(deps): update nextjs monorepo to v13.5.4 2023-10-26 13:14:29 -07:00
renovate[bot]
137d519199 chore(deps): update dependency @types/node to v18.18.4 2023-10-26 13:14:29 -07:00
Owncast
91f1f511ec Commit screenshots 2023-10-26 13:14:29 -07:00
renovate[bot]
e23cdee794 chore(deps): update dependency knip to v2.31.0 2023-10-26 13:14:29 -07:00
renovate[bot]
4eeeca3936 chore(deps): update dependency eslint to v8.51.0 2023-10-26 13:14:29 -07:00
renovate[bot]
4bbd23afc5 chore(deps): update dependency sass to v1.69.0 2023-10-26 13:14:29 -07:00
renovate[bot]
c2926fe28d fix(deps): update dependency @codemirror/lang-markdown to v6.2.2 2023-10-26 13:14:29 -07:00
renovate[bot]
75bc588ab4 chore(deps): update dependency chromatic to v7.2.3 2023-10-26 13:14:29 -07:00
renovate[bot]
2a4da3271c chore(deps): update dependency mermaid to v10.5.0 2023-10-26 13:14:29 -07:00
renovate[bot]
a79901c8a0 chore(deps): update dependency knip to v2.30.1 2023-10-26 13:14:29 -07:00
Owncast
acc01e5bfe Commit screenshots 2023-10-26 13:14:29 -07:00
renovate[bot]
1ddd51a76a chore(deps): update dependency eslint to v8.50.0 2023-10-26 13:14:29 -07:00
Patrick Bollinger
d42a705d33 Stop Firefox from adding mysterious hash (#3348)
This resolves https://github.com/owncast/owncast/issues/3240

From the comments:
This was trickier than expected, but the root of the problem is Firefox will set `#` in the URL bar when `window.location.hash` is set to _any_ string, even a blank string. The morale of the story is, don't mutate base data if you just want to copy values. 😅

Sample of Firefox JavaScript console session that demonstrates the issue:
```javascript
>> window.location.href
"https://github.com/owncast/owncast/issues/3240"

>> const setBlankHash = () => { window.location.hash = ''; };
undefined

>> window.location.hash
""

>> window.location.href
"https://github.com/owncast/owncast/issues/3240"

>> setBlankHash()
undefined

>> // My browser just jumped to the top of the page
undefined

>> window.location.hash
""

>> window.location.href
"https://github.com/owncast/owncast/issues/3240#"
```
2023-10-26 13:14:28 -07:00
renovate[bot]
0cf77a1faa chore(deps): update dependency cypress to v13.3.0 2023-10-26 13:14:28 -07:00
renovate[bot]
b5e4001f78 chore(deps): update dependency @babel/core to v7.23.0 2023-10-26 13:13:49 -07:00
renovate[bot]
a4aec200dc fix(deps): update dependency @uiw/react-codemirror to v4.21.19 2023-10-26 13:13:49 -07:00
renovate[bot]
1c671fda35 fix(deps): update dependency @uiw/codemirror-theme-bbedit to v4.21.19 2023-10-26 13:13:49 -07:00
renovate[bot]
466c20e9d1 fix(deps): update dependency @fontsource/inter to v5.0.12 2023-10-26 13:13:49 -07:00
renovate[bot]
c16b9cbe27 chore(deps): update typescript-eslint monorepo to v6.7.4 2023-10-26 13:13:49 -07:00
Owncast
9736a23fb4 Commit screenshots 2023-10-26 13:13:49 -07:00
renovate[bot]
fbb18d2097 chore(deps): update dependency @types/react to v18.2.25 (#3318)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:49 -07:00
renovate[bot]
4e7d137d7d chore(deps): update dependency @types/video.js to v7.3.53 (#3345)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:49 -07:00
renovate[bot]
f8871624a4 chore(deps): update dependency stylelint-config-standard-scss to v11 (#3322)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:49 -07:00
renovate[bot]
ec8a27e316 chore(deps): update dependency chromatic to v7 (#3325)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:48 -07:00
renovate[bot]
e15a3a4657 chore(deps): update dependency npm to v10 (#3326)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:48 -07:00
Vishal Sharma
f788e07989 Update ClientTable.tsx (#3342)
* Update ClientTable.tsx

solves: #3339

## Changes

changed   owncast/web/components/admin/ClientTable.tsx line 44 `value={selectedKeys[0]})` to `value={selectedKeys[0].toString()} // Convert selectedKeys[0] to string
` as the value attribute expects a value of type string | number | readonly string[]` but previously it was assigned bigint.

* Update ClientTable.tsx

solves: #3339

## Changes

changed   owncast/web/components/admin/ClientTable.tsx line 44 `value={selectedKeys[0]})` to `value={selectedKeys[0].toString()} // Convert selectedKeys[0] to string
` as the value attribute expects a value of type `string | number | readonly string[]` but previously it was assigned bigint.
2023-10-26 13:13:48 -07:00
renovate[bot]
8e36363cdf chore(deps): update dependency eslint-plugin-storybook to v0.6.14 2023-10-26 13:13:48 -07:00
renovate[bot]
c1b29452bd chore(deps): update dependency @types/sanitize-html to v2.9.1 2023-10-26 13:13:48 -07:00
renovate[bot]
9a5ed23cbc chore(deps): update dependency @types/react-linkify to v1.0.2 2023-10-26 13:13:48 -07:00
renovate[bot]
42bf334c83 chore(deps): update dependency @types/node to v18.18.3 2023-10-26 13:13:48 -07:00
renovate[bot]
7d5a8455aa chore(deps): update dependency @types/markdown-it to v13.0.2 2023-10-26 13:13:48 -07:00
Owncast
3e72f3793d Commit screenshots 2023-10-26 13:13:48 -07:00
renovate[bot]
3ba1d551e5 chore(deps): update dependency @storybook/testing-library to v0.2.2 2023-10-26 13:13:48 -07:00
renovate[bot]
016334f18c fix(deps): update dependency react-virtuoso to v4.6.0 2023-10-26 13:13:48 -07:00
renovate[bot]
a7b6fe285b chore(deps): update dependency sass to v1.68.0 2023-10-26 13:13:48 -07:00
dependabot[bot]
0e3ae5a6a0 Bump zod and next in /web (#3340)
Bumps [zod](https://github.com/colinhacks/zod) to 3.22.4 and updates ancestor dependency [next](https://github.com/vercel/next.js). These dependencies need to be updated together.


Updates `zod` from 3.22.2 to 3.22.4
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](https://github.com/colinhacks/zod/compare/v3.22.2...v3.22.4)

Updates `next` from 13.4.19 to 13.5.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v13.4.19...v13.5.4)

---
updated-dependencies:
- dependency-name: zod
  dependency-type: indirect
- dependency-name: next
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-26 13:13:48 -07:00
Owncast
0ad77fa8e8 Commit screenshots 2023-10-26 13:13:48 -07:00
dependabot[bot]
e89e433c71 Bump postcss from 8.4.29 to 8.4.31 in /web (#3336)
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.29 to 8.4.31.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.4.29...8.4.31)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-26 13:13:48 -07:00
renovate[bot]
90df637210 fix(deps): update dependency @uiw/react-codemirror to v4.21.18 (#3341)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-26 13:13:48 -07:00
renovate[bot]
11d2c56eb7 fix(deps): update dependency autoprefixer to v10.4.16 2023-10-26 13:13:48 -07:00
renovate[bot]
08b3a07213 fix(deps): update dependency @uiw/codemirror-theme-bbedit to v4.21.18 2023-10-26 13:13:48 -07:00
renovate[bot]
28881c9157 fix(deps): update dependency sharp to v0.32.6 (#3320) 2023-10-26 13:13:48 -07:00
renovate[bot]
12bff5a1c0 chore(deps): update typescript-eslint monorepo to v6.7.3 2023-10-26 13:13:47 -07:00
renovate[bot]
193f2767eb chore(deps): update dependency @types/prop-types to v15.7.8 2023-10-26 13:13:47 -07:00
renovate[bot]
9a6f97f8c9 chore(deps): update dependency @types/node to v18.18.1 2023-10-26 13:13:47 -07:00
Owncast
86e880a46d Commit screenshots 2023-10-26 13:13:47 -07:00
Owncast
5ada2bf240 Commit screenshots 2023-10-26 13:13:47 -07:00