Skip to content

Commit c30580b

Browse files
committed
Update dependencies
1 parent 757a435 commit c30580b

File tree

11 files changed

+246
-229
lines changed

11 files changed

+246
-229
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ jobs:
836836
- name: Setup Fastlane
837837
uses: ruby/setup-ruby@v1
838838
with:
839-
ruby-version: "3.4.5"
839+
ruby-version: "3.4.6"
840840
bundler-cache: true
841841
working-directory: app/android
842842
- name: 🚀 Deploy to Play Store

api/pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ packages:
55
dependency: transitive
66
description:
77
name: _fe_analyzer_shared
8-
sha256: f0bb5d1648339c8308cc0b9838d8456b3cfe5c91f9dc1a735b4d003269e5da9a
8+
sha256: dd3d2ad434b9510001d089e8de7556d50c834481b9abc2891a0184a8493a19dc
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "88.0.0"
11+
version: "89.0.0"
1212
analyzer:
1313
dependency: "direct dev"
1414
description:
1515
name: analyzer
16-
sha256: "0b7b9c329d2879f8f05d6c05b32ee9ec025f39b077864bdb5ac9a7b63418a98f"
16+
sha256: c22b6e7726d1f9e5db58c7251606076a71ca0dbcf76116675edfadbec0c9e875
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "8.1.1"
19+
version: "8.2.0"
2020
archive:
2121
dependency: "direct main"
2222
description:
@@ -318,8 +318,8 @@ packages:
318318
dependency: "direct main"
319319
description:
320320
path: "packages/lw_file_system_api"
321-
ref: "3f886507656f057d89a8b98de6ddbc7f5a21868e"
322-
resolved-ref: "3f886507656f057d89a8b98de6ddbc7f5a21868e"
321+
ref: ddd0761c3ed5a48108bddd0448df76d77eeb9da0
322+
resolved-ref: ddd0761c3ed5a48108bddd0448df76d77eeb9da0
323323
url: "https://github.com/LinwoodDev/dart_pkgs.git"
324324
source: git
325325
version: "1.0.0"
@@ -383,10 +383,10 @@ packages:
383383
dependency: transitive
384384
description:
385385
name: pool
386-
sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
386+
sha256: "978783255c543aa3586a1b3c21f6e9d720eb315376a915872c61ef8b5c20177d"
387387
url: "https://pub.dev"
388388
source: hosted
389-
version: "1.5.1"
389+
version: "1.5.2"
390390
posix:
391391
dependency: transitive
392392
description:
@@ -660,4 +660,4 @@ packages:
660660
source: hosted
661661
version: "3.1.3"
662662
sdks:
663-
dart: ">=3.8.0 <4.0.0"
663+
dart: ">=3.9.0 <4.0.0"

api/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies:
1919
git:
2020
url: https://github.com/LinwoodDev/dart_pkgs.git
2121
path: packages/lw_file_system_api
22-
ref: 3f886507656f057d89a8b98de6ddbc7f5a21868e
22+
ref: ddd0761c3ed5a48108bddd0448df76d77eeb9da0
2323
dart_leap:
2424
git:
2525
url: https://github.com/LinwoodDev/dart_pkgs.git

app/android/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GEM
1111
artifactory (3.0.17)
1212
atomos (0.1.3)
1313
aws-eventstream (1.4.0)
14-
aws-partitions (1.1159.0)
14+
aws-partitions (1.1162.0)
1515
aws-sdk-core (3.232.0)
1616
aws-eventstream (~> 1, >= 1.3.0)
1717
aws-partitions (~> 1, >= 1.992.0)
@@ -161,7 +161,7 @@ GEM
161161
httpclient (2.9.0)
162162
mutex_m
163163
jmespath (1.6.2)
164-
json (2.13.2)
164+
json (2.15.0)
165165
jwt (2.10.2)
166166
base64
167167
logger (1.7.0)
@@ -232,4 +232,4 @@ DEPENDENCIES
232232
screengrab
233233

234234
BUNDLED WITH
235-
2.7.1
235+
2.7.2

app/android/app/build.gradle.kts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
12
import java.util.Properties
23
import java.io.FileInputStream
34

@@ -23,7 +24,7 @@ android {
2324
// - Env: USE_LEGACY_PACKAGING=true
2425
val useLegacy = (System.getenv("USE_LEGACY_PACKAGING") ?: "false").toBoolean()
2526

26-
packagingOptions {
27+
packaging {
2728
jniLibs {
2829
useLegacyPackaging = useLegacy
2930
}
@@ -33,10 +34,6 @@ android {
3334
targetCompatibility = JavaVersion.VERSION_11
3435
}
3536

36-
kotlinOptions {
37-
jvmTarget = JavaVersion.VERSION_11.toString()
38-
}
39-
4037
flavorDimensions += "default"
4138
productFlavors {
4239
create("production") {
@@ -93,6 +90,12 @@ android {
9390
}
9491
}
9592

93+
kotlin {
94+
compilerOptions {
95+
jvmTarget = JvmTarget.fromTarget("11")
96+
}
97+
}
98+
9699
flutter {
97100
source = "../.."
98101
}

app/android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919
plugins {
2020
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
2121
id("com.android.application") version "8.12.2" apply false
22-
id("org.jetbrains.kotlin.android") version "2.2.10" apply false
22+
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
2323
}
2424

2525
include(":app")

app/pubspec.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ packages:
55
dependency: transitive
66
description:
77
name: _fe_analyzer_shared
8-
sha256: f0bb5d1648339c8308cc0b9838d8456b3cfe5c91f9dc1a735b4d003269e5da9a
8+
sha256: dd3d2ad434b9510001d089e8de7556d50c834481b9abc2891a0184a8493a19dc
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "88.0.0"
11+
version: "89.0.0"
1212
analyzer:
1313
dependency: transitive
1414
description:
1515
name: analyzer
16-
sha256: "0b7b9c329d2879f8f05d6c05b32ee9ec025f39b077864bdb5ac9a7b63418a98f"
16+
sha256: c22b6e7726d1f9e5db58c7251606076a71ca0dbcf76116675edfadbec0c9e875
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "8.1.1"
19+
version: "8.2.0"
2020
animations:
2121
dependency: "direct main"
2222
description:
@@ -156,10 +156,10 @@ packages:
156156
dependency: transitive
157157
description:
158158
name: camera_android_camerax
159-
sha256: "2d438248554f44766bf9ea34c117a5bb0074e241342ef7c22c768fb431335234"
159+
sha256: "0db8e7b161ec6cdb2219540eaa4cf599dc963929e5f8ded3b20b3acb52712fa4"
160160
url: "https://pub.dev"
161161
source: hosted
162-
version: "0.6.21"
162+
version: "0.6.21+1"
163163
camera_avfoundation:
164164
dependency: transitive
165165
description:
@@ -651,10 +651,10 @@ packages:
651651
dependency: "direct main"
652652
description:
653653
name: go_router
654-
sha256: eb059dfe59f08546e9787f895bd01652076f996bcbf485a8609ef990419ad227
654+
sha256: b1488741c9ce37b72e026377c69a59c47378493156fc38efb5a54f6def3f92a3
655655
url: "https://pub.dev"
656656
source: hosted
657-
version: "16.2.1"
657+
version: "16.2.2"
658658
graphs:
659659
dependency: transitive
660660
description:
@@ -808,17 +808,17 @@ packages:
808808
dependency: "direct main"
809809
description:
810810
path: "packages/lw_file_system"
811-
ref: "835467e85d1055d120aeb3adc7b3f4013bd6853d"
812-
resolved-ref: "835467e85d1055d120aeb3adc7b3f4013bd6853d"
811+
ref: "12843672e8f33e9370444b13fca8134f4543f7ee"
812+
resolved-ref: "12843672e8f33e9370444b13fca8134f4543f7ee"
813813
url: "https://github.com/LinwoodDev/dart_pkgs.git"
814814
source: git
815815
version: "1.0.0"
816816
lw_file_system_api:
817817
dependency: transitive
818818
description:
819819
path: "packages/lw_file_system_api"
820-
ref: "3f886507656f057d89a8b98de6ddbc7f5a21868e"
821-
resolved-ref: "3f886507656f057d89a8b98de6ddbc7f5a21868e"
820+
ref: ddd0761c3ed5a48108bddd0448df76d77eeb9da0
821+
resolved-ref: ddd0761c3ed5a48108bddd0448df76d77eeb9da0
822822
url: "https://github.com/LinwoodDev/dart_pkgs.git"
823823
source: git
824824
version: "1.0.0"
@@ -859,8 +859,8 @@ packages:
859859
dependency: "direct main"
860860
description:
861861
path: "packages/material_leap"
862-
ref: "835467e85d1055d120aeb3adc7b3f4013bd6853d"
863-
resolved-ref: "835467e85d1055d120aeb3adc7b3f4013bd6853d"
862+
ref: "12843672e8f33e9370444b13fca8134f4543f7ee"
863+
resolved-ref: "12843672e8f33e9370444b13fca8134f4543f7ee"
864864
url: "https://github.com/LinwoodDev/dart_pkgs.git"
865865
source: git
866866
version: "0.0.1"

app/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies:
6565
material_leap:
6666
git:
6767
url: https://github.com/LinwoodDev/dart_pkgs.git
68-
ref: 835467e85d1055d120aeb3adc7b3f4013bd6853d
68+
ref: 12843672e8f33e9370444b13fca8134f4543f7ee
6969
path: packages/material_leap
7070
lw_sysapi:
7171
git:
@@ -95,7 +95,7 @@ dependencies:
9595
lw_file_system:
9696
git:
9797
url: https://github.com/LinwoodDev/dart_pkgs.git
98-
ref: 835467e85d1055d120aeb3adc7b3f4013bd6853d
98+
ref: 12843672e8f33e9370444b13fca8134f4543f7ee
9999
path: packages/lw_file_system
100100
flutter_localized_locales: ^2.0.5
101101
cryptography_flutter_plus: ^2.3.4

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
1414
"@astrojs/react": "^4.3.1",
15-
"@astrojs/starlight": "^0.35.3",
15+
"@astrojs/starlight": "^0.36.0",
1616
"@phosphor-icons/react": "^2.1.10",
1717
"@types/react": "^19.1.13",
1818
"@types/react-dom": "^19.1.9",
19-
"astro": "^5.13.8",
19+
"astro": "^5.13.10",
2020
"react": "^19.1.1",
2121
"react-dom": "^19.1.1",
2222
"remark-gemoji": "^8.0.0",
@@ -26,7 +26,7 @@
2626
"packageManager": "[email protected]",
2727
"devDependencies": {
2828
"@vite-pwa/astro": "^1.1.0",
29-
"sass": "^1.92.1",
29+
"sass": "^1.93.0",
3030
"sharp": "^0.34.4",
3131
"vite-plugin-pwa": "^1.0.3",
3232
"workbox-window": "^7.3.0"

0 commit comments

Comments
 (0)