Skip to content

Releases: tflanagan/php-quickbase

v1.2.2

14 Apr 15:44
Compare
Choose a tag to compare
lib: fixed removing handle when error occurs

v1.2.1

06 Mar 17:03
Compare
Choose a tag to compare
lib: fix prepareCH during error handling

v1.2.0

03 Mar 15:22
Compare
Choose a tag to compare
v1.2.0

v1.1.0

01 Mar 20:57
Compare
Choose a tag to compare
doc: update README to reflect structure change

v1.0.0

29 Jan 19:39
Compare
Choose a tag to compare
v1.0.0

v0.6.0

19 Jan 15:47
Compare
Choose a tag to compare
lib: intro responseAsObject, expose static methods, fix err check

v0.5.0

15 Jan 21:19
Compare
Choose a tag to compare
Lib: Introduce maxErrorRetryAttempts

v0.4.1

02 Dec 16:56
Compare
Choose a tag to compare
Lib: Change encoding to ISO-8859-1 from UTF-8

QuickBase's default encoding is ISO-8859-1. SimpleXML expects to
read/write what it is declared as. If it encounters a character that is
not valid, it throws an exception.

v0.4.0

06 Nov 18:29
Compare
Choose a tag to compare
Lib: Handle file attachment fields

v0.3.0

30 Oct 21:16
Compare
Choose a tag to compare
Lib: Add dbidAsParam flag, isolate Query settings

- API_GetAppDTMInfo needed to be executed against /db/main with the dbid
passed in as a query string parameter. To achieve this, a new flag in the
settings.flags object has been created: dbidAsParam (defaults to false).

When dbidAsParam is true, any passed in dbid option will be sent via the
query string or xml packet instead of the URL path.

- Isolated each QuickBaseQuery settings so that an overwritten setting
for a specific query does not affect other queries.

- Added parsing of non-xml responses

- Added API_GetAppDTMInfo response parsing
- Added API_GetRoleInfo response parsing
- Added API_GrantedDBs response parsing
- Added API_UserRoles response parsing

- Added appid testing env variable
- Added test for API_AddReplaceDBPage
- Added test for API_CreateDatabase (pending)
- Added test for API_CreateTable (pending)
- Added test for API_FindDBByName
- Added test for API_GenAddRecordForm
- Added test for API_GenResultsTable
- Added test for API_GetAncestorInfo
- Added test for API_GetAppDTMInfo
- Added test for API_GetDBInfo
- Added test for API_GetDBPage
- Added test for API_GetDBVar
- Added test for API_GetNumRecords
- Added test for API_GetRoleInfo
- Added test for API_GrantedDBs
- Added test for API_ImportFromCSV
- Added test for API_PurgeRecords
- Added test for API_SetDBVar
- Added test for API_UserRoles