Update versions: compose - 1.3.0 and kotlin - 1.8.0 (#2651)

* Update versions in examples

* Add more scripts to validate example on android and k/js

* Add validateExamplesIos.sh

* Update CHANGELOG.md for 1.3.0

* check examples with 1.3.0-rc06

* Update the versions: compose-multiplatform - 1.3.0, kotlin - 1.8.0

* Update ComposeCompilerCompatibility (1.4.0)

* Update web/yarn.lock
This commit is contained in:
Oleksandr Karpovich
2023-01-30 21:02:23 +01:00
committed by GitHub
parent 8f3beed1fa
commit bc6d42ef44
54 changed files with 307 additions and 109 deletions

View File

@@ -1,3 +1,33 @@
# 1.3.0 (January 2023)
## Common
### Fixes
- [Fix configuration cache issues](https://github.com/JetBrains/compose-jb/pull/2607)
- [Use global directory to download wix toolset](https://github.com/JetBrains/compose-jb/pull/2639)
- [IDEA plugin - Redo: set until-build to undefined value](https://github.com/JetBrains/compose-jb/pull/2658)
## Desktop
### Features
- [Desktop AlertDialog scrim color](https://github.com/JetBrains/androidx/pull/358)
- [Material 3 DropdownMenu Skiko support](https://github.com/JetBrains/androidx/pull/347)
### Fixes
- [Fix San Francisco font as a default (macOS)](https://github.com/JetBrains/androidx/pull/343)
- [Make ScrollbarAdapter for LazyList take contentPadding into account](https://github.com/JetBrains/androidx/pull/365)
- [Fix AlertDialog dismiss on click to Dialog content](https://github.com/JetBrains/androidx/pull/359)
- [Fix shaky scrolling of LazyColumn when the items are of varying size](https://github.com/JetBrains/androidx/pull/362)
## Dependencies
This version of Compose Multiplatform is based on the next Jetpack Compose libraries:
- [Compiler 1.4.0](https://developer.android.com/jetpack/androidx/releases/compose-compiler#1.4.0)
- [Runtime 1.3.3](https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.3.3)
- [UI 1.3.3](https://developer.android.com/jetpack/androidx/releases/compose-ui#1.3.3)
- [Foundation 1.3.1](https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.3.1)
- [Material 1.3.1](https://developer.android.com/jetpack/androidx/releases/compose-material#1.3.1)
- [Material3 1.0.1](https://developer.android.com/jetpack/androidx/releases/compose-material3#1.0.1)
# 1.2.2 (December 2022)
## Desktop

View File

@@ -1,2 +1,2 @@
compose.version=1.2.2
compose.version=1.3.0
kotlin.code.style=official

View File

@@ -3,9 +3,9 @@ android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
# __KOTLIN_COMPOSE_VERSION__
kotlin.version=1.7.20
kotlin.version=1.8.0
# __LATEST_COMPOSE_RELEASE_VERSION__
compose.version=1.3.0-beta02
compose.version=1.3.0
agp.version=7.3.1
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}
@@ -23,4 +23,4 @@ android {
dependencies {
implementation(project(":common"))
implementation("androidx.activity:activity-compose:1.5.0")
}
}

View File

@@ -34,11 +34,11 @@ kotlin {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
sourceSets {

View File

@@ -19,6 +19,6 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}

View File

@@ -33,11 +33,11 @@ kotlin {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
compileOptions {

View File

@@ -19,6 +19,6 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}

View File

@@ -38,11 +38,11 @@ apollo {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
compileOptions {

View File

@@ -19,6 +19,6 @@ kotlin.code.style=official
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0

View File

@@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}

View File

@@ -20,11 +20,11 @@ kotlin {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
compileOptions {

View File

@@ -19,6 +19,6 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0

View File

@@ -27,5 +27,5 @@ kotlin.native.disableCompilerDaemon=true
# After updating Compose Multiplatform version, update corresponding Jetpack Compose versions
# in Android module (search "Workaround for https://github.com/JetBrains/compose-jb/issues/2340")
#TODO also change version in buildSrc/gradle.properties
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -0,0 +1,28 @@
#!/bin/bash
# Script to build most of the examples, to verify if they can compile.
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "Specify Compose and Kotlin version. For example: ./validateExamplesAndroid.sh 1.1.1 1.6.10"
exit 1
fi
COMPOSE_VERSION=$1
KOTLIN_VERSION=$2
runGradle() {
pushd $1
./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks
popd
}
# requires an emulator running or an Android device to be connected
runGradle codeviewer installDebug
runGradle imageviewer installDebug
runGradle issues installDebug
runGradle todoapp-lite installDebug
runGradle widgets-gallery installDebug
runGradle todoapp installDebug

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -2,5 +2,5 @@ kotlin.code.style=official
kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
kotlin.js.webpack.major.version=4
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}
@@ -23,4 +23,4 @@ android {
dependencies {
implementation(project(":common"))
implementation("androidx.activity:activity-compose:1.5.0")
}
}

View File

@@ -32,11 +32,11 @@ kotlin {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
compileOptions {
@@ -50,4 +50,4 @@ android {
res.srcDirs("src/androidMain/res", "src/commonMain/resources")
}
}
}
}

View File

@@ -19,6 +19,6 @@ android.useAndroidX=true
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0
agp.version=7.1.3

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.1
compose.version=1.3.0

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.3.0-beta04-dev885
compose.version=1.3.0

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.1
compose.version=1.3.0

View File

@@ -12,7 +12,7 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0
ktor.version=2.2.1

View File

@@ -1,5 +1,5 @@
kotlin.stdlib.default.dependency=false
kotlin.code.style=official
kotlin.version=1.7.10
compose.version=1.2.0
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.3.0-beta04-dev885
compose.version=1.3.0

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.1
compose.version=1.3.0

View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Script to build most of the examples, to verify if they can compile.
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "Specify Compose and Kotlin version. For example: ./validateExamples.sh 1.1.1 1.6.10"
exit 1
fi
COMPOSE_VERSION=$1
KOTLIN_VERSION=$2
runGradle() {
pushd $1
./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks
popd
}
runGradle chat-mpp packageDistributionForCurrentOS
runGradle codeviewer packageDistributionForCurrentOS
runGradle falling-balls-mpp packageDistributionForCurrentOS
runGradle imageviewer packageDistributionForCurrentOS
runGradle minesweeper packageDistributionForCurrentOS
runGradle todoapp-lite packageDistributionForCurrentOS
runGradle visual-effects packageDistributionForCurrentOS
runGradle widgets-gallery packageDistributionForCurrentOS

View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Script to build most of the examples, to verify if they can compile.
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "Specify Compose and Kotlin version. For example: ./validateExamplesAndroid.sh 1.1.1 1.6.10"
exit 1
fi
COMPOSE_VERSION=$1
KOTLIN_VERSION=$2
runGradle() {
pushd $1
./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks
popd
}
runGradle chat-mpp installDebug
runGradle codeviewer installDebug
runGradle falling-balls-mpp installDebug
runGradle imageviewer installDebug
runGradle minesweeper installDebug
runGradle todoapp-lite installDebug
runGradle visual-effects installDebug
runGradle widgets-gallery installDebug

View File

@@ -0,0 +1,41 @@
#!/bin/bash
# Script to build most of the examples, to verify if they can compile.
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "Specify Compose and Kotlin version. For example: ./validateExamplesIos.sh 1.1.1 1.6.10"
exit 1
fi
COMPOSE_VERSION=$1
KOTLIN_VERSION=$2
ARCH="$(uname -m)"
isX86="$ARCH"=="x86_64"
linkCmd=""
if [ isX86 ]; then
linkCmd="linkIosX64"
else
linkCmd="linkIosArm64"
fi
runGradle() {
pushd $1
echo "Validating $1"
./gradlew clean $linkCmd -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks || (echo "Failed $1" && exit 1)
popd
}
runGradle chat-mpp
runGradle codeviewer
runGradle falling-balls-mpp
runGradle imageviewer
runGradle todoapp-lite
runGradle visual-effects
runGradle widgets-gallery
runGradle minesweeper

View File

@@ -0,0 +1,29 @@
#!/bin/bash
# Script to build most of the examples, to verify if they can compile.
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
set -euo pipefail
if [ "$#" -ne 2 ]; then
echo "Specify Compose and Kotlin version. For example: ./validateExamplesWithJs.sh 1.1.1 1.6.10"
exit 1
fi
COMPOSE_VERSION=$1
KOTLIN_VERSION=$2
runGradle() {
pushd $1
./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks
popd
}
runGradle chat-mpp jsBrowserProductionWebpack
#runGradle codeviewer jsBrowserProductionWebpack
runGradle falling-balls-mpp jsBrowserProductionWebpack
#runGradle imageviewer jsBrowserProductionWebpack
runGradle minesweeper jsBrowserProductionWebpack
#runGradle todoapp-lite jsBrowserProductionWebpack
#runGradle visual-effects jsBrowserProductionWebpack
#runGradle widgets-gallery jsBrowserProductionWebpack

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.1
compose.version=1.3.0

View File

@@ -12,6 +12,6 @@ kotlin.native.enableDependencyPropagation=false
kotlin.mpp.enableGranularSourceSetsMetadata=true
# Enable kotlin/native experimental memory model
kotlin.native.binary.memoryModel=experimental
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.1
compose.version=1.3.0

View File

@@ -7,6 +7,7 @@ internal object ComposeCompilerCompatibility {
private val kotlinToCompiler = sortedMapOf(
"1.7.10" to "1.3.0",
"1.7.20" to "1.3.2.2",
"1.8.0" to "1.4.0"
)
fun compilerVersionFor(kotlinVersion: String): String {

View File

@@ -2,13 +2,13 @@ org.gradle.parallel=true
kotlin.code.style=official
# Default version of Compose Libraries used by Gradle plugin
compose.version=1.2.2
compose.version=1.3.0
# The latest version of Compose Compiler used by Gradle plugin. Used only in tests/CI.
compose.tests.compiler.version=1.3.2.1
compose.tests.compiler.version=1.4.0
# The latest version of Kotlin compatible with compose.tests.compiler.version. Used only in tests/CI.
compose.tests.compiler.compatible.kotlin.version=1.7.20
compose.tests.compiler.compatible.kotlin.version=1.8.0
# The latest version of Kotlin compatible with compose.tests.compiler.version for JS target. Used only on CI.
compose.tests.js.compiler.compatible.kotlin.version=1.7.20
compose.tests.js.compiler.compatible.kotlin.version=1.8.0
# __SUPPORTED_GRADLE_VERSIONS__
compose.tests.gradle.versions=7.0.2, 8.0-rc-1

View File

@@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
versionCode = 1
versionName = "1.0"
}
@@ -23,4 +23,4 @@ android {
dependencies {
implementation(project(":common"))
implementation("androidx.activity:activity-compose:1.5.0")
}
}

View File

@@ -28,11 +28,11 @@ kotlin {
}
android {
compileSdk = 32
compileSdk = 33
defaultConfig {
minSdk = 26
targetSdk = 32
targetSdk = 33
}
compileOptions {
@@ -46,4 +46,4 @@ android {
res.srcDirs("src/androidMain/res")
}
}
}
}

View File

@@ -2,6 +2,6 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true
android.enableJetifier=true
kotlin.code.style=official
kotlin.version=1.7.20
kotlin.version=1.8.0
agp.version=7.1.3
compose.version=1.2.2
compose.version=1.3.0

View File

@@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
kotlin.code.style=official
kotlin.version=1.7.20
compose.version=1.2.2
kotlin.version=1.8.0
compose.version=1.3.0

View File

@@ -13,6 +13,7 @@ declare -a folders=(
"ci"
"web"
"tutorials"
"experimental/examples"
)
if [ -z "$1" ]; then

View File

@@ -42,8 +42,8 @@ The Compose plugin version used in the wizard above might not be the latest. Upd
For the latest versions, see the [latest versions](https://github.com/JetBrains/compose-jb/releases) site and the [Kotlin](https://kotlinlang.org/) site.
```
plugins {
kotlin("jvm") version "1.7.20"
id("org.jetbrains.compose") version "1.2.2"
kotlin("jvm") version "1.8.0"
id("org.jetbrains.compose") version "1.3.0"
}
```
@@ -76,8 +76,8 @@ pluginManagement {
Then create `build.gradle.kts` with the following content:
``` kotlin
plugins {
kotlin("jvm") version "1.7.20"
id("org.jetbrains.compose") version "1.2.2"
kotlin("jvm") version "1.8.0"
id("org.jetbrains.compose") version "1.3.0"
}
repositories {

View File

@@ -40,8 +40,8 @@ pluginManagement {
``` kotlin
// Add compose gradle plugin
plugins {
kotlin("multiplatform") version "1.7.20"
id("org.jetbrains.compose") version "1.2.2"
kotlin("multiplatform") version "1.8.0"
id("org.jetbrains.compose") version "1.3.0"
}
// Add maven repositories

View File

@@ -1 +1 @@
kotlin.version=1.7.20
kotlin.version=1.8.0

View File

@@ -1,4 +1,4 @@
compose.version=1.2.2
compose.version=1.3.0
compose.web.buildSamples=false
compose.web.tests.integration.withFirefox
compose.web.tests.skip.benchmarks=false

View File

@@ -307,11 +307,16 @@ acorn-import-assertions@^1.7.6:
resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9"
integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==
acorn@^8.4.1, acorn@^8.5.0:
acorn@^8.5.0:
version "8.7.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
acorn@^8.7.1:
version "8.8.2"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
aggregate-error@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
@@ -916,10 +921,10 @@ engine.io@~6.2.0:
engine.io-parser "~5.0.3"
ws "~8.2.3"
enhanced-resolve@^5.9.3:
version "5.10.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==
enhanced-resolve@^5.10.0:
version "5.12.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634"
integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
@@ -2713,6 +2718,11 @@ typescript@3.9.5:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36"
integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==
typescript@4.7.4:
version "4.7.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
ua-parser-js@^0.7.30:
version "0.7.32"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.32.tgz#cd8c639cdca949e30fa68c44b7813ef13e36d211"
@@ -2776,7 +2786,7 @@ void-elements@^2.0.0:
resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
integrity sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==
watchpack@^2.3.1:
watchpack@^2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
@@ -2871,21 +2881,21 @@ webpack-sources@^3.2.3:
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
webpack@5.73.0:
version "5.73.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.73.0.tgz#bbd17738f8a53ee5760ea2f59dce7f3431d35d38"
integrity sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==
webpack@5.74.0:
version "5.74.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.74.0.tgz#02a5dac19a17e0bb47093f2be67c695102a55980"
integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==
dependencies:
"@types/eslint-scope" "^3.7.3"
"@types/estree" "^0.0.51"
"@webassemblyjs/ast" "1.11.1"
"@webassemblyjs/wasm-edit" "1.11.1"
"@webassemblyjs/wasm-parser" "1.11.1"
acorn "^8.4.1"
acorn "^8.7.1"
acorn-import-assertions "^1.7.6"
browserslist "^4.14.5"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.9.3"
enhanced-resolve "^5.10.0"
es-module-lexer "^0.9.0"
eslint-scope "5.1.1"
events "^3.2.0"
@@ -2898,7 +2908,7 @@ webpack@5.73.0:
schema-utils "^3.1.0"
tapable "^2.1.1"
terser-webpack-plugin "^5.1.3"
watchpack "^2.3.1"
watchpack "^2.4.0"
webpack-sources "^3.2.3"
websocket-driver@>=0.5.1, websocket-driver@^0.7.4: