-
-
Notifications
You must be signed in to change notification settings - Fork 188
fix: Lock socket_io_client version to 3.1.2 to fix breaking compiler … #507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError | ||
| android.useAndroidX=true | ||
| android.enableJetifier=true | ||
| # to fix Could not close incremental caches | ||
| kotlin.incremental=false | ||
| # Keep legacy Kotlin/AGP behavior until Flutter plugins migrate to built-in Kotlin. | ||
| android.builtInKotlin=false | ||
| android.newDsl=false |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -34,8 +34,8 @@ dependencies: | |||||
| # UI Components - Markdown Rendering | ||||||
| markdown: ^7.3.0 | ||||||
| pdfrx: ^2.4.3 | ||||||
| flutter_inappwebview: ^6.1.5 | ||||||
| socket_io_client: ^3.1.2 | ||||||
| flutter_inappwebview: ^6.2.0-beta.3 | ||||||
| socket_io_client: 3.1.2 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||
| yaml: ^3.1.2 | ||||||
|
|
||||||
|
|
||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The committed
pubspec.lockstill pinssocket_io_clientto3.1.4(the sha256 and version fields are unchanged from the base commit). Any CI pipeline runningdart pub get --enforce-lockfile— which many reproduce-build setups use — will fail immediately because3.1.4doesn't satisfy the new exact constraint3.1.2. The lock file must be regenerated withflutter pub getand committed alongside this change for the fix to be complete and for the lock file to match what the PR description claims was already done.