184ebdedf1
v1.12.2-rc.6
2025-08-26 11:17:43 +10:00
fe4d3ed1fd
v1.12.2-rc.5
2025-08-25 09:48:04 +10:00
231ef9c27e
chore: add support option ( #1853 )
2025-08-19 20:59:03 +10:00
439262fd02
v1.12.2-rc.4
2025-08-16 19:16:29 +10:00
9d5b573dda
v1.12.2-rc.3
2025-08-02 00:46:22 +10:00
3409aae411
feat: add email domains ( #1895 )
...
Implemented Email Domains which allows Platform/Enterprise customers to
send emails to recipients using their custom emails.
2025-07-24 16:05:00 +10:00
9ea56a77ff
v1.12.2-rc.2
2025-07-20 17:05:19 +10:00
37ed5ad222
v1.12.2-rc.1
2025-07-11 12:55:56 +10:00
9917def0ca
v1.12.2-rc.0
2025-07-03 10:31:22 +10:00
8d1d098e3a
v1.12.1
2025-07-03 10:07:54 +10:00
1a1a30791e
v1.12.0
2025-07-03 10:01:03 +10:00
8695ef766e
v1.12.0-rc.8
2025-06-30 19:47:37 +10:00
7487399123
feat: add more api logs ( #1870 )
...
Adds more detailed API logging using Pino
2025-06-30 19:46:32 +10:00
58d97518c8
v1.12.0-rc.7
2025-06-27 22:17:45 +10:00
85ac65e405
v1.12.0-rc.6
2025-06-27 21:46:16 +10:00
e07a497b69
feat: api logging by pino ( #1865 )
...
experiemental
2025-06-27 21:44:51 +10:00
21dc4eee62
v1.12.0-rc.5
2025-06-27 18:53:45 +10:00
dc2042a1ee
fix: rate limit api endpoints ( #1863 )
...
Rate limit API endpoint
2025-06-27 18:50:22 +10:00
8be7137b59
v1.12.0-rc.4
2025-06-12 10:27:41 +10:00
cad04f26e7
feat: sitemap auto-generation for docs ( #1822 )
2025-06-11 14:09:45 +10:00
22a37409c1
v1.12.0-rc.3
2025-06-10 12:49:37 +10:00
64c6a51e04
v1.12.0-rc.2
2025-06-07 02:25:14 +10:00
60a623fafd
v1.12.0-rc.1
2025-06-07 00:56:40 +10:00
c73d61955b
v1.12.0-rc.0
2025-06-07 00:47:49 +10:00
93aece9644
chore: dependency updates ( #1808 )
2025-05-22 14:30:22 +10:00
44bc769e60
v1.11.1
2025-05-20 22:37:46 +10:00
8540f24de0
v1.11.0
2025-05-19 15:44:10 +10:00
e40c5d9d24
v1.10.3
2025-05-03 09:23:25 +10:00
bf1c1ff9dc
v1.10.2
2025-05-03 08:11:27 +10:00
ac7d24eb12
v1.10.1
2025-05-03 07:39:19 +10:00
8c9dd5e372
v1.10.0
2025-05-02 12:03:08 +10:00
dd2ef3a657
v1.10.0-rc.5
2025-04-17 23:01:43 +10:00
e613e0e347
feat: support embedded authoring for creation ( #1741 )
...
Adds support for creating documents and templates
using our embed components.
Support is super primitive at the moment and is being polished.
2025-04-11 00:20:39 +10:00
da71613c9f
v1.10.0-rc.4
2025-03-31 20:02:22 +11:00
a87af910c7
v1.10.0-rc.2
2025-03-28 01:50:59 +11:00
231f51bd1f
v1.10.0-rc.1
2025-03-22 17:34:33 +11:00
c6743a7cec
v1.10.0-rc.0
2025-03-22 03:23:23 +11:00
8d6bf91d12
fix: persist theme cookie for a much longer time ( #1693 )
2025-03-12 16:09:37 +11:00
422770a8c7
feat: allow fields prefill when generating a document from a template ( #1615 )
...
This change allows API users to pre-fill fields with values by
passing the data in the request body. Example body for V2 API endpoint
`/api/v2-beta/template/use`:
```json
{
"templateId": 1,
"recipients": [
{
"id": 1,
"email": "signer1@mail.com ",
"name": "Signer 1"
},
{
"id": 2,
"email": "signer2@mail.com ",
"name": "Signer 2"
}
],
"prefillValues": [
{
"id": 14,
"fieldMeta": {
"type": "text",
"label": "my label",
"placeholder": "text placeholder test",
"text": "auto-sign value",
"characterLimit": 25,
"textAlign": "right",
"fontSize": 94,
"required": true
}
},
{
"id": 15,
"fieldMeta": {
"type": "radio",
"label": "radio label",
"placeholder": "new radio placeholder",
"required": false,
"readOnly": true,
"values": [
{
"id": 2,
"checked": true,
"value": "radio val 1"
},
{
"id": 3,
"checked": false,
"value": "radio val 2"
}
]
}
},
{
"id": 16,
"fieldMeta": {
"type": "dropdown",
"label": "dropdown label",
"placeholder": "DD placeholder",
"required": false,
"readOnly": false,
"values": [
{
"value": "option 1"
},
{
"value": "option 2"
},
{
"value": "option 3"
}
],
"defaultValue": "option 2"
}
}
],
"distributeDocument": false,
"customDocumentDataId": ""
}
```
2025-03-06 19:45:33 +11:00
ad520bb032
fix: remove oauth from embeds
2025-02-27 14:08:59 +11:00
596d30e2e5
fix: remove lazy pdf loader
2025-02-26 21:48:06 +11:00
7e8955b89c
fix: add posthog error monitor
2025-02-25 15:14:45 +11:00
113ab293bb
chore: make all the docker stuff work
2025-02-14 14:53:01 +11:00
92db4d68db
fix: cleanup env variables
2025-02-13 20:56:44 +11:00
ebc2b00067
fix: add sign up hook
2025-02-13 20:21:23 +11:00
87dcdd44cd
chore: update local seed data ( #1622 )
...
Add multiple example documents, pending documents, and templates for
both admin and example users
2025-02-13 19:50:05 +11:00
c9e8a32471
feat: bulk send templates via csv ( #1578 )
...
Implements a bulk send feature allowing users to upload a CSV file to
create multiple documents from a template. Includes CSV template
generation, background processing, and email notifications.
2025-02-13 18:44:29 +11:00
383b5f78f0
feat: migrate nextjs to rr7
2025-02-13 14:10:38 +11:00
dc36a8182c
v1.9.0-rc.11
2025-01-21 09:49:22 +11:00
058d9dd0ba
v1.9.0-rc.10
2025-01-20 19:54:39 +11:00