Compare commits

...

2 Commits

Author SHA1 Message Date
Leendert de Borst
79221f35c6 Bump version to 0.17.2 (#850) 2025-05-17 17:39:16 +02:00
Leendert de Borst
baf81392eb Restore docker-compose.yml container versions to :latest (#848) 2025-05-17 17:14:01 +02:00
7 changed files with 17 additions and 17 deletions

View File

@@ -530,7 +530,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
@@ -569,7 +569,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
OTHER_LDFLAGS = (
"-framework",
SafariServices,

View File

@@ -6,7 +6,7 @@ export class AppInfo {
/**
* The current extension version. This should be updated with each release of the extension.
*/
public static readonly VERSION = '0.17.1';
public static readonly VERSION = '0.17.2';
/**
* The minimum supported AliasVault server (API) version. If the server version is below this, the

View File

@@ -6,7 +6,7 @@ export default defineConfig({
manifest: {
name: "AliasVault",
description: "AliasVault Browser AutoFill Extension. Keeping your personal information private.",
version: "0.17.1",
version: "0.17.2",
content_security_policy: {
extension_pages: "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},

View File

@@ -1050,7 +1050,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -1084,7 +1084,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -1621,7 +1621,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
@@ -1666,7 +1666,7 @@
"@executable_path/../../Frameworks",
);
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MARKETING_VERSION = 0.17.1;
MARKETING_VERSION = 0.17.2;
MTL_FAST_MATH = YES;
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
PRODUCT_BUNDLE_IDENTIFIER = net.aliasvault.app.autofill;

View File

@@ -8,7 +8,7 @@ export class AppInfo {
/**
* The current extension version. This should be updated with each release of the extension.
*/
public static readonly VERSION = '0.17.1';
public static readonly VERSION = '0.17.2';
/**
* The minimum supported AliasVault server (API) version. If the server version is below this, the

View File

@@ -30,7 +30,7 @@ public static class AppInfo
/// <summary>
/// Gets the patch version number.
/// </summary>
public const int VersionPatch = 1;
public const int VersionPatch = 2;
/// <summary>
/// Gets the minimum supported AliasVault client version. Normally the minimum client version is the same

View File

@@ -1,6 +1,6 @@
services:
postgres:
image: ghcr.io/lanedirt/aliasvault-postgres:0.16.1
image: ghcr.io/lanedirt/aliasvault-postgres:latest
volumes:
- ./database/postgres:/var/lib/postgresql/data:rw
env_file:
@@ -14,7 +14,7 @@ services:
start_period: 10s
client:
image: ghcr.io/lanedirt/aliasvault-client:0.16.1
image: ghcr.io/lanedirt/aliasvault-client:latest
volumes:
- ./logs/msbuild:/apps/server/msbuild-logs:rw
expose:
@@ -24,7 +24,7 @@ services:
- .env
api:
image: ghcr.io/lanedirt/aliasvault-api:0.16.1
image: ghcr.io/lanedirt/aliasvault-api:latest
expose:
- "3001"
volumes:
@@ -41,7 +41,7 @@ services:
ConnectionStrings__AliasServerDbContext: "Host=postgres;Database=aliasvault;Username=aliasvault;Password=${POSTGRES_PASSWORD}"
admin:
image: ghcr.io/lanedirt/aliasvault-admin:0.16.1
image: ghcr.io/lanedirt/aliasvault-admin:latest
expose:
- "3002"
volumes:
@@ -58,7 +58,7 @@ services:
ConnectionStrings__AliasServerDbContext: "Host=postgres;Database=aliasvault;Username=aliasvault;Password=${POSTGRES_PASSWORD}"
reverse-proxy:
image: ghcr.io/lanedirt/aliasvault-reverse-proxy:0.16.1
image: ghcr.io/lanedirt/aliasvault-reverse-proxy:latest
ports:
- "${HTTP_PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
@@ -76,7 +76,7 @@ services:
- .env
smtp:
image: ghcr.io/lanedirt/aliasvault-smtp:0.16.1
image: ghcr.io/lanedirt/aliasvault-smtp:latest
ports:
- "${SMTP_PORT:-25}:25"
- "${SMTP_TLS_PORT:-587}:587"
@@ -93,7 +93,7 @@ services:
ConnectionStrings__AliasServerDbContext: "Host=postgres;Database=aliasvault;Username=aliasvault;Password=${POSTGRES_PASSWORD}"
task-runner:
image: ghcr.io/lanedirt/aliasvault-task-runner:0.16.1
image: ghcr.io/lanedirt/aliasvault-task-runner:latest
volumes:
- ./database:/database:rw
- ./logs:/logs:rw