Chirag Aggarwal
785efa3355
stable release
2026-01-26 10:40:29 +05:30
Chirag Aggarwal
329b7e1856
Merge branch '1.8.x' into feat-sdk-for-md
2026-01-26 10:25:28 +05:30
Matej Bačo
752731050e
Proper quality to template usecases enums
2026-01-25 21:55:52 +01:00
Darshan
335c3f363c
fix: ci.
2026-01-25 18:07:42 +05:30
Darshan
6dac2ce253
improve: animations like imagine.
...
fix: password eye button not showing again.
2026-01-25 18:01:58 +05:30
Darshan
f34e40e1e4
add: ci tests.
2026-01-25 17:12:55 +05:30
Darshan
fe74760177
update: screenshot tests.
2026-01-25 17:06:10 +05:30
Darshan
2d5e64a21e
update: screenshot tests.
2026-01-25 15:42:09 +05:30
Darshan
b503965e8c
update: tests.
2026-01-25 15:20:09 +05:30
Darshan
a9da80687f
remove: unneeded check.
2026-01-25 11:33:24 +05:30
Darshan
d4dd6cf634
add: completion marker.
2026-01-25 11:33:05 +05:30
Darshan
85d2e08dc5
update: installer doc.
2026-01-25 10:51:09 +05:30
Darshan
0eda9e6315
add: account creation.
...
feat: mocking options.
2026-01-24 20:09:56 +05:30
Darshan
eb8abcfe63
fix: empty input considered as invalid.
...
fix: referencing wrong file in upgrade task.
2026-01-24 16:35:14 +05:30
Darshan
80a5c24840
bump: gitignore.
2026-01-24 16:32:01 +05:30
Darshan
5144b1ce88
update: splits.
...
fix: broken SSE.
fix: upgrade flow not working.
feat: csrf tokens for better security.
fix: local testing mode with wrong paths.
feat: csrf validations pre-post hook plus proper permissions handling on files.
feat: js modules for better handling of js operations on web installer frontend ui.
2026-01-24 16:30:51 +05:30
10e2edac90
Update CONTRIBUTING.md
...
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-01-24 14:03:11 +05:30
Shivangisharma4
340081a67d
doc: Fix typos in CONTRIBUTING.md
2026-01-24 13:58:20 +05:30
Jake Barnby
368113ade5
Merge branch 'feat-string-types' of github.com:appwrite/appwrite into feat-string-types
...
# Conflicts:
# src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Columns/String/Create.php
# src/Appwrite/Platform/Modules/Databases/Http/TablesDB/Tables/Columns/String/Update.php
2026-01-24 16:24:35 +13:00
Jake Barnby
f1d1c5a737
Merge remote-tracking branch 'origin/1.8.x' into feat-string-types
...
# Conflicts:
# composer.lock
2026-01-24 16:23:39 +13:00
Jake Barnby
5815008994
Update deprecation
2026-01-24 16:23:05 +13:00
Jake Barnby and GitHub
ac83d417aa
Merge pull request #11183 from appwrite/copilot/sub-pr-11174
2026-01-24 14:47:34 +13:00
copilot-swe-agent[bot] and abnegate
9993c15fb8
chore: revert String attribute routes deprecation to 1.8.0
...
Co-authored-by: abnegate <5857008+abnegate@users.noreply.github.com >
2026-01-24 01:15:15 +00:00
copilot-swe-agent[bot] and abnegate
11aecdf33f
chore: mark TablesDB String column routes as deprecated
...
Co-authored-by: abnegate <5857008+abnegate@users.noreply.github.com >
2026-01-24 01:11:03 +00:00
copilot-swe-agent[bot] and abnegate
a088e85a24
chore: update String attribute deprecation to 1.9.0
...
Co-authored-by: abnegate <5857008+abnegate@users.noreply.github.com >
2026-01-24 01:01:49 +00:00
copilot-swe-agent[bot] and abnegate
1fd687b6b7
chore: update composer.lock after reverting to 4.*
...
Co-authored-by: abnegate <5857008+abnegate@users.noreply.github.com >
2026-01-24 00:30:56 +00:00
copilot-swe-agent[bot] and abnegate
aa26823549
chore: revert utopia-php/database to 4.*
...
Co-authored-by: abnegate <5857008+abnegate@users.noreply.github.com >
2026-01-24 00:26:11 +00:00
copilot-swe-agent[bot]
109e16362d
Initial plan
2026-01-24 00:23:12 +00:00
Jake Barnby and GitHub
294518d014
Merge branch '1.8.x' into feat-string-types
2026-01-24 13:21:30 +13:00
Jake Barnby and Claude Opus 4.5
046a7cd90e
test: skip update tests pending utopia-php/database fix
...
The updateAttribute method in utopia-php/database does not yet support
VARCHAR, TEXT, MEDIUMTEXT, and LONGTEXT types. These tests are skipped
until the upstream library adds support for updating these attribute types.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-24 06:15:21 +13:00
Jake Barnby and Claude Opus 4.5
fea210c9ed
chore: use utopia-php/database dev-feat-string-types branch
...
The string types feature requires the dev-feat-string-types branch of
utopia-php/database which includes support for VARCHAR, TEXT, MEDIUMTEXT,
and LONGTEXT types in the updateAttribute method.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-24 05:51:28 +13:00
Jake Barnby and Claude Opus 4.5
760f065711
fix: reduce longtext size to fit within INT column limit
...
The size field in the attributes collection is stored as a signed 32-bit
integer (VAR_INTEGER). The longtext size of 4294967295 (2^32-1) exceeds
the maximum value of 2147483647 (2^31-1), causing attribute creation to
fail with a 400 error (document_invalid_structure).
Changed the longtext size to 2147483647 which is the maximum value that
fits within the signed 32-bit integer constraint of the schema.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-24 05:24:26 +13:00
Jake Barnby and Claude Opus 4.5
c42fbc49f5
fix: remove max-size varchar test that exceeds row width limit
...
The test tried to create multiple VARCHAR attributes in the same
collection, including a 16381-character varchar. The cumulative
row width exceeded MariaDB's 65535 byte row limit, causing the
test to fail with a 400 error.
Calculation: 1067 (base) + 1021 (255*4+1) + 401 (100*4+1) + 201
(50*4+1) + 20 (array) + 65526 (16381*4+2) = 68236 bytes > 65535
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-24 04:25:06 +13:00
Chirag Aggarwal and GitHub
0dd2f29a7e
Merge pull request #11182 from appwrite/chore-make-update-name-optional
2026-01-23 20:51:36 +05:30
Jake Barnby and Claude Opus 4.5
e20851e7a8
fix: reorder imports to satisfy linter
...
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-24 03:53:42 +13:00
Chirag Aggarwal
67e2104e98
chore: make name update optional in databases and tables
2026-01-23 19:55:06 +05:30
Hemachandar and GitHub
a2ff833efe
Upgrade utopia-php/domains ( #11181 )
...
* Upgrade utopia-php/domains
* update
2026-01-23 15:31:20 +05:30
Chirag Aggarwal
e894eca201
add rc3
2026-01-23 15:25:05 +05:30
Chirag Aggarwal and GitHub
7573e0fee9
Merge branch '1.8.x' into release-cli-13.1.0
2026-01-23 13:42:30 +05:30
Chirag Aggarwal and GitHub
46be2d0e49
Merge pull request #11179 from appwrite/fix-deployment-enum
2026-01-23 11:03:54 +05:30
Chirag Aggarwal and GitHub
700ed9f882
Merge pull request #11180 from appwrite/chore-update-executor-healthcheck
2026-01-23 11:03:41 +05:30
Chirag Aggarwal
440be52405
chore: update executor healthcheck to improve flakiness
2026-01-23 09:47:54 +05:30
Chirag Aggarwal
7643196d97
fix: deploymentstatus enum missing canceled value
2026-01-23 09:22:18 +05:30
Chirag Aggarwal
7e994f8db5
release cli sdk 13.1.0
2026-01-23 09:15:13 +05:30
Darshan
3d86f67acb
update: move server handling to a new file.
...
update: tooltip things.
remove: unused var.
2026-01-22 19:52:46 +05:30
Jake Barnby
1b7cc0b5f9
Add docs
2026-01-23 01:51:58 +13:00
Jake Barnby
60a0b663b9
Add tests
2026-01-23 01:51:52 +13:00
Jake Barnby
e6496ec453
Add routes
2026-01-23 01:51:43 +13:00
Jake Barnby
07204d748d
Add response models
2026-01-23 01:51:24 +13:00
Darshan
58440e70ac
misc.
2026-01-22 18:12:41 +05:30