Compare commits

...
Author SHA1 Message Date
Steven NguyenandGitHub 64868968e7 Merge pull request #8661 from appwrite/update-executor
chore: prepare for 1.5.11 release
2024-09-16 15:48:17 -07:00
Christy Jacob 342101c88c chore: update executor version 2024-09-16 19:53:11 +00:00
Steven NguyenandGitHub 894ad85dd3 Merge pull request #8663 from appwrite/fix-1.5-retention
fix: add retention env vars to deletes worker
2024-09-16 07:18:01 -07:00
Steven Nguyen 54bff9312f fix: add retention env vars to deletes worker
The resources are injected in the deletes worker so the env vars need to be passed to the container.
2024-09-13 16:38:54 +02:00
Christy Jacob 3a2d56e680 chore: add OPR labels 2024-09-13 14:36:58 +00:00
Christy Jacob 51e7bf6f0a chore: update executor version 2024-09-13 14:10:15 +00:00
Christy Jacob 3994a965d9 chore: update executor version 2024-09-13 13:53:23 +00:00
Christy Jacob bf45e16066 chore: update changelog 2024-09-13 12:57:55 +00:00
Christy Jacob 860207ede5 chore: prepare for 1.5.11 releas 2024-09-13 12:54:56 +00:00
7 changed files with 21 additions and 10 deletions
+7
View File
@@ -1,3 +1,10 @@
# Version 1.5.11
## What's Changed
## Security
- Bump executor to 0.5.10 [#8661](https://github.com/appwrite/appwrite/pull/8661)
# Version 1.5.10
## What's Changed
+3 -3
View File
@@ -67,7 +67,7 @@ docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
--entrypoint="install" \
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
### Windows
@@ -79,7 +79,7 @@ docker run -it --rm ^
--volume //var/run/docker.sock:/var/run/docker.sock ^
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
--entrypoint="install" ^
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
#### PowerShell
@@ -89,7 +89,7 @@ docker run -it --rm `
--volume /var/run/docker.sock:/var/run/docker.sock `
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
--entrypoint="install" `
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。
+3 -3
View File
@@ -75,7 +75,7 @@ docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
--entrypoint="install" \
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
### Windows
@@ -87,7 +87,7 @@ docker run -it --rm ^
--volume //var/run/docker.sock:/var/run/docker.sock ^
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
--entrypoint="install" ^
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
#### PowerShell
@@ -97,7 +97,7 @@ docker run -it --rm `
--volume /var/run/docker.sock:/var/run/docker.sock `
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
--entrypoint="install" `
appwrite/appwrite:1.5.10
appwrite/appwrite:1.5.11
```
Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.
+2 -2
View File
@@ -112,8 +112,8 @@ const APP_LIMIT_LIST_DEFAULT = 25; // Default maximum number of items to return
const APP_KEY_ACCCESS = 24 * 60 * 60; // 24 hours
const APP_USER_ACCCESS = 24 * 60 * 60; // 24 hours
const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours
const APP_CACHE_BUSTER = 4330;
const APP_VERSION_STABLE = '1.5.10';
const APP_CACHE_BUSTER = 4331;
const APP_VERSION_STABLE = '1.5.11';
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
const APP_DATABASE_ATTRIBUTE_IP = 'ip';
+4 -1
View File
@@ -318,6 +318,9 @@ $image = $this->getParam('image', '');
- _APP_LOGGING_CONFIG
- _APP_EXECUTOR_SECRET
- _APP_EXECUTOR_HOST
- _APP_MAINTENANCE_RETENTION_ABUSE
- _APP_MAINTENANCE_RETENTION_AUDIT
- _APP_MAINTENANCE_RETENTION_EXECUTION
appwrite-worker-databases:
image: <?php echo $organization; ?>/<?php echo $image; ?>:<?php echo $version."\n"; ?>
@@ -753,7 +756,7 @@ $image = $this->getParam('image', '');
<<: *x-logging
restart: unless-stopped
stop_signal: SIGINT
image: openruntimes/executor:0.5.7
image: openruntimes/executor:0.5.10
networks:
- appwrite
- runtimes
+1 -1
View File
@@ -833,7 +833,7 @@ services:
hostname: exc1
<<: *x-logging
stop_signal: SIGINT
image: openruntimes/executor:0.5.7
image: openruntimes/executor:0.5.10
restart: unless-stopped
networks:
- appwrite
+1
View File
@@ -89,6 +89,7 @@ abstract class Migration
'1.5.8' => 'V20',
'1.5.9' => 'V20',
'1.5.10' => 'V20',
'1.5.11' => 'V20'
];
/**