Commit graph

12239 commits

Author SHA1 Message Date
Christian Fehmer
8b409e58a1
Merge branch 'master' into feature/replace-lodash-with-estoolkit 2025-09-25 18:08:11 +02:00
Christian Fehmer
a2880dec75
impr: replace lodash with estoolkit (@fehmer) 2025-09-25 14:48:24 +02:00
MasterRon
a15d84e0ce
feat(layout): add gust layout (@MasterRon) (#6991)
### Description

<!-- Please describe the change(s) made in your PR -->

### Checks

- [ ] Adding quotes?
- [ ] Make sure to include translations for the quotes in the
description (or another comment) so we can verify their content.
- [ ] Adding a language?
- Make sure to follow the [languages
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LANGUAGES.md)
  - [ ] Add language to `packages/schemas/src/languages.ts`
- [ ] Add language to exactly one group in
`frontend/src/ts/constants/languages.ts`
  - [ ] Add language json file to `frontend/static/languages` 
- [ ] Adding a theme?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/THEMES.md)
  - [ ] Add theme to `packages/schemas/src/themes.ts`
  - [ ] Add theme to `frontend/src/ts/constants/themes.ts`
  - [ ] Add theme css file to `frontend/static/themes`
- [ ] Add some screenshot of the theme, especially with different test
settings (colorful, flip colors) to your pull request
- [ ] Adding a layout?
- [ ] Make sure to follow the [layouts
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LAYOUTS.md)
  - [ ] Add layout to `packages/schemas/src/layouts.ts`
  - [ ] Add layout json file to `frontend/static/layouts` 
- [ ] Adding a font?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/FONTS.md)
  - [ ] Add font file  to `frontend/static/webfonts`
  - [ ] Add font to `packages/schemas/src/fonts.ts`
  - [ ] Add font to `frontend/src/ts/constants/fonts.ts`
- [ ] Check if any open issues are related to this PR; if so, be sure to
tag them below.
- [ ] Make sure the PR title follows the Conventional Commits standard.
(https://www.conventionalcommits.org for more info)
- [ ] Make sure to include your GitHub username prefixed with @ inside
parentheses at the end of the PR title.

<!-- label(optional scope): pull request title (@your_github_username)
-->

<!-- I know I know they seem boring but please do them, they help us and
you will find out it also helps you.-->

Closes #

<!-- the issue(s) your PR resolves if any (delete if that is not the
case) -->
<!-- please also reference any issues and or PRs related to your pull
request -->
<!-- Also remove it if you are not following any issues. -->

<!-- pro tip: you can mention an issue, PR, or discussion on GitHub by
referencing its hash number e.g:
[#1234](https://github.com/monkeytypegame/monkeytype/pull/1234) -->

<!-- pro tip: you can press . (dot or period) in the code tab of any
GitHub repo to get access to GitHub's VS Code web editor Enjoy! :) -->
2025-09-25 13:47:17 +02:00
Christian Fehmer
42dcf16ad3
chore: remove search link not working in issue template (@fehmer) (#6993) 2025-09-25 12:53:15 +02:00
Christian Fehmer
b6ef5c0d8d
ci: run asset validation on any changes not just json files (@fehmer) (#6992) 2025-09-25 12:46:13 +02:00
Christian Fehmer
b903abd863
chore: add search links to bug report template (@fehmer) (#6990) 2025-09-25 12:31:35 +02:00
Jack
de847fc314
refactor(input validation): rework getting current validation status (@miodec) (#6988)
Rename to diffrentiate between the predicate `isValid` and the element
`isValid`
Return `ValidationResult` instead of just a boolean
Update usage to the new format
Move config specific `resetIfEmpty` to the `ConfigInputOptions` type
2025-09-24 16:00:37 +02:00
Miodec
f025b121cb impr(save custom text modal): add validation for custom text name input 2025-09-24 14:46:19 +02:00
Miodec
42f6a16c62 impr(modes-notice): escape custom text name for safe HTML rendering
!nuf
2025-09-24 14:45:13 +02:00
Miodec
9e5e4831a8 impr(input-validation): add trigger validation function
!nuf
2025-09-24 14:35:46 +02:00
Miodec
505049338f chore(about): escape supporters and contributors 2025-09-24 12:31:55 +02:00
Miodec
0d7d68f8b4 test: add unit tests for escapeHTML 2025-09-24 12:30:58 +02:00
Miodec
5da0713209 perf: speed up escapeHTML by ~3x 2025-09-24 12:28:09 +02:00
Eduardo Paul
a846d192d1
impr(quotes): add Portuguese quotes (@eduardopaul) (#6985)
These are some beautiful quotes in Portuguese by Machado de Assis.

> Entendeu o céu que devia regar com as suas lágrimas o solo da formosa
Petrópolis.
- "The sky understood that it should water the soil of the beautiful
Petrópolis with its tears."

> Olhos de ressaca? Vá, de ressaca. É o que me dá ideia daquela feição
nova. Traziam não sei que fluido misterioso e enérgico, uma força que
arrastava para dentro, como a vaga que se retira da praia, nos dias de
ressaca.
- "Eyes of a riptide? Yes, of a riptide. That’s the feeling I get from
that new expression. They carried some mysterious and energetic fluid, a
force that pulled inward, like the wave that draws back from the shore
after a storm."

> Apesar de generosa, é exigente, e quer da parte dos seus afilhados
algum esforço próprio. A fortuna não é Danaide. Quando vê que um tonel
esgota a água que se lhe põe dentro vai levar os seus cântaros a outra
parte.
- "Despite being generous, she is demanding and expects her godchildren
to make some effort of their own. Fortune isn’t a Danaid. When she sees
that a barrel runs out of water, she will take her jugs elsewhere."
2025-09-23 17:07:38 +02:00
Christian Fehmer
37418d0cf1
docs: update link to redis install guide (@fehmer) (#6984)
fixes #6983
2025-09-23 17:06:28 +02:00
Leonabcd123
a277bdd0d3
docs: fixed links on contributing.md not working from the main page (@Leonabcd123) (#6982)
### Description

Used absolute paths instead of relative to make sure that the links in
the contributing.md file always work.

Closes #6981 

Edit: just found #6848 which seemed to try and do the same thing, they
just didn't get the right solution, because they still used relative
paths.
2025-09-23 17:06:03 +02:00
Gabriel
a561076677
impr(quotes): add English quotes (@thesomewhatyou) (#6964)
### Description

Just added a few English quotes from some of my favorite movies. It
wasn't much, but I would love to see these quotes in Monkeytype.

### Checks

- [✓] Adding quotes?
- [N/A] Make sure to include translations for the quotes in the
description (or another comment) so we can verify their content.

---------

Co-authored-by: Miodec <jack@monkeytype.com>
2025-09-23 17:04:32 +02:00
Lucas Bourneuf
3d819115eb
impr(quotes): add 4 new french quotes (@aluriak) (#6934)
Few quotes.

- *The man of science knows full well that only science has been able,
over the centuries, to bring him the time clock and the automatic
parking meter, without which no earthly happiness is possible.* (Pierre
Desproges)
- *A pre-revolutionary situation erupts when those at the top can no
longer rule, those at the bottom no longer want to be ruled, and those
in the middle switch sides to join those at the bottom.* (Lenine)
- *There are decades when nothing happens, and weeks when decades
happen.* (idem)
- *There are no supreme saviors Neither God, nor Caesar, nor Tribune,
Producers, let us save ourselves Let us decree our common salvation.*
(l'internationale, a famous french song)

Co-authored-by: Lucas Bourneuf <lucas.bourneuf@chu-brest.fr>
2025-09-23 16:56:48 +02:00
Lucas Bourneuf
df81d7ce97
impr(quotes): add 9 new english quotes (@aluriak) (#6935)
Adding Carl Sagan, internet culture, various well-known IT-related
citations, and 2 citations from my favorite writer of late.

Co-authored-by: Lucas Bourneuf <lucas.bourneuf@chu-brest.fr>
Co-authored-by: Miodec <jack@monkeytype.com>
2025-09-23 16:56:24 +02:00
Miodec
94006b7e1f chore: add reminder 2025-09-23 16:45:36 +02:00
Christian Fehmer
18c465e82d
impr: add validation for preset names (@fehmer) (#6969) 2025-09-23 16:41:06 +02:00
TheFrenchTechMan
c08572bd89
impr(quotes): Add English quotes (@TheFrenchTechMan) (#6961)
### Description

<!-- Please describe the change(s) made in your PR -->

### Checks

- [X] Adding quotes?
- [X] Make sure to include translations for the quotes in the
description (or another comment) so we can verify their content.
- [ ] Adding a language?
- Make sure to follow the [languages
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LANGUAGES.md)
  - [ ] Add language to `packages/schemas/src/languages.ts`
- [ ] Add language to exactly one group in
`frontend/src/ts/constants/languages.ts`
  - [ ] Add language json file to `frontend/static/languages` 
- [ ] Adding a theme?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/THEMES.md)
  - [ ] Add theme to `packages/schemas/src/themes.ts`
  - [ ] Add theme to `frontend/src/ts/constants/themes.ts`
  - [ ] Add theme css file to `frontend/static/themes`
- [ ] Add some screenshot of the theme, especially with different test
settings (colorful, flip colors) to your pull request
- [ ] Adding a layout?
- [ ] Make sure to follow the [layouts
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LAYOUTS.md)
  - [ ] Add layout to `packages/schemas/src/layouts.ts`
  - [ ] Add layout json file to `frontend/static/layouts` 
- [ ] Adding a font?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/FONTS.md)
  - [ ] Add font file  to `frontend/static/webfonts`
  - [ ] Add font to `packages/schemas/src/fonts.ts`
  - [ ] Add font to `frontend/src/ts/constants/fonts.ts`
- [ ] Check if any open issues are related to this PR; if so, be sure to
tag them below.
- [ ] Make sure the PR title follows the Conventional Commits standard.
(https://www.conventionalcommits.org for more info)
- [ ] Make sure to include your GitHub username prefixed with @ inside
parentheses at the end of the PR title.

<!-- label(optional scope): pull request title (@your_github_username)
-->

<!-- I know I know they seem boring but please do them, they help us and
you will find out it also helps you.-->

Closes #

<!-- the issue(s) your PR resolves if any (delete if that is not the
case) -->
<!-- please also reference any issues and or PRs related to your pull
request -->
<!-- Also remove it if you are not following any issues. -->

<!-- pro tip: you can mention an issue, PR, or discussion on GitHub by
referencing its hash number e.g:
[#1234](https://github.com/monkeytypegame/monkeytype/pull/1234) -->

<!-- pro tip: you can press . (dot or period) in the code tab of any
GitHub repo to get access to GitHub's VS Code web editor Enjoy! :) -->
2025-09-23 16:40:09 +02:00
Miodec
1bf03e8dc2 refactor: use new util function 2025-09-22 13:13:01 +02:00
Miodec
02e92d0f3b impr: add debounced animation frame util
!nuf
2025-09-22 13:10:50 +02:00
Miodec
1479a26927 refactor: move resultVisible state to TestState 2025-09-21 15:44:39 +02:00
Miodec
2fc2c7bbe0 refactor: move testRestarting state to TestState 2025-09-21 15:44:39 +02:00
Ed-k
5275947f19
fix: Set result chart burst Y axis max after adding PB line (@Ed-k) (#6980)
### Description

The result chart burst axis maximum Y value needs to be updated after
adding the personal best line to keep the chart scale the same as the
wpm and raw lines.

### Checks

- [ ] Adding quotes?
- [ ] Make sure to include translations for the quotes in the
description (or another comment) so we can verify their content.
- [ ] Adding a language?
- Make sure to follow the [languages
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LANGUAGES.md)
  - [ ] Add language to `packages/schemas/src/languages.ts`
- [ ] Add language to exactly one group in
`frontend/src/ts/constants/languages.ts`
  - [ ] Add language json file to `frontend/static/languages` 
- [ ] Adding a theme?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/THEMES.md)
  - [ ] Add theme to `packages/schemas/src/themes.ts`
  - [ ] Add theme to `frontend/src/ts/constants/themes.ts`
  - [ ] Add theme css file to `frontend/static/themes`
- [ ] Add some screenshot of the theme, especially with different test
settings (colorful, flip colors) to your pull request
- [ ] Adding a layout?
- [ ] Make sure to follow the [layouts
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LAYOUTS.md)
  - [ ] Add layout to `packages/schemas/src/layouts.ts`
  - [ ] Add layout json file to `frontend/static/layouts` 
- [ ] Adding a font?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/FONTS.md)
  - [ ] Add font file  to `frontend/static/webfonts`
  - [ ] Add font to `packages/schemas/src/fonts.ts`
  - [ ] Add font to `frontend/src/ts/constants/fonts.ts`
- [ ] Check if any open issues are related to this PR; if so, be sure to
tag them below.
- [x] Make sure the PR title follows the Conventional Commits standard.
(https://www.conventionalcommits.org for more info)
- [x] Make sure to include your GitHub username prefixed with @ inside
parentheses at the end of the PR title.

<!-- label(optional scope): pull request title (@your_github_username)
-->

<!-- I know I know they seem boring but please do them, they help us and
you will find out it also helps you.-->

Closes #
#6979
2025-09-20 21:12:06 +02:00
Miodec
8629779a7b fix: words input positioning in tape mode 2025-09-20 15:56:40 +02:00
Miodec
0b67868d56 fix: typo
!nuf
2025-09-19 23:05:48 +02:00
Nad Alaba
4318601799
fix(funbox): caret/tape/ui issues in backwards funbox (@NadAlaba) (#6956)
### Description

1. refactor:
- store (language direction / state of direction reversing funbox) in
test-state.ts, and set them on `TestLogic.init()` which is called on
each restart which happens on each change of Config.language or funbox.
- use these new direction variables in (caret.ts / test-ui.ts /
pace-caret.ts /result-word-highlight.ts) instead of calling `await
JSONData.getCurrentLanguage(Config.language)`.

2. css changes:
- add `unicode-bidi: bidi-override;` to .words with ligatures in
backwards to fix the direction of LTR words on LTR languages in custom
tests (which now have `.withLigatures` class regardless of language).
- remove `direction: rtl;` from right to left .word and keep it on right
to left #words. This was done because after adding the above
`bidi-override`, (.word)s directioin was being forced to rtl on tests
with RTL language and RTL words (custom and none custom tests), which is
wrong (should be ltr on those tests because of the backwards funbox).
- P.S., removing this from .word does not affect normal tests, because
.word direction is inherited from #words directtion on non
.withLigatures tests (e.g, non custom tests in non withLigatures
languages), and it is calculated using internal browser algorithm based
on characters used in .withLigatures tests (tests in languages with
ligatures and all custom tests).

3. add the property "reverseDirection" to backwards funbox, which
signifies that the direction of the test should be the reverse of the
direction of Config.language, and the direction of a word should be the
reverse of `Strings.isWordRightToLeft()`.

4. allow backwards funbox to work on languages with ligatures.

5. move `void Caret.updatePosition()` call to after the call of
`TestUI.lineJump()` in `input-controller.ts:handleSpace()`.

6. change name of `Strings.getWordDirection()` to
`Strings.isWordRightToLeft()` which explains what does the returned
boolean mean, and add a parameter `reverseDirection` that flips the
final result if true.

---------

Co-authored-by: Miodec <jack@monkeytype.com>
2025-09-19 22:15:03 +02:00
Christian Fehmer
5026f41954
impr: add custom error codes to contracts and api doc (@fehmer) (#6976) 2025-09-19 18:59:46 +02:00
verdant23
74e4dd7b2a
feat(layout): add pine v4 layout (@verdant23) (#6958)
Adding in pine v4 from https://layouts.wiki/layouts/2021/pine/

### Description

<!-- Please describe the change(s) made in your PR -->

### Checks

- [ ] Adding quotes?
- [ ] Make sure to include translations for the quotes in the
description (or another comment) so we can verify their content.
- [ ] Adding a language?
- Make sure to follow the [languages
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LANGUAGES.md)
  - [ ] Add language to `packages/schemas/src/languages.ts`
- [ ] Add language to exactly one group in
`frontend/src/ts/constants/languages.ts`
  - [ ] Add language json file to `frontend/static/languages` 
- [ ] Adding a theme?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/THEMES.md)
  - [ ] Add theme to `packages/schemas/src/themes.ts`
  - [ ] Add theme to `frontend/src/ts/constants/themes.ts`
  - [ ] Add theme css file to `frontend/static/themes`
- [ ] Add some screenshot of the theme, especially with different test
settings (colorful, flip colors) to your pull request
- [x] Adding a layout?
- [x] Make sure to follow the [layouts
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/LAYOUTS.md)
  - [x] Add layout to `packages/schemas/src/layouts.ts`
  - [x] Add layout json file to `frontend/static/layouts` 
- [ ] Adding a font?
- Make sure to follow the [themes
documentation](https://github.com/monkeytypegame/monkeytype/blob/master/docs/FONTS.md)
  - [ ] Add font file  to `frontend/static/webfonts`
  - [ ] Add font to `packages/schemas/src/fonts.ts`
  - [ ] Add font to `frontend/src/ts/constants/fonts.ts`
- [ ] Check if any open issues are related to this PR; if so, be sure to
tag them below.
- [ ] Make sure the PR title follows the Conventional Commits standard.
(https://www.conventionalcommits.org for more info)
- [ ] Make sure to include your GitHub username prefixed with @ inside
parentheses at the end of the PR title.

<!-- label(optional scope): pull request title (@your_github_username)
-->

<!-- I know I know they seem boring but please do them, they help us and
you will find out it also helps you.-->

Closes #

<!-- the issue(s) your PR resolves if any (delete if that is not the
case) -->
<!-- please also reference any issues and or PRs related to your pull
request -->
<!-- Also remove it if you are not following any issues. -->

<!-- pro tip: you can mention an issue, PR, or discussion on GitHub by
referencing its hash number e.g:
[#1234](https://github.com/monkeytypegame/monkeytype/pull/1234) -->

<!-- pro tip: you can press . (dot or period) in the code tab of any
GitHub repo to get access to GitHub's VS Code web editor Enjoy! :) -->
2025-09-19 18:18:22 +02:00
Christian Fehmer
344e467f87
fix: password validation rules (@fehmer) (#6967)
fixes #6966 , #6965
2025-09-19 18:14:27 +02:00
Christian Fehmer
8810b1c51a
fix(testActivity): timezone edge case causing tests to appear on incorrect day (@fehmer) (#6968)
steps to reproduce:
- set the browsers timezone with minus offset that is greater then the
current time utc (so new Date() will land on yesterday)
- the easiest way to do this is to open dev tools, sensors and add a
location with timezone `Pacific/Pago_Pago` which is UTC-11
- have a user with no activity for  at least  the last two days  (utc)
- remember the last activity in the chart, e,g, August 8th has five
tests
- the last day on the chart is yesterday
- do a test
- graph now shows one activity for yesterday
- the remembered last activity is now shifted to e.g. August 7th with
five tests

fixed behaviour:
- same setup as before
- remember the last activity in the chart, e,g, August 8th has five
tests
- FIXED: the last day on the chart is today (in utc, so tomorrow in the
users timezone)
- do a  test
- FIXED graph shows one activity for today (in utc)
- FIXED the remembered last activity is still on August 8th with five
tests
2025-09-19 18:12:38 +02:00
Christian Fehmer
fa03afe307
impr(modals): missing/invalid inputs disable submit button (@fehmer) (#6973) 2025-09-19 18:11:24 +02:00
Nad Alaba
5fb5890c56
fix(fonts): add Vazirmatn src to css font-face (@NadAlaba) (#6971) 2025-09-19 18:02:31 +02:00
Christian Fehmer
81e2f93a97
docs: fix email link in security.md (@fehmer) (#6974) 2025-09-19 16:16:08 +02:00
Jack
16ad0e285a
refactor: test word centering behavior, words input position update (@miodc) (#6962)
brrr
2025-09-17 19:03:01 +02:00
Miodec
10130d7348 fix(language): fix typo
closes #6952
2025-09-12 18:12:19 +02:00
Nad Alaba
05c1b9e533
perf(quote search): optimize highlighting search matches (@NadAlaba) (#6944)
- use a simpler and 6x faster `highlightMatches` method.
- add tests.
2025-09-12 10:36:58 +02:00
Miodec
a33b464511 chore: change oxlint config to jsonc
also disable one rule
2025-09-11 22:04:48 +02:00
Miodec
1fa473744a chore: bump oxlint 2025-09-11 22:04:48 +02:00
Christian Fehmer
d1e118a01d
refactor: page loadingOptions rework (@miodec, @fehmer) (#6949)
Co-authored-by: Miodec <jack@monkeytype.com>
2025-09-11 15:56:14 +02:00
Miodec
31a7a2de08 fix(workspace): frontend debugging not working
!nuf
2025-09-11 12:24:35 +02:00
Miodec
1512e46dfc chore: update debug function 2025-09-11 12:18:34 +02:00
dependabot[bot]
b25bcb13e9
build(deps-dev): bump vite from 6.3.4 to 6.3.6 in /frontend (#6948)
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite)
from 6.3.4 to 6.3.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/releases">vite's
releases</a>.</em></p>
<blockquote>
<h2>v6.3.6</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v6.3.5</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v6.3.5/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->6.3.6 (2025-09-08)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: apply <code>fs.strict</code> check to HTML files (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736">#20736</a>)
(<a
href="0ab19ea9fc">0ab19ea</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/20736">#20736</a></li>
<li>fix: upgrade sirv to 3.0.2 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735">#20735</a>)
(<a
href="e11d24008b">e11d240</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/20735">#20735</a></li>
<li>test: detect ts support via <code>process.features</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20544">#20544</a>)
(<a
href="7d9922972b">7d99229</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/20544">#20544</a></li>
</ul>
<h2><!-- raw HTML omitted -->6.3.5 (2025-05-05)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix(ssr): handle uninitialized export access as undefined (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19959">#19959</a>)
(<a
href="fd38d076fe">fd38d07</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/19959">#19959</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3f337c5e24"><code>3f337c5</code></a>
release: v6.3.6</li>
<li><a
href="e11d24008b"><code>e11d240</code></a>
fix: upgrade sirv to 3.0.2 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735">#20735</a>)</li>
<li><a
href="0ab19ea9fc"><code>0ab19ea</code></a>
fix: apply <code>fs.strict</code> check to HTML files (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736">#20736</a>)</li>
<li><a
href="7d9922972b"><code>7d99229</code></a>
test: detect ts support via <code>process.features</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20544">#20544</a>)</li>
<li><a
href="84e4647efa"><code>84e4647</code></a>
release: v6.3.5</li>
<li><a
href="fd38d076fe"><code>fd38d07</code></a>
fix(ssr): handle uninitialized export access as undefined (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19959">#19959</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v6.3.6/packages/vite">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=6.3.4&new-version=6.3.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/monkeytypegame/monkeytype/network/alerts).

</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Miodec <jack@monkeytype.com>
2025-09-10 16:58:43 +02:00
Miodec
29fb547978 chore: remove dead leaderboards code 2025-09-10 12:26:25 +02:00
Leonabcd123
afbf6872ba
docs: fix typos (@Leonabcd123) (#6945)
Added an apostrophe in "It's"
Added missing "to"
Removed extra "s" in "quotes"
2025-09-10 11:57:59 +02:00
Jack
e529f1e177
fix(navigation): level up animation showing wrong level (@miodec) (#6946)
Introduced in #6865, caused by account button reacting to the
`snapshotUpdate` triggered by `addXp` function.

Fixed by merging result related snapshot functions into one and adding a
`noDispatchEvent` param to `setSnapshot` and using it in the new
function and `addXp`. This works because result and alerts panel both
call the `XPBar.update` directly to animate the xp gain.
2025-09-10 11:56:10 +02:00
Christian Fehmer
f9a9463534
test: fix presets test using fixed uids (@fehmer) (#6947) 2025-09-10 11:42:29 +02:00