Skip to content

Commit

Permalink
229.240514.1 (#6940)
Browse files Browse the repository at this point in the history
* disable argon2 migration

We disable argon2 migration to prevent that client with offline support
prior to 229.240513.0 have unexpected errors

* v229.240514.1

---------

Co-authored-by: bedhub <bedhub@users.noreply.github.com>
  • Loading branch information
bedhub and bedhub committed May 14, 2024
1 parent 67cb9f4 commit 920e95b
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 51 deletions.
4 changes: 2 additions & 2 deletions app-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "de.tutao.tutanota"
minSdkVersion 23
targetSdkVersion 33
versionCode 396341
versionName "229.240514.0"
versionCode 396342
versionName "229.240514.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

javaCompileOptions {
Expand Down
4 changes: 2 additions & 2 deletions app-ios/tutanota/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>229.240514.0</string>
<string>229.240514.1</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -33,7 +33,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>229.240514.0</string>
<string>229.240514.1</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tutanota",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,10 +33,10 @@
},
"dependencies": {
"@tutao/oxmsg": "0.0.9-beta.0",
"@tutao/tutanota-crypto": "229.240514.0",
"@tutao/tutanota-error": "229.240514.0",
"@tutao/tutanota-usagetests": "229.240514.0",
"@tutao/tutanota-utils": "229.240514.0",
"@tutao/tutanota-crypto": "229.240514.1",
"@tutao/tutanota-error": "229.240514.1",
"@tutao/tutanota-usagetests": "229.240514.1",
"@tutao/tutanota-utils": "229.240514.1",
"@types/better-sqlite3": "7.4.2",
"@types/dompurify": "3.0.5",
"@types/linkifyjs": "2.1.4",
Expand Down Expand Up @@ -74,9 +74,9 @@
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@tutao/licc": "229.240514.0",
"@tutao/otest": "229.240514.0",
"@tutao/tutanota-test-utils": "229.240514.0",
"@tutao/licc": "229.240514.1",
"@tutao/otest": "229.240514.1",
"@tutao/tutanota-test-utils": "229.240514.1",
"@types/express": "^4.17.17",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "5.61.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/licc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/licc",
"version": "229.240514.0",
"version": "229.240514.1",
"bin": {
"licc": "dist/cli.js"
},
Expand All @@ -21,7 +21,7 @@
},
"devDependencies": {
"typescript": "5.3.3",
"@tutao/tutanota-test-utils": "229.240514.0",
"@tutao/otest": "229.240514.0"
"@tutao/tutanota-test-utils": "229.240514.1",
"@tutao/otest": "229.240514.1"
}
}
2 changes: 1 addition & 1 deletion packages/otest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/otest",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"description": "little test runner",
"main": "./dist/index.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/tutanota-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/tutanota-crypto",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"main": "./dist/index.js",
"exports": {
Expand All @@ -25,11 +25,11 @@
"tsconfig.json"
],
"dependencies": {
"@tutao/tutanota-error": "229.240514.0"
"@tutao/tutanota-error": "229.240514.1"
},
"devDependencies": {
"typescript": "5.3.3",
"@tutao/tutanota-utils": "229.240514.0",
"@tutao/otest": "229.240514.0"
"@tutao/tutanota-utils": "229.240514.1",
"@tutao/otest": "229.240514.1"
}
}
2 changes: 1 addition & 1 deletion packages/tutanota-error/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/tutanota-error",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/tutanota-test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/tutanota-test-utils",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"main": "./dist/index.js",
"repository": {
Expand All @@ -21,7 +21,7 @@
"tsconfig.json"
],
"dependencies": {
"@tutao/otest": "229.240514.0",
"@tutao/otest": "229.240514.1",
"testdouble": "3.18.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/tutanota-usagetests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/tutanota-usagetests",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GLP-3.0",
"description": "",
"main": "./dist/index.js",
Expand All @@ -26,6 +26,6 @@
"devDependencies": {
"@types/node-forge": "1.0.0",
"typescript": "5.3.3",
"@tutao/otest": "229.240514.0"
"@tutao/otest": "229.240514.1"
}
}
4 changes: 2 additions & 2 deletions packages/tutanota-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tutao/tutanota-utils",
"version": "229.240514.0",
"version": "229.240514.1",
"license": "GPL-3.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -23,6 +23,6 @@
],
"devDependencies": {
"typescript": "5.3.3",
"@tutao/otest": "229.240514.0"
"@tutao/otest": "229.240514.1"
}
}

0 comments on commit 920e95b

Please sign in to comment.