aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* start sending contextHistory along with contextMario Vavti2025-02-111-1/+4
|
* bump versionMario Vavti2025-02-011-1/+1
|
* changelogMario Vavti2025-02-011-0/+11
|
* Merge branch 'owa-error-messages' into 'dev'Mario2025-02-012-78/+170
|\ | | | | | | | | Add error message on missing owa auth headers See merge request hubzilla/core!2183
| * Add error message on missing owa auth headersHarald Eilertsen2025-01-292-78/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | If the /owa endpoint received a request with a missing or invalid Authorization header, it would return an error to the requester, but without any message describing why it failes. This patch adds a message to the error response, so that it will be a bit easier to debug these issues in the future. The owa spec includes a 'message' field in the error response, but makes it optional. Any conforming implementations should accept a response that includes the 'message' field.
* | Merge branch 'testing-add-psr4-namespace' into 'dev'Mario2025-02-011-0/+5
|\ \ | | | | | | | | | | | | Add Zotlabs\Tests namespace to autloader in dev See merge request hubzilla/core!2182
| * | Add Zotlabs\Tests namespace to autloader in devHarald Eilertsen2025-01-291-0/+5
| |/ | | | | | | | | | | | | This is technically not needed, as we load the required classes in the bootstrap file (`tests/unit/bootstrap.php`), but it helps editors that integrate with language servers etc to find the classes so it does not flag errors everywhere.
* | Merge branch 'dba_pdo-insert-and-update' into 'dev'Mario2025-02-012-2/+250
|\ \ | | | | | | | | | | | | Add an insert and update methods to dba_pdo See merge request hubzilla/core!2181
| * | Fix broken DbaPdo test on postgresqlHarald Eilertsen2025-01-291-2/+2
| | |
| * | Add an dba_pdo::update methodHarald Eilertsen2025-01-292-6/+84
| | | | | | | | | | | | | | | This is a convenience funcition to make it easier to update an existing row in a database table.
| * | Use returning clause on dba_pdo::insert where supportedHarald Eilertsen2025-01-291-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | By using the returning clause when inserting a new record, we get back the inserted record right away; thus saving us an extra roundtrip to the database. Both PostgreSQL and MariaDB supports this clause, but MySQL don't. In that case we fall back to manually fetching the last inserted row.
| * | Fetch the server version on dba_pdo::connect.Harald Eilertsen2025-01-291-0/+3
| | | | | | | | | | | | | | | | | | | | | The server version string is useful to among other things check whether we are running on a real MySQL system, or MariaDB. Instead of fetching it every time we need it, cache it in the dba_pdo object when we connect to the db.
| * | Only skip DbaPdo returning test on actual MySQLHarald Eilertsen2025-01-291-1/+5
| | | | | | | | | | | | | | | | | | MySQL does not support the INSERT...RETURNING clause, while MariaDB does. This patch ensures that the test is not skipped on MariaDB, but only on an actual MySQL system.
| * | Fix return value from dba_pdo::q()Harald Eilertsen2025-01-291-5/+1
| | | | | | | | | | | | | | | | | | | | | According to the documentation, this function should never return null. Still that's what it did if a non-select query raised a PDOException. This patch fixes this, so that it so that the function conforms to the docs.
| * | Add an insert method to dba_pdoHarald Eilertsen2025-01-292-1/+159
| |/ | | | | | | | | | | | | | | | | | | | | A common use case is to insert a record into a database table, but also instantiate an object from the inserted data. This requires that we know the value of any default or calculated columns that is filled in by the database when the row is inserter. This patch adds a `insert` method to pda_dbo that will insert a row, and immediately fetch the row back from the database – including the default and calculated values not specified by the insert itself.
* | Merge branch 'highlight_button' into 'dev'Mario2025-02-012-0/+6
|\ \ | | | | | | | | | | | | add highlight/mark button See merge request hubzilla/core!2180
| * | add highlight/mark buttonRocky2025-02-012-0/+6
| |/
* | calling fetch_post_tags() will add duplicate items hereMario Vavti2025-02-011-1/+2
| |
* | possible sql performance improvementsMario Vavti2025-01-302-7/+10
|/
* fix php warniing in case tgt_type is not setMario Vavti2025-01-241-1/+1
|
* return if $furl is empty for some reasonMario Vavti2025-01-241-0/+4
|
* add target and tgt_type tou sourced rss items if we rewrite them to our ownMario Vavti2025-01-241-11/+9
|
* unescape_tags() on URLs before we start messing with themMario Vavti2025-01-231-1/+4
|
* fix auto save draft not set correctly and use round instead of ceil for ↵Mario Vavti2025-01-232-3/+3
| | | | cover height calculation
* tagsinput still requires jqueryMario Vavti2025-01-231-4/+2
|
* bump versionMario Vavti2025-01-221-1/+1
|
* changelogMario Vavti2025-01-221-0/+6
|
* make sure to provide uid to drop_item() where applicable and check ownership ↵Mario Vavti2025-01-222-9/+18
| | | | when imporing feed items
* Merge branch 'dev' of https://framagit.org/hubzilla/core into devMario Vavti2025-01-172-1/+32
|\
| * Merge branch 'add-security-policy' into 'dev'Mario2025-01-161-0/+31
| |\ | | | | | | | | | | | | Proposing a security policy. See merge request hubzilla/core!2164
| | * Proposing a security policy.Harald Eilertsen2025-01-161-0/+31
| | |
| * | use bin2hex() instead of btoa() to create an id for the toast. btoa() will ↵Mario Vavti2025-01-151-1/+1
| |/ | | | | | | not work with nonascii chars.
* | bump versionMario Vavti2025-01-171-1/+1
| |
* | rewrite redbasic javascript without jqueryMario Vavti2025-01-172-287/+328
|/
* fix regression in notifications filterMario Vavti2025-01-061-1/+1
|
* bump versionMario Vavti2025-01-051-1/+1
|
* changelogMario Vavti2025-01-051-0/+6
|
* dismiss entries where primary location data is not complete for some reasonMario Vavti2025-01-051-0/+5
|
* cleanup outdated doc entries just once after the docs were imported to the dbMario Vavti2025-01-051-12/+12
|
* remove redundant argumentsMario Vavti2025-01-041-2/+2
|
* bump versionMario Vavti2024-12-291-1/+1
|
* changelogMario Vavti2024-12-291-0/+5
|
* pass uid to drop_item() to ensure we will have permission to actually drop ↵Mario Vavti2024-12-291-2/+2
| | | | the item
* changelogMario2024-12-261-0/+3
|
* missing argument nameMario2024-12-261-1/+1
|
* changelog and bump versionMario2024-12-262-1/+12
|
* fix another possible loopMario2024-12-262-2/+2
|
* this should fix the infinite loop caused by a regression in Daemon/ExpireMario2024-12-253-4/+4
|
* hotfix for loop caused in Daemon/ExpireMario2024-12-252-2/+2
|
* bump versionMario2024-12-221-1/+1
|