dependabot[bot]
a70647e968
Bump source-map-loader from 4.0.1 to 5.0.0
...
Bumps [source-map-loader](https://github.com/webpack-contrib/source-map-loader ) from 4.0.1 to 5.0.0.
- [Release notes](https://github.com/webpack-contrib/source-map-loader/releases )
- [Changelog](https://github.com/webpack-contrib/source-map-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack-contrib/source-map-loader/compare/v4.0.1...v5.0.0 )
---
updated-dependencies:
- dependency-name: source-map-loader
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected] >
2024-02-24 12:23:53 +00:00
Christopher Serr
c54123f150
Implement Layout Background Images ( #844 )
...
This adds support for layout background images. This also includes a
bunch of smaller fixes.
2024-02-24 13:22:56 +01:00
Christopher Serr
23a63575e7
Update dependencies ( #827 )
2023-11-30 17:50:51 +01:00
Christopher Serr
9c71a7c8c9
Allow stepping through the Rust code ( #826 )
...
This allows stepping through the Rust code. `wasm-bindgen` 0.2.89 just
got released and it finally properly allows keeping the debug symbols
that Rust creates around fully. Thankfully `webpack` does not pose a
problem here and the debug symbols now properly work in Chrome, allowing
us to step through the Rust code in the developer tools.
2023-11-30 17:33:17 +01:00
Christopher Serr
6139d064eb
Update dependencies ( #799 )
2023-08-14 22:28:39 +02:00
Christopher Serr
b2f61313ac
Implement Screen Wake Lock Support ( #781 )
...
This attempts to use the Screen Wake Lock API to prevent the screen from
turning off. This is available in iOS 16.4 now, however at least when
adding the app to the home screen as a PWA, the functionality seems to
be broken. Regardless, that's not something we can fix. We can instead
simply always try to activate it and hopefully Apple fixes the bug soon.
https://bugs.webkit.org/show_bug.cgi?id=254545
2023-03-29 00:04:00 +02:00
Christopher Serr
92ff28d9ef
Activate WebAssembly SIMD by default ( #779 )
...
With Safari / iOS 16.4 having released, WebAssembly SIMD is now
available on all browsers. This should help with parsing performance.
While the update released just today, we do tell people to update iOS if
they haven't already, so I believe it's fine to already publish this.
https://webkit.org/blog/13966/webkit-features-in-safari-16-4/
2023-03-28 00:46:39 +02:00
Christopher Serr
9c4e22a4d5
Download a prebuilt version of binaryen ( #777 )
...
This downloads a prebuilt version of `binaryen` instead of manually
building it from scratch, which takes a very long time.
2023-03-12 22:16:20 +01:00
Christopher Serr
612de270f6
Fix livesplit-core bindings ( #776 )
...
Turns out that `wasm-bindgen` `v0.2.84` really requires us to import the
main module as that's where they now dynamically set the wasm file.
Additionally this improves our CI a little, by downloading a prebuilt
version of `wasm-bindgen-cli`.
2023-03-12 21:54:04 +01:00
Christopher Serr
e7b893edce
Implement more Detailed Timer Settings ( #765 )
...
This implements the following settings / features for the Detailed
Timer:
1. The ability to set / override the colors of the timer, segment timer,
segment name, comparison names and comparison times.
2. The ability to turn off the gradient of the timer and segment timer.
3. The ability to set the accuracy of the comparison times.
This also updates all the npm packages to their latest versions.
2023-01-24 20:26:02 +01:00
Christopher Serr
3d8f36cb00
Resolve Key Codes with livesplit-core ( #748 )
...
This updates `livesplit-core` such that we can resolve the key codes
with its built-in resolving code. Also since `livesplit-core` introduced
a `max-opt` profile, we make use of that now and on top of that also
introduce `virtual-function-elimination` for the nightly / CI builds.
This is an additional LLVM pass that tries to eliminate as many function
pointers as possible by analyzing the whole program. Locally this
reduced the size of the function pointer table from around 500 to around
400 entries. There's also a flag for using WebAssembly SIMD
instructions, as that works perfectly fine on all browsers except
Safari. Of course we won't use it for deploying until Safari supports
those instructions, but it may be useful for some local testing.
Also with this `livesplit-core` update `SpeedRunIGT` splits can now be
parsed.
2022-11-08 18:42:55 +01:00
Christopher Serr
f1515265a2
Build Rust's std with immediate abort ( #746 )
...
We generally want the wasm file to be as compact as possible. However
because there's so many paths in Rust code that could panic, but don't
ever in practice as they are meant to signal bugs, the wasm file has to
keep around all those panic paths, and even worse, all the code for
formatting the panic messages for all those different types that could
be involved in a panic. This bloats the binary a lot. There's a nightly
feature to build the standard library as part of your compilation and
with that you can pass various features to the standard library, just
like with any other crate. And one of those features is to remove all
the formatting machinery from the panics and just immediately abort,
resulting in smaller binaries. On top of that by building the standard
library ourselves we also get to build it with all our target features,
meaning that its code will make use of all the additional WebAssembly
instructions that have been added since the MVP. So this essentially is
a big win. However this forces us to use the nightly compiler, but it
usually is actually quite stable. We won't be using any nightly features
of the language itself and only optionally use the compiler in our CI,
so the stable compiler continues to work just fine for local
development.
2022-11-08 01:18:32 +01:00
Christopher Serr
4a74d42012
Implement Hotkey Modifiers ( #740 )
...
This adds support for hotkey modifiers, such as Ctrl, Alt, Shift and the
Meta key. On top of that I ran `npm update` to truly update all the
packages to their latest semver compatible versions, which `dependabot`
doesn't seem to do for us. This also includes other updates in
`livesplit-core` that were done since the last update, such as the
precise formatting and parsing of the time stamps.
2022-10-12 17:50:09 +02:00
Christopher Serr
7706863a41
Update the favicons-webpack-plugin ( #739 )
...
While this technically updates us to an alpha version, this resolves all
of the remaining security issues.
2022-10-05 01:01:37 +02:00
Christopher Serr
2c371bf9f7
Update most remaining dependencies ( #737 )
...
This updates all the remaining dependencies that I was able to update.
React is still at version 16 because some of the components I use
apparently haven't been updated to support more recent versions of
React.
2022-10-01 16:09:51 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5ede560acd
Bump react-refresh-typescript from 2.0.2 to 2.0.7 ( #713 )
...
Bumps [react-refresh-typescript](https://github.com/Jack-Works/react-refresh-transformer ) from 2.0.2 to 2.0.7.
- [Release notes](https://github.com/Jack-Works/react-refresh-transformer/releases )
- [Commits](https://github.com/Jack-Works/react-refresh-transformer/commits )
---
updated-dependencies:
- dependency-name: react-refresh-typescript
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-01 01:57:36 +02:00
Christopher Serr
30c38779ce
Update some dependencies ( #730 )
...
This should hopefully allow dependabot to progress further.
2022-10-01 01:50:46 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
4653ad072c
Bump json-schema, jsprim and workbox-webpack-plugin ( #729 )
...
Bumps [json-schema](https://github.com/kriszyp/json-schema ) to 0.4.0 and updates ancestor dependencies [json-schema](https://github.com/kriszyp/json-schema ), [jsprim](https://github.com/joyent/node-jsprim ) and [workbox-webpack-plugin](https://github.com/googlechrome/workbox ). These dependencies need to be updated together.
Updates `json-schema` from 0.2.3 to 0.4.0
- [Release notes](https://github.com/kriszyp/json-schema/releases )
- [Commits](https://github.com/kriszyp/json-schema/compare/v0.2.3...v0.4.0 )
Updates `jsprim` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/joyent/node-jsprim/releases )
- [Changelog](https://github.com/TritonDataCenter/node-jsprim/blob/v1.4.2/CHANGES.md )
- [Commits](https://github.com/joyent/node-jsprim/compare/v1.4.1...v1.4.2 )
Updates `workbox-webpack-plugin` from 6.4.1 to 6.5.4
- [Release notes](https://github.com/googlechrome/workbox/releases )
- [Commits](https://github.com/googlechrome/workbox/compare/v6.4.1...v6.5.4 )
---
updated-dependencies:
- dependency-name: json-schema
dependency-type: indirect
- dependency-name: jsprim
dependency-type: indirect
- dependency-name: workbox-webpack-plugin
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 02:03:11 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
c0c846155a
Bump node-forge and webpack-dev-server ( #728 )
...
Bumps [node-forge](https://github.com/digitalbazaar/forge ) to 1.3.1 and updates ancestor dependency [webpack-dev-server](https://github.com/webpack/webpack-dev-server ). These dependencies need to be updated together.
Updates `node-forge` from 0.10.0 to 1.3.1
- [Release notes](https://github.com/digitalbazaar/forge/releases )
- [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md )
- [Commits](https://github.com/digitalbazaar/forge/compare/0.10.0...v1.3.1 )
Updates `webpack-dev-server` from 4.7.2 to 4.11.1
- [Release notes](https://github.com/webpack/webpack-dev-server/releases )
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack/webpack-dev-server/compare/v4.7.2...v4.11.1 )
---
updated-dependencies:
- dependency-name: node-forge
dependency-type: indirect
- dependency-name: webpack-dev-server
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 01:54:35 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
9788e176ac
Bump terser from 5.9.0 to 5.15.0 ( #727 )
...
Bumps [terser](https://github.com/terser/terser ) from 5.9.0 to 5.15.0.
- [Release notes](https://github.com/terser/terser/releases )
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md )
- [Commits](https://github.com/terser/terser/compare/v5.9.0...v5.15.0 )
---
updated-dependencies:
- dependency-name: terser
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 00:56:38 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
b38e50fc35
Bump react-twemoji from 0.3.0 to 0.5.0 ( #684 )
...
Bumps [react-twemoji](https://github.com/zxmys/react-twemoji ) from 0.3.0 to 0.5.0.
- [Release notes](https://github.com/zxmys/react-twemoji/releases )
- [Commits](https://github.com/zxmys/react-twemoji/compare/0.3.0...0.5.0 )
---
updated-dependencies:
- dependency-name: react-twemoji
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 00:25:44 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
d7260f239e
Bump lodash-es from 4.17.15 to 4.17.21 ( #682 )
...
Bumps [lodash-es](https://github.com/lodash/lodash ) from 4.17.15 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases )
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.21 )
---
updated-dependencies:
- dependency-name: lodash-es
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-29 00:25:24 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fa4a129892
Bump webpack-cli from 4.8.0 to 4.9.2 ( #674 )
...
Bumps [webpack-cli](https://github.com/webpack/webpack-cli ) from 4.8.0 to 4.9.2.
- [Release notes](https://github.com/webpack/webpack-cli/releases )
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack/webpack-cli/compare/[email protected] @4.9.2 )
---
updated-dependencies:
- dependency-name: webpack-cli
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 22:49:50 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39a884f599
Bump style-loader from 3.3.0 to 3.3.1 ( #669 )
...
Bumps [style-loader](https://github.com/webpack-contrib/style-loader ) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/webpack-contrib/style-loader/releases )
- [Changelog](https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack-contrib/style-loader/compare/v3.3.0...v3.3.1 )
---
updated-dependencies:
- dependency-name: style-loader
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 22:49:26 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dd05ca342b
Bump follow-redirects from 1.14.4 to 1.15.2 ( #725 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.14.4 to 1.15.2.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.4...v1.15.2 )
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 22:48:55 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8ed46b9bad
Bump http-server from 14.0.0 to 14.1.1 ( #696 )
...
Bumps [http-server](https://github.com/http-party/http-server ) from 14.0.0 to 14.1.1.
- [Release notes](https://github.com/http-party/http-server/releases )
- [Commits](https://github.com/http-party/http-server/compare/v14.0.0...v14.1.1 )
---
updated-dependencies:
- dependency-name: http-server
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 22:34:12 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
06e928e922
Bump async from 2.6.3 to 2.6.4 ( #723 )
...
Bumps [async](https://github.com/caolan/async ) from 2.6.3 to 2.6.4.
- [Release notes](https://github.com/caolan/async/releases )
- [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md )
- [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4 )
---
updated-dependencies:
- dependency-name: async
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 22:33:35 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
643c40c3b0
Bump moment from 2.29.1 to 2.29.4 ( #708 )
...
Bumps [moment](https://github.com/moment/moment ) from 2.29.1 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases )
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/moment/moment/compare/2.29.1...2.29.4 )
---
updated-dependencies:
- dependency-name: moment
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 20:53:15 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
cf4881d969
Bump nanoid and mocha ( #720 )
...
Bumps [nanoid](https://github.com/ai/nanoid ) to 3.3.1 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha ). These dependencies need to be updated together.
Updates `nanoid` from 3.1.25 to 3.3.1
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.1.25...3.3.1 )
Updates `mocha` from 9.1.3 to 9.2.2
- [Release notes](https://github.com/mochajs/mocha/releases )
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mochajs/mocha/compare/v9.1.3...v9.2.2 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
- dependency-name: mocha
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 20:47:11 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fc3fddc908
Bump minimist and jimp ( #719 )
...
Bumps [minimist](https://github.com/substack/minimist ) and [jimp](https://github.com/oliver-moran/jimp ). These dependencies needed to be updated together.
Updates `minimist` from 1.2.5 to 1.2.6
- [Release notes](https://github.com/substack/minimist/releases )
- [Commits](https://github.com/substack/minimist/commits )
Updates `jimp` from 0.2.28 to 0.16.1
- [Release notes](https://github.com/oliver-moran/jimp/releases )
- [Changelog](https://github.com/oliver-moran/jimp/blob/master/CHANGELOG.md )
- [Commits](https://github.com/oliver-moran/jimp/compare/0.2.28...v0.16.1 )
---
updated-dependencies:
- dependency-name: minimist
dependency-type: indirect
- dependency-name: jimp
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 20:46:55 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
014d8d0242
Bump ejs from 3.1.6 to 3.1.8 ( #718 )
...
Bumps [ejs](https://github.com/mde/ejs ) from 3.1.6 to 3.1.8.
- [Release notes](https://github.com/mde/ejs/releases )
- [Changelog](https://github.com/mde/ejs/blob/main/CHANGELOG.md )
- [Commits](https://github.com/mde/ejs/compare/v3.1.6...v3.1.8 )
---
updated-dependencies:
- dependency-name: ejs
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 20:46:43 +02:00
dependabot[bot] and dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
149c000c8d
Bump simple-get from 3.1.0 to 3.1.1 ( #717 )
...
Bumps [simple-get](https://github.com/feross/simple-get ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/feross/simple-get/releases )
- [Commits](https://github.com/feross/simple-get/compare/v3.1.0...v3.1.1 )
---
updated-dependencies:
- dependency-name: simple-get
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected] >
Signed-off-by: dependabot[bot] <[email protected] >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-28 20:46:21 +02:00
Christopher Serr
df51936aea
Update livesplit-core ( #716 )
...
This updates `livesplit-core` to the latest version. This mostly adds
custom variable columns and allows for the timer to visualize the delta
for the background. There's some performance improvements as well.
Also we now build `livesplit-core` in debug mode by default when
building locally. So compilation is a little bit
faster and additional debug checks are active, such as integer
overflows.
2022-09-28 20:27:36 +02:00
wooferzfg
ecc2ab89a2
Update npm link
2022-09-08 17:15:56 -04:00
Christopher Serr
811a17f30a
Merge pull request #657 from chrissantamaria/fix-multiple-websockets
...
Fix ability to have multiple active websocket connections
2022-01-02 18:24:07 +01:00
dependabot[bot]
f954f8abf5
Merge pull request #665 from LiveSplit/dependabot/npm_and_yarn/types/react-dom-17.0.11
2022-01-02 17:16:22 +00:00
dependabot[bot]
26c357f780
Merge pull request #664 from LiveSplit/dependabot/npm_and_yarn/webpack-dev-server-4.7.2
2022-01-02 16:57:49 +00:00
dependabot[bot]
287244972f
Merge pull request #662 from LiveSplit/dependabot/npm_and_yarn/pmmmwh/react-refresh-webpack-plugin-0.5.4
2022-01-02 16:57:37 +00:00
dependabot[bot]
9ee91505d0
Bump @pmmmwh/react-refresh-webpack-plugin from 0.5.1 to 0.5.4
...
Bumps [@pmmmwh/react-refresh-webpack-plugin](https://github.com/pmmmwh/react-refresh-webpack-plugin ) from 0.5.1 to 0.5.4.
- [Release notes](https://github.com/pmmmwh/react-refresh-webpack-plugin/releases )
- [Changelog](https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/CHANGELOG.md )
- [Commits](https://github.com/pmmmwh/react-refresh-webpack-plugin/compare/v0.5.1...v0.5.4 )
---
updated-dependencies:
- dependency-name: "@pmmmwh/react-refresh-webpack-plugin"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-02 16:28:35 +00:00
dependabot[bot]
7d70957656
Bump @types/react-dom from 17.0.10 to 17.0.11
...
Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ) from 17.0.10 to 17.0.11.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-02 16:27:59 +00:00
dependabot[bot]
5f02263616
Merge pull request #663 from LiveSplit/dependabot/npm_and_yarn/types/node-17.0.5
2022-01-02 16:27:31 +00:00
dependabot[bot]
f6d1b6f1bb
Merge pull request #661 from LiveSplit/dependabot/npm_and_yarn/types/react-resizable-1.7.4
2022-01-02 16:27:15 +00:00
dependabot[bot]
57392c1635
Merge pull request #659 from LiveSplit/dependabot/npm_and_yarn/react-toastify-8.1.0
2022-01-02 16:27:06 +00:00
Christopher Serr
35ccb06e1b
Merge pull request #658 from LiveSplit/dependabot/npm_and_yarn/sass-1.45.2
...
Bump sass from 1.43.4 to 1.45.2
2022-01-02 17:26:45 +01:00
dependabot[bot]
3d5e0830b5
Bump webpack-dev-server from 4.3.1 to 4.7.2
...
Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server ) from 4.3.1 to 4.7.2.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases )
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack/webpack-dev-server/compare/v4.3.1...v4.7.2 )
---
updated-dependencies:
- dependency-name: webpack-dev-server
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-01 08:03:05 +00:00
dependabot[bot]
da752884a0
Bump @types/node from 16.10.3 to 17.0.5
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 16.10.3 to 17.0.5.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-01 08:02:36 +00:00
dependabot[bot]
bcd8bb3183
Bump @types/react-resizable from 1.7.3 to 1.7.4
...
Bumps [@types/react-resizable](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-resizable ) from 1.7.3 to 1.7.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-resizable )
---
updated-dependencies:
- dependency-name: "@types/react-resizable"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-01 08:01:41 +00:00
dependabot[bot]
869fdda6a6
Bump react-toastify from 7.0.4 to 8.1.0
...
Bumps [react-toastify](https://github.com/fkhadra/react-toastify ) from 7.0.4 to 8.1.0.
- [Release notes](https://github.com/fkhadra/react-toastify/releases )
- [Commits](https://github.com/fkhadra/react-toastify/compare/v7.0.4...v8.1.0 )
---
updated-dependencies:
- dependency-name: react-toastify
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-01 08:00:58 +00:00
dependabot[bot]
a8d7c4e5f0
Bump sass from 1.43.4 to 1.45.2
...
Bumps [sass](https://github.com/sass/dart-sass ) from 1.43.4 to 1.45.2.
- [Release notes](https://github.com/sass/dart-sass/releases )
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md )
- [Commits](https://github.com/sass/dart-sass/compare/1.43.4...1.45.2 )
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected] >
2022-01-01 08:00:39 +00:00
Chris Santamaria
82341eb7b5
Close potential WS connection on unmount
2021-12-31 15:54:35 -05:00