This release is a pre-release and may not be stable for production use.
zopyx.surveyjs
SurveyJS integration for Plone: create, publish, validate, store, export, and embed surveys and forms.
Online resources
- Documentation — installation, configuration, usage, endpoints, security, and development reference: docs.privacyforms.studio
- Online demo — try Privacy Forms Studio in a running Plone instance: demo.privacyforms.studio
- Website — product information and services: www.privacyforms.studio
Documentation topics
Development
uv venv --clear
uv pip install -r requirements.txt
.venv/bin/buildout
make test
make docs
See Development for the complete development setup.
License
GPL-2.0-or-later. SurveyJS Creator licensing is documented by SurveyJS and may require a commercial license.
Releasing
The release checklist (version bump, gates, tag, GitHub pre-release, PyPI
trusted publishing) lives in RELEASE.rst. Known gaps that a release notes
entry must mention are collected in docs/limitations.rst.
Contributors
- Andreas Jung, info@zopyx.com
Changelog
1.0b3 (unreleased)
- Add configurable outbound POST endpoint policies under the Forms control
panel's Security fieldset. The default public-endpoint policy blocks private
and special-use destinations; strict allowlist mode accepts exact hostnames
and
*.suffixpatterns only. Redirects are disabled and outbound POSTs use a bounded timeout. - Return HTTP 405 for unsupported methods on the public form JSON and
submission endpoints instead of exposing 500
AttributeErrorresponses. - Fix the ZODB conflict → replay 403 cascade in
@@save-poll(issue #35). Thereceived:auth-token replay marker is written when the token is accepted, before the submission is stored. A ZODBConflictErrormakes Zope abort the attempt and re-run the whole request with the same form data, so the retried attempt found its own marker and rejected the submission withauth_token_replay(403): every conflict surfaced as a client-visible auth failure instead of a clean retry. The marker is now released again when the attempt's transaction aborts (kv.release_key_on_abort()), which keeps the fail-closed "consumed on receipt" behaviour for a committed submission while letting the retry pass its own token check. Tests:test_kv.py::ReleaseKeyOnAbortTests,test_auth_services.py::AuthServiceTests::test_replay_marker_is_released_when_the_attempt_abortsandtest_integration_views.py::SurveyViewIntegrationTests::test_save_poll_releases_the_replay_marker_when_the_attempt_aborts. - Document the fixed retry behaviour in
docs/security.rst(replay protection) anddocs/load-testing.rst(the conflict hotspot is no longer an auth failure, but the conflict rate remains the scaling ceiling of the write path).
1.0b2 (released 2026-09-13)
- Set the package version to
1.0b2. - Add the optional GenericSetup profile
zopyx.surveyjs:demo(profiles/demo/, handlers indemo_profile.py). It seeds the four SurveyJS theme presets (light,dark,light-no-panels,dark-no-panels) and creates a publisheddemo-formsfolder with three complex English example forms, one per scope and each using a different theme: employee onboarding, customer satisfaction and conference registration. Both import steps are idempotent, and a form gets a new version only when its shipped definition changed, so re-applying the profile after an upgrade refreshes the demo content without duplicating anything. - Add the Plone site distribution
surveyjs(distributions.zcmlplusdistributions/surveyjs/). It creates a Classic UI site with this add-on installed and uses the demo profile as its example content, so the themes and thedemo-formsfolder are created when a site is created with example content (setup_content). Documented indocs/distribution.rst. - Add seven diagrams to the documentation (
docs/_static/diagrams/): the component overview and the submission lifecycle, the validation pipeline, the deployment topology, the token lifecycle, the export pipeline and the storage backends. Every raster image links to its interactive HTML artifact (zoom, pan, light/dark themes, guided views, search), the generator specifications ship alongside so the diagrams stay reproducible, and the images are embedded inoverview.rst,actions.rst,validation.rst,storage.rst,security.rst,exports.rstandinstallation.rst. - Fix
browser/ai.py:_to_jsonable()logged from itsexceptbranches through a module logger that was never defined, so a serializer method that raised turned the whole call into aNameErrorinstead of falling through to the next strategy (vars(value)). The logger is defined now, andtests/test_ai.py::AIViewTests::test_to_jsonable_survives_failing_serializer_methodscovers the fallback. - Make the repository pass
ruffcompletely:ruff formatandruff check --fixreformatted 41 files (docstring whitespace, blank lines after the import block, import grouping, comment indentation) without any behaviour change, and the ten findings that survived the automatic fixes were fixed by hand — the missing logger above, an unusedPDFFormNotFoundErrorre-export inbrowser/fillable_pdf.py, and unused locals in the token-store and theme-manager tests, which now assert the behaviour their comments only described.RELEASE.rstrequires a cleanruff check/ruff format --checkrun as part of the release gate and no longer tolerates pre-existing findings.
1.0b1 (released 2026-09-12)
First beta release. The functional changes since the last published version on
PyPI (1.0a4) are described in the 1.0a5–1.0a7 sections below; the
entries here are the release-preparation changes of the beta itself.
- Set the package version to
1.0b1. - Declare the runtime dependencies that previously existed only in this
repository's buildout:
privacyforms.ai(imported by the AI generator, the AI service and the model vocabulary) andprivacyforms.pdf(the fillable-PDF workflow). PDF filling needs PyMuPDF, which is shipped as the optional extrazopyx.surveyjs[pdf]instead of a hard requirement because it is dual-licensed (AGPL-3.0 or a commercial Artifex licence). - Import
privacyforms_ailazily (browser/services/ai.py:get_ai_helper()) instead of at module level inbrowser/ai.py. A deployment without the helper now fails the single AI feature with an actionable message instead of failing while Zope configures the add-on (ZCML resolves.ai.AIView). - Remove unreachable PDF code:
browser/services/pdf.py(no caller at all, itsextract_mode="llm"branch imported the deletedai_generatormodule) andpdf_forms.py(the unwired pdfcpu pipeline, reachable only from the removed module). The supported paths are the AI generator (@@ai-upload) and the fillable-PDF workflow. - Documentation corrections: the fillable-PDF pages no longer claim that
survey data is merged into a PDF template (values come from the fill form,
keyed by raw PDF field names; signature fields are never written), the
todopage is replaced bylimitations.rstdocumenting the known gaps (rate limiting, automatic PDF merge, security items tracked in SECURITY.md, multi-server KV behaviour), the stale test-baseline numbers inSECURITY.mdanddocs/security.rstare refreshed to the measured 475 Plone tests / 115 pytest tests, anddocs/old/carries a README marking its files as historical, non-authoritative notes. - Add
RELEASE.rstwith the release checklist, and use Python 3.14 in the PyPI/TestPyPI publish workflows so the publishing interpreter matches the one the test suite runs on. - Enable the
pdfextra in this repository's buildout (base.cfg) so the documented "Download Filled PDF" workflow actually works in the dev and demo instance; PyMuPDF was previously missing there, so the feature failed with "PyMuPDF is required". PyMuPDF stays an extra because of its dual licence (AGPL-3.0 or commercial). - Remove the pdfcpu binary from the container image and delete the unreachable
pdfcpu CLI wrapper
pdf_form_extract.pytogether with its tests. Withpdf_forms.pygone, nothing used the binary any more; the supported PDF extraction path isprivacyforms.pdf. - Remove the remaining add-on-template leftovers:
constraints.txt(it only contained-c constraints_plone52.txt),.travis.ymland.gitlab-ci.yml(both pinned topython:2.7). GitHub Actions is the CI. - Ignore the local buildout variant
test-6.2.x.cfgand the localuv.lockin.gitignore(requirements.txtpins the buildout toolchain). SECURITY.mdnow itemises the unfixed security findings with location, impact and recommendation — SSRF viapost_endpoint_url, missing rate limiting, CSV/XLSX formula injection, unaudited exports, token-store atomicity, key length/rotation, missing token/session binding, container hardening, dependency pinning, bot controls, output encoding and CSRF — instead of naming them in prose only.- Add
scripts/invalidate_tokens.pyto invalidate the tokens of a leaked CSV export across all surveys (dry run by default,--applyto write).
1.0a7 (unreleased)
- Update the vendored SurveyJS browser bundles, translations, and server-side validator to SurveyJS 3.0.4.
- Build the validator without Deno's 24-hour minimum-dependency-age window, so
a deliberately pinned
survey-corerelease compiles immediately instead of failing the CI validator job and install-time builds for a day after each upstream release. - Remove a timing race from the KV store TTL expiry test that failed intermittently on loaded CI runners.
- Correct the package metadata: the PyPI project URLs now point at the actual
repository (
zopyx/zopyx.surveyjs) instead of the never-existingcollective/zopyx.surveyjs, and they document where the documentation and the changelog live. The classifiers now list only the supported platform (Plone 6.2, replacing the obsolete Plone 5.2 entry) and the Python versions that CI actually exercises (3.12, 3.13, 3.14). - Add a CI job that installs the built distribution and runs the Plone-free test subset (converters, schema, validator wrapper) on Python 3.12, 3.13 and 3.14, so the advertised Python support is verified rather than assumed.
- Remove the legacy Plone 5.2 buildout configuration (
test_plone52.cfg) and thetox.iniinherited from the add-on template, which still targeted Python 2.7/3.7 and Plone 4.3–5.2 and referred to a constraints file that no longer exists. - Exclude local-only documentation from the source distribution:
docs/olddescribes removed features,docs/html/docs/_buildare artifacts of a localmake docsrun. - Tag pre-releases (
a/b/rc) are published as GitHub pre-releases instead of full releases, so a beta is never offered as the latest release. - Ignore generated security-review artifacts and local scratch files
(
tokens.csv, the vulnerability report snapshots,tmp/, local agent/tool directories) so they cannot be committed accidentally.
1.0a6 (unreleased)
- Add per-survey SurveyJS theme selection with default theme support.
- Add the Theme Manager configlet, theme creation/upload actions, and improved upload and creation button styling with icons.
- Improve the theme editor toolbar with semantic action colors and a restore version action icon.
- Apply panelless SurveyJS themes correctly in the editor preview.
- Show version numbers in the theme history and restore-version dialog.
- Update the vendored SurveyJS browser bundles, translations, and server-side validator to SurveyJS 3.0.2.
- Fix CI buildout action paths and use Python 3.14 for the Plone environment.
1.0a5 (unreleased)
- Version bump to 1.0a5 to trigger a fresh CI run of all workflows.
1.0a4 (released 2026-08-11)
- Fix: the generated demo site (
scripts/init_plone.py) showed up without any theme.addPloneSitewas called with an invaliddistributionkeyword (the parameter isdistribution_namesince Plone 6.1), so the classic distribution never ran and the Plone Classic theme (Barceloneta) was never applied. Usedistribution_nameand enable thebarcelonetatheme instead ofprivacyforms.theme.
1.0a3 (released 2026-08-11)
- Nothing changed yet.
1.0a2 (released 2026-08-11)
- Nothing changed yet.
1.0a1 (unreleased)
- Initial release. [zopyx]
Release files for zopyx.surveyjs 1.0b3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zopyx_surveyjs-1.0b3.tar.gz | 15.2 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| zopyx_surveyjs-1.0b3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 24.7 MB
Release files / zopyx_surveyjs-1.0b3.tar.gz
| Download URL | zopyx_surveyjs-1.0b3.tar.gz |
|---|---|
| Size | 15.2 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f6248adf3582f087040f690dd45e5620be1e63baebdd4337d24b2989e912ed80
|
|
BLAKE2b-256 checksum How to use checksums |
1b219827e19c72ebc026ab11a3efcf57fc3f0a8e470618c57ca47fbf76342b32
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.
Transparency logRelease files / zopyx_surveyjs-1.0b3-py3-none-any.whl
| Download URL | zopyx_surveyjs-1.0b3-py3-none-any.whl |
|---|---|
| Size | 9.6 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
48ff8aac75f7a030bb7cd9f540122efe846b422cab44783ef070b759a1734e1c
|
|
BLAKE2b-256 checksum How to use checksums |
93316e2f8713e8675d80ce8f81045999258b120718280ef0e8ddd2004ad39f3a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.
Transparency log