Skip to content

Commit 51251c2

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/eric/msc3773
2 parents dffb9d3 + 88435f2 commit 51251c2

25 files changed

+509
-85
lines changed

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run: |
1212
npm install --save-dev @babel/plugin-transform-flow-strip-types
1313
- name: Danger
14-
uses: danger/danger-js@11.1.3
14+
uses: danger/danger-js@11.1.4
1515
with:
1616
args: "--dangerfile tools/danger/dangerfile.js"
1717
env:

.github/workflows/post-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
restore-keys: |
5353
${{ runner.os }}-gradle-
5454
- name: Start synapse server
55-
uses: michaelkaye/setup-matrix-synapse@v1.0.3
55+
uses: michaelkaye/setup-matrix-synapse@v1.0.4
5656
with:
5757
uploadLogs: true
5858
httpPort: 8080

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
yarn add danger-plugin-lint-report --dev
6767
- name: Danger lint
6868
if: always()
69-
uses: danger/danger-js@11.1.3
69+
uses: danger/danger-js@11.1.4
7070
with:
7171
args: "--dangerfile tools/danger/dangerfile-lint.js"
7272
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/setup-python@v4
5151
with:
5252
python-version: 3.8
53-
- uses: michaelkaye/setup-matrix-synapse@v1.0.3
53+
- uses: michaelkaye/setup-matrix-synapse@v1.0.4
5454
with:
5555
uploadLogs: true
5656
httpPort: 8080

.github/workflows/triage-incoming.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Skip in forks
1111
if: github.repository == 'vector-im/element-android'
1212
steps:
13-
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
13+
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
1414
with:
1515
project: Issue triage
1616
column: Incoming

.github/workflows/triage-priority-bugs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
contains(github.event.issue.labels.*.name, 'A11y') &&
2525
contains(github.event.issue.labels.*.name, 'O-Frequent'))
2626
steps:
27-
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
27+
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
2828
with:
2929
project: Android App Team
3030
column: Important Issues & Topics (P1)
@@ -50,7 +50,7 @@ jobs:
5050
contains(github.event.issue.labels.*.name, 'A11y') &&
5151
contains(github.event.issue.labels.*.name, 'O-Frequent')))
5252
steps:
53-
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
53+
- uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
5454
with:
5555
project: Crypto Team
5656
column: Ready

.github/workflows/triage-unlabelled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "ALREADY_IN_BOARD=false" >> $GITHUB_ENV
2929
fi
3030
- name: Move issue
31-
uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
31+
uses: alex-page/github-project-automation-plus@1f8873e97e3c8f58161a323b7c568c1f623a1c4d
3232
if: ${{ env.ALREADY_IN_BOARD == 'true' }}
3333
with:
3434
project: Issue triage

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ buildscript {
3333
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.7.20"
3434
classpath "org.jetbrains.kotlinx:kotlinx-knit:0.4.0"
3535
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
36-
classpath 'app.cash.paparazzi:paparazzi-gradle-plugin:1.1.0'
36+
classpath libs.squareup.paparazziPlugin
3737
// NOTE: Do not place your application dependencies here; they belong
3838
// in the individual module build.gradle files
3939
}
@@ -45,7 +45,7 @@ plugins {
4545
// Detekt
4646
id "io.gitlab.arturbosch.detekt" version "1.21.0"
4747
// Ksp
48-
id "com.google.devtools.ksp" version "1.7.20-1.0.6"
48+
id "com.google.devtools.ksp" version "1.7.20-1.0.7"
4949

5050
// Dependency Analysis
5151
id 'com.autonomousapps.dependency-analysis' version "1.13.1"
@@ -322,7 +322,7 @@ ext.initScreenshotTests = { project ->
322322
if (hasScreenshots) {
323323
project.apply plugin: 'app.cash.paparazzi'
324324
}
325-
project.dependencies { testCompileOnly "app.cash.paparazzi:paparazzi:1.0.0" }
325+
project.dependencies { testCompileOnly libs.squareup.paparazzi }
326326
project.android.testOptions.unitTests.all {
327327
def screenshotTestCapture = "**/*ScreenshotTest*"
328328
if (hasScreenshots) {

changelog.d/7429.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add new UI for selecting an attachment

dependencies.gradle

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
ext.versions = [
2-
32
'minSdk' : 21,
43
'compileSdk' : 33,
54
'targetSdk' : 33,
@@ -12,7 +11,7 @@ def gradle = "7.3.1"
1211
def kotlin = "1.7.20"
1312
def kotlinCoroutines = "1.6.4"
1413
def dagger = "2.44"
15-
def appDistribution = "16.0.0-beta04"
14+
def appDistribution = "16.0.0-beta05"
1615
def retrofit = "2.9.0"
1716
def markwon = "4.6.2"
1817
def moshi = "1.14.0"
@@ -27,22 +26,20 @@ def jjwt = "0.11.5"
2726
// Temporary version to unblock #6929. Once 0.16.0 is released we should use it, and revert
2827
// the whole commit which set version 0.16.0-SNAPSHOT
2928
def vanniktechEmoji = "0.16.0-SNAPSHOT"
30-
31-
def sentry = "6.4.3"
32-
33-
def fragment = "1.5.3"
34-
29+
def sentry = "6.6.0"
30+
def fragment = "1.5.4"
3531
// Testing
3632
def mockk = "1.12.3" // We need to use 1.12.3 to have mocking in androidTest until a new version is released: https://github.com/mockk/mockk/issues/819
3733
def espresso = "3.4.0"
3834
def androidxTest = "1.4.0"
3935
def androidxOrchestrator = "1.4.1"
36+
def paparazzi = "1.1.0"
37+
4038
ext.libs = [
4139
gradle : [
4240
'gradlePlugin' : "com.android.tools.build:gradle:$gradle",
4341
'kotlinPlugin' : "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin",
4442
'hiltPlugin' : "com.google.dagger:hilt-android-gradle-plugin:$dagger"
45-
4643
],
4744
jetbrains : [
4845
'coroutinesCore' : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutines",
@@ -55,7 +52,7 @@ ext.libs = [
5552
'biometric' : "androidx.biometric:biometric:1.1.0",
5653
'core' : "androidx.core:core-ktx:1.9.0",
5754
'recyclerview' : "androidx.recyclerview:recyclerview:1.2.1",
58-
'exifinterface' : "androidx.exifinterface:exifinterface:1.3.4",
55+
'exifinterface' : "androidx.exifinterface:exifinterface:1.3.5",
5956
'fragmentKtx' : "androidx.fragment:fragment-ktx:$fragment",
6057
'fragmentTesting' : "androidx.fragment:fragment-testing:$fragment",
6158
'constraintLayout' : "androidx.constraintlayout:constraintlayout:2.1.4",
@@ -82,7 +79,7 @@ ext.libs = [
8279
'transition' : "androidx.transition:transition:1.2.0",
8380
],
8481
google : [
85-
'material' : "com.google.android.material:material:1.6.1",
82+
'material' : "com.google.android.material:material:1.7.0",
8683
'appdistributionApi' : "com.google.firebase:firebase-appdistribution-api-ktx:$appDistribution",
8784
'appdistribution' : "com.google.firebase:firebase-appdistribution:$appDistribution",
8885
// Phone number https://github.com/google/libphonenumber
@@ -108,6 +105,8 @@ ext.libs = [
108105
'moshiKt' : "com.squareup.moshi:moshi-kotlin:$moshi",
109106
'moshiKotlin' : "com.squareup.moshi:moshi-kotlin-codegen:$moshi",
110107
'moshiAdapters' : "com.squareup.moshi:moshi-adapters:$moshi",
108+
'paparazzi' : "app.cash.paparazzi:paparazzi:$paparazzi",
109+
'paparazziPlugin' : "app.cash.paparazzi:paparazzi-gradle-plugin:$paparazzi",
111110
'retrofit' : "com.squareup.retrofit2:retrofit:$retrofit",
112111
'retrofitMoshi' : "com.squareup.retrofit2:converter-moshi:$retrofit"
113112
],
@@ -167,7 +166,7 @@ ext.libs = [
167166
'sentryAndroid' : "io.sentry:sentry-android:$sentry"
168167
],
169168
tests : [
170-
'kluent' : "org.amshove.kluent:kluent-android:1.68",
169+
'kluent' : "org.amshove.kluent:kluent-android:1.72",
171170
'timberJunitRule' : "net.lachlanmckee:timber-junit-rule:1.0.1",
172171
'junit' : "junit:junit:4.13.2",
173172
]

0 commit comments

Comments
 (0)