File tree Expand file tree Collapse file tree 5 files changed +22
-14
lines changed
Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 1+ # Release v20.1.1
2+
3+ * MISC: manifest cleanup
4+ * MISC: update all android deps
5+ * FIX: ensure a valid URI is provided for connection (#460 )
6+ * FIX: make cryptosign and CRA support authrole parameter (#458 )
7+ * NEW: Implement EIP712 Signing (#454 )
8+ * FIX: Set callerSessionID, callerAuthID and callerAuthRole (#446 )
9+ * NEW: AndroidWebSocket: Change writer to sans-io architecture (#445 )
10+ * FIX: ensure to close nio loop on netty (#442 )
11+ * DOC: Add Android websocket example (#436 )
12+ * NEW: XBR Buyer/Seller Part 1 (#434 )
13+ * MISC: add deploy script (currently unused)
14+
15+ ---
16+
117# Release v19.3.1
218
319* MISC: Update dependency versions
Original file line number Diff line number Diff line change 11BUILD_DATE =$(shell date -u +"% Y-% m-% d")
2- AUTOBAHN_JAVA_VERSION ='19.3 .1'
2+ AUTOBAHN_JAVA_VERSION ='20.1 .1'
33AUTOBAHN_JAVA_VCS_REF ='unknown'
44
55default :
Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ Grab via Maven:
3232<dependency >
3333 <groupId >io.crossbar.autobahn</groupId >
3434 <artifactId >autobahn-android</artifactId >
35- <version >18.5 .1</version >
35+ <version >20.1 .1</version >
3636</dependency >
3737```
3838
3939Gradle:
4040``` groovy
4141dependencies {
42- implementation 'io.crossbar.autobahn:autobahn-android:18.5 .1'
42+ implementation 'io.crossbar.autobahn:autobahn-android:20.1 .1'
4343}
4444```
4545For non-android systems use artifactID ` autobahn-java ` or just
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
2- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3- xmlns : tools =" http://schemas.android.com/tools"
4- package =" io.crossbar.autobahn" >
5- <application
6- android : allowBackup =" true"
7- android : label =" @string/app_name"
8- android : supportsRtl =" true"
9- tools : replace =" android:allowBackup" >
10- </application >
11- </manifest >
2+ <manifest package =" io.crossbar.autobahn" />
Original file line number Diff line number Diff line change 1212 android : label =" @string/app_name"
1313 android : supportsRtl =" true"
1414 android : theme =" @style/AppTheme"
15- tools : replace =" android:label " >
15+ tools : replace =" android:allowBackup " >
1616 <activity android : name =" .android.MainActivity" >
1717 <intent-filter >
18+ <action android : name =" android.intent.action.VIEW" />
1819 <action android : name =" android.intent.action.MAIN" />
1920 <category android : name =" android.intent.category.LAUNCHER" />
2021 </intent-filter >
You can’t perform that action at this time.
0 commit comments