Skip to content

Commit

Permalink
Merge pull request #131 from bedatadriven/version-4.37
Browse files Browse the repository at this point in the history
Version 4.37
  • Loading branch information
jamiewhths authored Oct 16, 2024
2 parents 5df5d22 + fe23cb9 commit 3b85289
Show file tree
Hide file tree
Showing 36 changed files with 4,808 additions and 355 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ docs/
/doc/
/Meta/
inst/doc
tests/testthat/testthat-problems.rds
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Package: activityinfo
Type: Package
Title: R interface to ActivityInfo.org, an information management software for
humanitarian and development operations
Version: 4.36.1
Date: 2023-07-01
Version: 4.37
Date: 2024-10-16
Authors@R: c(
person("Alex", "Bertram", email = "alex@bedatadriven.com",
role = c("aut", "cre")),
Expand Down
11 changes: 11 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ S3method(do,tbl_activityInfoRemoteRecords)
S3method(do_,tbl_activityInfoRemoteRecords)
S3method(filter,tbl_activityInfoRemoteRecords)
S3method(filter_,tbl_activityInfoRemoteRecords)
S3method(getDatabaseRole,character)
S3method(getDatabaseRole,databaseTree)
S3method(getRecords,activityInfoFormSchema)
S3method(getRecords,activityInfoFormTree)
S3method(getRecords,activityInfo_tbl_df)
Expand Down Expand Up @@ -107,6 +109,7 @@ export(addFilter)
export(addForm)
export(addFormField)
export(addRecord)
export(addRole)
export(addSort)
export(adjustWindow)
export(allColumnStyle)
Expand All @@ -117,13 +120,15 @@ export(collect)
export(columnStyle)
export(createFormSchemaFromData)
export(cuid)
export(databasePermissions)
export(dateFieldSchema)
export(defaultColumnStyle)
export(deleteDatabase)
export(deleteDatabaseUser)
export(deleteForm)
export(deleteFormField)
export(deleteRecord)
export(deleteRoles)
export(extractSchemaFromFields)
export(filter)
export(formFieldSchema)
Expand All @@ -137,6 +142,7 @@ export(getBillingAccountDomains)
export(getBillingAccountUsers)
export(getDatabaseBillingAccount)
export(getDatabaseResources)
export(getDatabaseRole)
export(getDatabaseSchema)
export(getDatabaseTree)
export(getDatabaseUser)
Expand All @@ -148,6 +154,7 @@ export(getQuantityTable)
export(getRecord)
export(getRecordHistory)
export(getRecords)
export(grant)
export(idColumnStyle)
export(importRecords)
export(importTable)
Expand All @@ -157,6 +164,7 @@ export(monthFieldSchema)
export(multilineFieldSchema)
export(multipleSelectFieldSchema)
export(namedElementVarList)
export(parameter)
export(permissions)
export(prettyColumnStyle)
export(quantityFieldSchema)
Expand All @@ -167,7 +175,10 @@ export(recoverRecord)
export(reference)
export(referenceFieldSchema)
export(relocateForm)
export(resourcePermissions)
export(role)
export(roleAssignment)
export(roleFilter)
export(sectionFieldSchema)
export(serialNumberFieldSchema)
export(singleSelectFieldSchema)
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.37]
- Legacy roles are no longer supported from 4.37 onwards
- Potential breaking change: the maxDepth parameter in column styles is now set to two by default; parent and reference columns no longer expand indefinitely
- New functions for new role and permissions system (#114)
- Added ability to update sub-forms (#119)
- Addressed cyclic structures in reference columns and parent forms and added maxDepth parameter to column styles. (#132)

## [4.36.1]
- Fix for `importRecords()` when the form has a serial number (#124)

Expand Down
Loading

0 comments on commit 3b85289

Please sign in to comment.