Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | start sending contextHistory along with context | Mario Vavti | 2025-02-11 | 1 | -1/+4 |
| | |||||
* | bump version | Mario Vavti | 2025-02-01 | 1 | -1/+1 |
| | |||||
* | changelog | Mario Vavti | 2025-02-01 | 1 | -0/+11 |
| | |||||
* | Merge branch 'owa-error-messages' into 'dev' | Mario | 2025-02-01 | 2 | -78/+170 |
|\ | | | | | | | | | Add error message on missing owa auth headers See merge request hubzilla/core!2183 | ||||
| * | Add error message on missing owa auth headers | Harald Eilertsen | 2025-01-29 | 2 | -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' | Mario | 2025-02-01 | 1 | -0/+5 |
|\ \ | | | | | | | | | | | | | Add Zotlabs\Tests namespace to autloader in dev See merge request hubzilla/core!2182 | ||||
| * | | Add Zotlabs\Tests namespace to autloader in dev | Harald Eilertsen | 2025-01-29 | 1 | -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' | Mario | 2025-02-01 | 2 | -2/+250 |
|\ \ | | | | | | | | | | | | | Add an insert and update methods to dba_pdo See merge request hubzilla/core!2181 | ||||
| * | | Fix broken DbaPdo test on postgresql | Harald Eilertsen | 2025-01-29 | 1 | -2/+2 |
| | | | |||||
| * | | Add an dba_pdo::update method | Harald Eilertsen | 2025-01-29 | 2 | -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 supported | Harald Eilertsen | 2025-01-29 | 1 | -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 Eilertsen | 2025-01-29 | 1 | -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 MySQL | Harald Eilertsen | 2025-01-29 | 1 | -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 Eilertsen | 2025-01-29 | 1 | -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_pdo | Harald Eilertsen | 2025-01-29 | 2 | -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' | Mario | 2025-02-01 | 2 | -0/+6 |
|\ \ | | | | | | | | | | | | | add highlight/mark button See merge request hubzilla/core!2180 | ||||
| * | | add highlight/mark button | Rocky | 2025-02-01 | 2 | -0/+6 |
| |/ | |||||
* | | calling fetch_post_tags() will add duplicate items here | Mario Vavti | 2025-02-01 | 1 | -1/+2 |
| | | |||||
* | | possible sql performance improvements | Mario Vavti | 2025-01-30 | 2 | -7/+10 |
|/ | |||||
* | fix php warniing in case tgt_type is not set | Mario Vavti | 2025-01-24 | 1 | -1/+1 |
| | |||||
* | return if $furl is empty for some reason | Mario Vavti | 2025-01-24 | 1 | -0/+4 |
| | |||||
* | add target and tgt_type tou sourced rss items if we rewrite them to our own | Mario Vavti | 2025-01-24 | 1 | -11/+9 |
| | |||||
* | unescape_tags() on URLs before we start messing with them | Mario Vavti | 2025-01-23 | 1 | -1/+4 |
| | |||||
* | fix auto save draft not set correctly and use round instead of ceil for ↵ | Mario Vavti | 2025-01-23 | 2 | -3/+3 |
| | | | | cover height calculation | ||||
* | tagsinput still requires jquery | Mario Vavti | 2025-01-23 | 1 | -4/+2 |
| | |||||
* | bump version | Mario Vavti | 2025-01-22 | 1 | -1/+1 |
| | |||||
* | changelog | Mario Vavti | 2025-01-22 | 1 | -0/+6 |
| | |||||
* | make sure to provide uid to drop_item() where applicable and check ownership ↵ | Mario Vavti | 2025-01-22 | 2 | -9/+18 |
| | | | | when imporing feed items | ||||
* | Merge branch 'dev' of https://framagit.org/hubzilla/core into dev | Mario Vavti | 2025-01-17 | 2 | -1/+32 |
|\ | |||||
| * | Merge branch 'add-security-policy' into 'dev' | Mario | 2025-01-16 | 1 | -0/+31 |
| |\ | | | | | | | | | | | | | Proposing a security policy. See merge request hubzilla/core!2164 | ||||
| | * | Proposing a security policy. | Harald Eilertsen | 2025-01-16 | 1 | -0/+31 |
| | | | |||||
| * | | use bin2hex() instead of btoa() to create an id for the toast. btoa() will ↵ | Mario Vavti | 2025-01-15 | 1 | -1/+1 |
| |/ | | | | | | | not work with nonascii chars. | ||||
* | | bump version | Mario Vavti | 2025-01-17 | 1 | -1/+1 |
| | | |||||
* | | rewrite redbasic javascript without jquery | Mario Vavti | 2025-01-17 | 2 | -287/+328 |
|/ | |||||
* | fix regression in notifications filter | Mario Vavti | 2025-01-06 | 1 | -1/+1 |
| | |||||
* | bump version | Mario Vavti | 2025-01-05 | 1 | -1/+1 |
| | |||||
* | changelog | Mario Vavti | 2025-01-05 | 1 | -0/+6 |
| | |||||
* | dismiss entries where primary location data is not complete for some reason | Mario Vavti | 2025-01-05 | 1 | -0/+5 |
| | |||||
* | cleanup outdated doc entries just once after the docs were imported to the db | Mario Vavti | 2025-01-05 | 1 | -12/+12 |
| | |||||
* | remove redundant arguments | Mario Vavti | 2025-01-04 | 1 | -2/+2 |
| | |||||
* | bump version | Mario Vavti | 2024-12-29 | 1 | -1/+1 |
| | |||||
* | changelog | Mario Vavti | 2024-12-29 | 1 | -0/+5 |
| | |||||
* | pass uid to drop_item() to ensure we will have permission to actually drop ↵ | Mario Vavti | 2024-12-29 | 1 | -2/+2 |
| | | | | the item | ||||
* | changelog | Mario | 2024-12-26 | 1 | -0/+3 |
| | |||||
* | missing argument name | Mario | 2024-12-26 | 1 | -1/+1 |
| | |||||
* | changelog and bump version | Mario | 2024-12-26 | 2 | -1/+12 |
| | |||||
* | fix another possible loop | Mario | 2024-12-26 | 2 | -2/+2 |
| | |||||
* | this should fix the infinite loop caused by a regression in Daemon/Expire | Mario | 2024-12-25 | 3 | -4/+4 |
| | |||||
* | hotfix for loop caused in Daemon/Expire | Mario | 2024-12-25 | 2 | -2/+2 |
| | |||||
* | bump version | Mario | 2024-12-22 | 1 | -1/+1 |
| |