Commit Graph

8501 Commits

Author SHA1 Message Date
Matej Bačo 12b6351060 Separate deployment and build sizes 2024-08-19 11:06:58 +00:00
fogelito ccc34b049a notifyProjects 2024-08-19 14:03:49 +03:00
Bradley Schofield e37c79cf3c Update to 65534 2024-08-19 18:43:50 +09:00
Bradley Schofield 4e5a2f71cc Change self-hosted update to 75K 2024-08-19 18:34:52 +09:00
Bradley Schofield 04e7434932 Address Christy's Comments 2024-08-19 18:07:10 +09:00
Bradley Schofield d52ab783d0 Add specification to response filter 2024-08-19 17:51:16 +09:00
Bradley Schofield eb7f712379 Sync with 1.6.x changes
- Added migration for `files` metadata size increase
- Disabled `specification` migration until variable runtime specs are ready
- Unset `key` for runtimes in response filters
- Set the correct attribute `scopes` to be optional, reverting it for key and setting it for functions.
2024-08-19 14:52:07 +09:00
Bradley Schofield f4bf57efcb Merge remote-tracking branch 'origin/1.6.x' into feat-runtime-controls-1.5.x
# Conflicts:
#	app/config/specs/open-api3-latest-client.json
#	app/config/specs/open-api3-latest-console.json
#	app/config/specs/open-api3-latest-server.json
#	app/config/specs/swagger2-1.6.x-client.json
#	app/config/specs/swagger2-1.6.x-console.json
#	app/config/specs/swagger2-latest-client.json
#	app/config/specs/swagger2-latest-console.json
#	app/config/specs/swagger2-latest-server.json
2024-08-19 14:05:56 +09:00
Bradley Schofield 09f1a378dc Merge branch '1.6.x' into feat-runtime-controls-1.5.x
# Conflicts:
#	app/config/specs/swagger2-latest-client.json
#	app/config/specs/swagger2-latest-console.json
#	app/config/specs/swagger2-latest-server.json
2024-08-19 11:57:34 +09:00
Khushboo Verma 73819ced1b Merge branch '1.6.x' into fix-templateBranch-in-request-filter 2024-08-16 22:17:30 +05:30
Khushboo Verma f4fb3e3c75 Default fallback to for templateBranch 2024-08-16 17:26:19 +05:30
Matej Bačo d5db9253cd Fix breaking changes in lib 2024-08-16 11:25:01 +00:00
Christy Jacob a114977100 Merge pull request #8543 from appwrite/fix-anyof-validator-specs
Fix: anyof validator specs
2024-08-16 13:01:05 +04:00
Bradley Schofield 4128d4f221 Merge 1.6.x into feat-runtime-controls 2024-08-16 04:39:21 +00:00
Christy Jacob 22a3508c24 Merge pull request #8217 from appwrite/feat-extract-team-deletion
Feat Sync team deletion
2024-08-15 23:51:36 +04:00
Matej Bačo 92c423f744 Fix specs of AnyOf validator 2024-08-15 12:12:15 +00:00
Bradley Schofield 6b9b1286a4 Merge branch '1.6.x' into feat-runtime-controls-1.5.x 2024-08-15 11:17:50 +09:00
Matej Bačo d6676c2e4d Fix tests 2024-08-14 16:35:24 +00:00
Matej Bačo f45f2f127b Merge remote-tracking branch 'origin/1.6.x' into fix-manual-templates 2024-08-14 16:00:34 +00:00
Matej Bačo 9d8c0d37f6 PR review changes 2024-08-14 16:00:13 +00:00
Bradley Schofield 5285ef9939 Merge remote-tracking branch 'origin/1.6.x' into feat-runtime-controls-1.5.x 2024-08-14 19:36:15 +09:00
Matej Bačo 9964631bb7 Apply new terminology for template branch 2024-08-14 10:01:04 +00:00
Matej Bačo 72e4534025 Merge remote-tracking branch 'origin/1.6.x' into fix-manual-templates 2024-08-14 09:50:46 +00:00
Khushboo Verma 95e6f148da Merge branch '1.6.x' into fix-header-for-multipart 2024-08-14 15:12:46 +05:30
Khushboo Verma 60e42c2e07 Add boundary to multipart header 2024-08-14 15:09:55 +05:30
Bradley Schofield 79a757297d Update size to specification for variable runtimes 2024-08-14 11:48:40 +09:00
Christy Jacob bfa253297b Merge branch 'main' of https://github.com/appwrite/appwrite into sync-1.6-main 2024-08-13 15:36:13 +00:00
Matej Bačo 380dc8a106 Fix manual templates 2024-08-13 10:50:58 +00:00
Christy Jacob 3da1cc69d7 Merge pull request #8484 from appwrite/fix-missing-build-logs
Fix: missing build logs
2024-08-13 00:38:23 +04:00
Christy Jacob 87d6900f48 Merge pull request #8517 from appwrite/fix-deploy-from-git-with-space
Fix deploy from git with space
2024-08-13 00:36:52 +04:00
Binyamin Yawitz fbd55eb17e review: addressing 2024-08-12 16:36:16 -04:00
Binyamin Yawitz aa27a37064 review: addressing 2024-08-12 16:33:00 -04:00
Steven Nguyen f47af1626c Bump appwrite version to 1.5.10 2024-08-12 19:55:22 +00:00
Steven Nguyen a52626e5d3 fix(upgrade): fix migration stuck at "Starting Data Migration [...]"
The iterator was in the loop so it was always reset to null and the
same data set to be scanned.

For cases where this happened, the iterator was not empty, but the keys
returned from the scan was empty. According to [redis](https://redis.io/docs/latest/commands/scan/#number-of-elements-returned-at-every-scan-call),
this is expected behavior.

> SCAN family functions do not guarantee that the number of elements returned per call are in a given range. The commands are also allowed to return zero elements, and the client should not consider the iteration complete as long as the returned cursor is not zero.

As such, we must make sure we're using the new iterator returned to
continue scanning the keys.
2024-08-12 19:34:23 +00:00
Binyamin Yawitz 5bf9794cb2 chore: pint 2024-08-12 15:00:19 -04:00
Binyamin Yawitz 9b79b14821 fix: github cloning and archiving of functions with space 2024-08-12 14:46:12 -04:00
Khushboo Verma cd5a9c5c84 Update proxy version 2024-08-12 23:41:33 +05:30
Khushboo Verma e4cfcd00fd Updated composer.json 2024-08-12 23:17:22 +05:30
Christy Jacob ad43e1c419 Merge pull request #8412 from appwrite/feat-schedule-execution-improvements
feat: schedule execution improvements
2024-08-12 19:59:56 +04:00
Christy Jacob 6d7fe6e28d Merge pull request #8452 from appwrite/fix-buckets-metadata
fix: Increasing buckets metadata
2024-08-12 19:10:36 +04:00
Christy Jacob 856abeb76b Merge pull request #8466 from appwrite/feat-adding-email
Feat changing emails
2024-08-12 19:01:33 +04:00
fogelito ab4ac2e568 Change private to protected 2024-08-12 17:44:05 +03:00
Khushboo Verma 468a97bcd2 Merge branch '1.6.x' into feat-add-multipart-support 2024-08-12 15:39:46 +05:30
Khushboo Verma 285b48a9e8 Replace regex with ctype function 2024-08-12 15:39:35 +05:30
Khushboo Verma 1a5b5f15b0 Merge branch '1.6.x' into chore-allow-more-deployment-attributes 2024-08-12 15:21:21 +05:30
Luke B. Silver 4b5d8b4102 Merge branch '1.6.x' into feat-schedule-execution-improvements 2024-08-12 10:42:52 +01:00
Christy Jacob 4f0a265520 Merge pull request #8503 from appwrite/feat-base-runtimes
feat: base runtimes key
2024-08-12 13:41:54 +04:00
Christy Jacob 70c933f8d8 Merge pull request #8492 from appwrite/feat-dynamic-keys-build
Feat: Dynamic keys in builds
2024-08-12 13:24:30 +04:00
Khushboo Verma 74615f6d1c Merge branch '1.6.x' into chore-allow-more-deployment-attributes 2024-08-12 14:53:16 +05:30
Khushboo Verma 34fc855c8a Allow deployment queries on type and size 2024-08-12 14:49:16 +05:30