place names and roles of the people who contribute to this package
in this file, one to a line, like so:
Timo Stollenwerk, Original Author
Thomas Buchberger
Lukas Graf
Víctor Fernández de Alba
Paul Roeland
Mikel Larreategi
Eric Brehault
Andreas Zeidler
Carsten Senger
Tom Gross
Roel Bruggink
Yann Fouillat, alias Gagaro
Sune Brøndum Wøller
Philippe Gross
Andrea Cecchi
Luca Bellenghi
Giacomo Monari
Alin Voinea
Rodrigo Ferreira de Souza
Changelog
7.8.3rc1 (2024-08-14)
EEA RELEASE: Fix nextprev with versions exportimport when object moved
[avoinea] (#1679)
7.8.2 (2023-04-19)
Bug fixes:
Fixed encoding issue on Python 3 for some mail servers.
This could result in missing characters in an email body.
[maurits] (#3754)
Internal:
Tests: pin plone.schema to 1.4.0 in Plone 4.3.
This is the latest version compatible with Python 2.
On Plone 5.0 and higher this package is already pinned.
[maurits] (#140)
CI: run the tests on Ubuntu 20.04, instead of latest.
Python 2.7 and 3.6 are not available on latest.
[maurits] (#2004)
7.8.1 (2022-10-28)
Bug fixes:
Document needed version pins for Plone 4.3. [erral] (#1150)
7.8.0 (2022-05-14)
New features:
Make masking specific validation errors configurable in DX DeserializeFromJson. [fredvd] (#1211)
Bug fixes:
Prevent to create an empty AT content.
[gbastien] (#1386)
7.7.1 (2022-04-27)
Bug fixes:
Fix serializing revisions of Archetypes content. [pbauer] (#1335)
7.7.0 (2022-01-07)
Breaking changes:
Drop support for Plone 5.0 [wesleybl] (#1273)
Internal:
Be permissive when testing the schema of the querystring endpoint [reebalazs] (#1307)
7.6.0 (2022-01-05)
New features:
Return non-batched vocabularies given a query param b_size=-1
[sneridagh] (#1264)
Internal:
Format zcml files with collective.zpretty. Add zpretty Github workflow. @tiberiuichim (#1120)
Fix tests for Plone 4.3 and 5.2 with Python 2.7 @ichim-david (#1243)
7.5.0 (2021-10-12)
New features:
Add support for volto-slate blocks: resolveuid for links, transformer support @tiberiuichim (#1125)
Bug fixes:
Add missing backend logout actions for the @logout endpoint (delete cookie, etc)
[sneridagh] (#1239)
7.4.1 (2021-09-24)
Bug fixes:
Fix testing of a checkout instead of a released package.
Normalize the http-examples.
[maurits] (#1213)
7.4.0 (2021-08-31)
New features:
Refactor @lock endpoint based on CRUD operations [@avoinea] (#1181)
7.3.8 (2021-07-17)
Bug fixes:
Fix navigation endpoint sort by adding default sort_on='getObjPositionInParent' to the query. @valipod @tiberiuichim (#1107)
Fix startup on Plone 4 without plone.app.contenttypes.
[maurits] (#1166)
7.3.7 (2021-05-26)
Re-release 7.3.6 since it was a brown bag release.
7.3.6 (unreleased)
Bug fixes:
Fix error in Plone 4.3 that installed the blocks profile when installing the package, instead of the default profile. Fix #895 <https://github.com/plone/plone.restapi/issues/895> [wesleybl] (#895)
Fixed a deprecation warning when importing UnrestrictedUser from AccessControl (#1129)
7.3.5 (2021-05-03)
Bug fixes:
Fix @workflow when executing user has no permissions to access review_history in target state.
[deiferni] (#999)
7.3.4 (2021-04-30)
Bug fixes:
Fix @history when full history is empty.
[deiferni] (#1113)
7.3.3 (2021-04-29)
Bug fixes:
Fix @querystring-search endpoint with correct sort_order
@mamico (#1108)
7.3.2 (2021-04-07)
Bug fixes:
Fix @search endpoint with use_site_search_settings flag, for VHM PhysicalRoot scenarios
@tiberiuichim (#1105)
7.3.1 (2021-03-27)
Bug fixes:
Fixes if old p.schema is used
[sneridagh] (#1103)
7.3.0 (2021-03-25)
New features:
Adjust JSONField adapter to include widget name to use in serialization
[sneridagh] (#1089)
Bug fixes:
Fixes build was using the released version
[sneridagh] (#1090)
7.2.1 (2021-03-22)
Bug fixes:
@contextnavigation endpoint does not honor nav_title index
[sneridagh] (#1092)
7.2.0 (2021-03-18)
New features:
Allow block transforms to run in "subblocks", discovered as the blocks field (or alternatively, data.blocks) in a block value. (#1085)
7.1.0 (2021-03-17)
New features:
Allow passing use_site_search_settings=1 in the @search endpoint request, to follow Plone's ISearchSchema settings. (#1081)
Bug fixes:
Do not log "No such index" warnings for knonw indexes like metadata_fields @cekk (#987)
Fix type hint example in searching documentation. [jensens] (#1008)
Fixed compatibility with Zope 4.5.2 by making sure Location header is string.
On Python 2 it could be unicode for the users and groups end points.
Fixes issue 1019. [maurits] (#1019)
Check for Plone 5 in content-adding endpoint if plone.app.multilingual is installed [erral] (#1029)
Do not test if there is a meta_type index. It is unused ballast. [jensens] (#2024)
Fix tests with Products.MailHost 4.10. [maurits] (#3178)
7.0.0a5 (2020-08-21)
New features:
Improved blocks transformers: now we can handle generic transformers
[cekk]
Add generic block transformer for handle resolveuid in all blocks that have a url or href field
[cekk]
Add "smart fields" concept: if block has a searchableText field, this will be indexed in Plone
[cekk, tiberiuichim] (#952)
7.0.0a4 (2020-05-15)
New features:
Replace internal links to files in blocks with a download url if the user has no edit permissions [csenger] (#930)
7.0.0a3 (2020-05-13)
New features:
In block text indexing, query for IBlockSearchableText named adapters to allow
extraction from any block type. This avoids hardcoding for the 'text' block type.
[tiberiuichim] (#917)
7.0.0a2 (2020-05-12)
New features:
Added IBlockFieldDeserializationTransformer and its counterpart,
IBlockFieldSerializationTransformer concepts, use subscribers to
convert/adjust value of blocks on serialization/deserialization, this enables
an extensible mechanism to transform block values when saving content.
Added an html block deserializer transformer, it will clean the
content of the "html" block according to portal_transform x-html-safe settings.
Added an image block deserializer transformer, it will use resolveuid mechanism
to transform the url field to a UID of content.
Move the resolveuid code from the dexterity field deserializer to a dedicated
block converter adapter, using the above mechanism.
[tiberiuichim] (#915)
7.0.0a1 (2020-05-11)
New features:
Resolve links in blocks to UIDs during deserialization and back to paths during
serialization.
[buchi,timo,cekk] (#808)
6.15.1 (2021-02-20)
Bug fixes:
Fixed compatibility with Zope 4.5.2 by making sure Location header is string.
On Python 2 it could be unicode for the users and groups end points.
Fixes issue 1019.
[maurits] (#1019)
6.15.0 (2020-10-08)
New features:
Add sort feature to resort all folder items
[petschki] (#812)
Remove unneeded stringtype checks
[erral] (#875)
Bug fixes:
Fixed deprecation warnings for zope.site.hooks, CMFPlone.interfaces.ILanguageSchema
and plone.dexterity.utils.splitSchemaName.
[maurits] (#975)
Fix tests with Products.MailHost 4.10.
[maurits] (#3178)
6.14.0 (2020-08-28)
New features:
Add @types endpoint to be able to add/edit/delete CT schema [Petchesi-Iulian, avoinea] (#951)
6.13.8 (2020-08-20)
Bug fixes:
Removed useless management of metadata_fields in SearchHandler/LazyCatalogResultSerializer since it is handled in DefaultJSONSummarySerializer. [gbastien] (#970)
6.13.7 (2020-07-16)
Bug fixes:
Add a Decimal() converter
[fulv] (#963)
6.13.6 (2020-07-09)
Bug fixes:
Fix Plone 5.2.x deprecation message 'ILanguageSchema is deprecated'.
[timo] (#975)
Do not hardcode the port in tests because it may depend on environment variables [ale-rt] (#978)
6.13.5 (2020-06-29)
Bug fixes:
Remove the use of plone.api in upgrade code
[erral] (#917)
6.13.4 (2020-06-18)
Bug fixes:
Re-add test folder to the release (ignore the tests/images folder though). [timo] (#968)
6.13.3 (2020-06-17)
Bug fixes:
Take the include_items parameter into account in SerializeCollectionToJson. [gbastien] (#957)
6.13.2 (2020-06-15)
Bug fixes:
Include plone.app.controlpanel permissions.zcml in database service to avoid ConfigurationExecutionError regarding 'plone.app.controlpanel.Overview' permission while starting Plone 4.3.x [gbastien] (#956)
6.13.1 (2020-06-03)
Bug fixes:
PATCH (editing) in @user endpoint now is able to remove existing values using null
[sneridagh] (#946)
6.13.0 (2020-05-28)
New features:
Expose author_image in comments endpoint [timo] (#948)
6.12.0 (2020-05-11)
New features:
Add database endpoint [timo] (#941)
6.11.0 (2020-05-08)
New features:
Add type-schema adapters for: Email, URI and Password
[avoinea] (#926)
6.10.0 (2020-05-07)
New features:
Add system endpoint. [timo] (#736)
6.9.1 (2020-05-07)
Bug fixes:
Fixed @translations endpoint to only retrieve the translations that the current user
can really access using get_restricted_translations instead. This fixes the use
case where an user with no permissions on a translation accessing the endpoint returned
a 401.
[sneridagh] (#937)
6.9.0 (2020-05-06)
New features:
Add endpoints for managing addons. [esteele] (#733)
6.8.1 (2020-05-04)
Bug fixes:
Treat next/prev items for unordered folders.
[rodfersou] (#928)
6.8.0 (2020-04-23)
New features:
Managing Dexterity Type Creation (CRUD) via plone.restapi
[avoinea] (#534)
6.7.0 (2020-04-21)
New features:
Make @querystring-search endpoint context aware
[sneridagh] (#911)
Bug fixes:
Fix sphinxbuilder with Python 3.8
[avoinea] (#905)
6.6.1 (2020-04-17)
Bug fixes:
call unescape method on received html for richtext before save it in Plone.
[cekk] (#913)
Small fix in IBlocks test, addedd a missing assert call
[tiberiuichim] (#914)
6.6.0 (2020-04-07)
New features:
Add next_item and previous_item attributes to allow to navigate to the previous and next sibling in the container the document is located.
[rodfersou] (#900)
6.5.2 (2020-04-01)
Bug fixes:
Fix for the use case while updating user properties in the @user endpoint, and the
portrait is already previously set but the request includes the (previously) serialized
value as a string because the user are not updating it
[sneridagh] (#896)
6.5.1 (2020-04-01)
Bug fixes:
Fix deleting user portrait.
[buchi] (#751)
6.5.0 (2020-03-30)
New features:
Link translation on content creation feature and new @translation-locator endpoint
[sneridagh] (#887)
6.4.1 (2020-03-25)
Bug fixes:
Make discussion endpoint return content that is deserialized via portal transforms (e.g. 'text/x-web-intelligent') [timo] (#889)
6.4.0 (2020-03-23)
New features:
Add targetUrl to the dxcontent serializer for primary file fields to be able to download a file directly.
[csenger] (#886)
Bug fixes:
Fixed package install error with Python 3.6 without locale.
See coredev issue 642.
[maurits] (#642)
plone.app.discussion extends the review workflow for moderation of comments. This change takes the additional workflow states into account.
[ksuess] (#842)
6.3.0 (2020-03-03)
New features:
Allow using object paths and UIDs to link translations
[erral] (#645)
Bug fixes:
Add a catalog serializer guard when returning fullobjects in case the object doesn't
exist anymore because for some reason it failed to uncatalog itself.
[sneridagh] (#877)
Use longer password in tests. [maurits] (#3044)
6.2.4 (2020-02-20)
Bug fixes:
fullobjects qs is missing in response batch links in batching operations
[sneridagh] (#868)
6.2.3 (2020-02-19)
Bug fixes:
Return proper None instead of string "None" on the choice schema serializer [sneridagh] (#863)
6.2.2 (2020-01-24)
Bug fixes:
Degrade gracefully when a term set in a content field does not exists in the assigned vocabulary [sneridagh] (#856)
6.2.1 (2020-01-22)
Bug fixes:
Sharing POST: Limit roles to ones the user is allowed to delegate.
[lgraf] (#857)
6.2.0 (2020-01-10)
New features:
Make ?fullobjects work in AT Collections to get the full JSON representation of the items
[erral] (#698)
Make ?fullobjects work in Dexterity Collections to get the full JSON representation of the items
[erral] (#848)
Bug fixes:
Fix WorkflowException for related items with no review_state.
[arsenico13] (#376)
6.1.0 (2020-01-05)
New features:
Add SearchableText indexing for text in blocks
[luca-bellenghi] (#844)
6.0.0 (2019-12-22)
Breaking changes:
Remove IAPIRequest marker interface from plone.restapi. The correct interface should be imported from plone.rest.interfaces instead. If anybody was using this marker Interface, it didn't do anything. (#819)
Bug fixes:
Prevent converting bytestring ids to unicode ids when reordering (see upgrade guide for potential migration).
[deiferni] (#827)
5.1.0 (2019-12-07)
New features:
Add Python 3.8 support @timo (#829)
5.0.3 (2019-12-06)
Bug fixes:
Change to use the short name for the Blocks behavior instead of using the interface one. It fixes #838.
[sneridagh] (#838)
5.0.2 (2019-11-06)
Bug fixes:
Fix filtering vocabs and sources by title with non-ASCII characters.
[lgraf] (#825)
5.0.1 (2019-11-05)
Bug fixes:
Fix serialization of vocabulary items for fields that need hashable items (e.g. sets).
[buchi] (#788)
5.0.0 (2019-10-31)
Breaking changes:
Rename tiles behavior and fields to blocks, migration step.
[timo, sneridagh] (#821)
Bug fixes:
Fixed startup error when Archetypes is there, but plone.app.blob or plone.app.collection not.
[maurits] (#690)
4.6.0 (2019-10-06)
New features:
Add @sources and @querysources endpoints, and link to them from JSON schema in @types response.
[lgraf] (#790)
Bug fixes:
Explicitly load zcml of dependencies, instead of using includeDependencies
[maurits] (#2952)
4.5.1 (2019-09-23)
Bug fixes:
Fire ModifiedEvent when field is set to null in a PATCH request.
[phgross] (#802)
Testing: Drop freezegun and instead selectively patch some timestamp accessors.
[lgraf] (#803)
4.5.0 (2019-09-12)
New features:
Add @querystring-search endpoint that returns the results of a search using a p.a.querystring query.
[sneridagh] (#789)
Use Plone 5.2 and Python 3 as default to generate documentation. [timo] (#800)
Bug fixes:
Make group serializer results predictable by returning sorted item results. [timo] (#798)
4.4.0 (2019-08-30)
New features:
Add @querystring endpoint that dumps p.a.querystring config.
[lgraf] (#754)
Bug fixes:
Fix typo in the tiles_layout field title name.
[sneridagh] (#785)
4.3.1 (2019-07-10)
Bug fixes:
Fix @sharing POST when called on the plone site root
[csenger] (#780)
4.3.0 (2019-06-30)
New features:
Support retrieval of additional metadata fields in summaries in the same way as
in search results.
[buchi] (#681)
4.2.0 (2019-06-29)
New features:
Make @types endpoint expandable.
[lgraf] (#766)
Factor out permission checks in @users endpoint
to make it more easily customizable.
[lgraf] (#771)
Bug fixes:
Gracefully handle corrupt images when serializing scales.
[lgraf] (#729)
Docs: Make sure application/json+schema examples also get syntax highlighted.
[lgraf] (#764)
Return empty response for status 204 (No Content).
[buchi] (#775)
Return status 400 if a referenced object can not be resolved during deserialization.
[lgraf] (#777)
4.1.4 (2019-06-21)
Bug fixes:
Set effective_date and reindex obj on workflow transitions. [wkbkhard] (#760)
4.1.3 (2019-06-21)
Bug fixes:
Improve documentation for how to set relations by adding some examples.
[buchi] (#732)
Return an error message if a referenced object can not be resolved.
[buchi] (#738)
4.1.2 (2019-06-15)
Bug fixes:
@types endpoint: Fix support for context aware default factories.
[lgraf] (#748)
4.1.1 (2019-06-13)
Bug fixes:
Handle None as a vocabulary term title in the vocabulary serializer.
[Rotonen] (#742)
Handle a term not having a title attribute in the vocabulary serializer.
[Rotonen] (#742)
Handle a term having a non-ASCII str title attribute in the vocabulary
serializer.
[Rotonen] (#743)
Fix time freezing in Plone 5.1 tests.
[lgraf] (#745)
4.1.0 (2019-05-25)
New features:
Use Black on the code base. [timo] (#693)
4.0.0 (2019-05-09)
Breaking changes:
@vocabularies service: No longer returns an @id for terms. Results are batched, and terms are now listed as items instead of terms to match other batched responses. Batch size is 25 by default but can be overridden using the b_size parameter.
[davisagli]
@types service: Choice fields using named vocabularies are now serialized with a vocabulary property giving the URL of the @vocabularies endpoint for the vocabulary instead of including choices, enum and enumNames inline. The subjects field is now serialized as an array of string items using the plone.app.vocabularies.Keywords vocabulary.
[davisagli]
Serialize widget parameters into a widgetOptions object instead of adding them to the top level of the schema property.
[davisagli]
Add title and token filter to the vocabularies endpoint.
[davisagli, sneridagh, timo] (#535)
Use tokens for serialization/deserialization of vocabulary terms.
[buchi] (#691)
Return the token and the title of vocabulary terms in serialization.
See upgrade guide for more information.
[buchi] (#726)
New Features:
@vocabularies service: Use title parameter to filter terms by title
and token for getting the title of a term given a token.
(case-insensitive).
[davisagli, sneridagh, timo]
Bug fixes:
Standardize errors data structure of email-notification endpoint.
[cekk] (#708)
When renewing an expired or invalid authentication token with @login-renew fail with a 401 error instead of returning a new authentication token.
[thet] (#721)
Use interface name in the tiles profile instead of the shorthand behavior name. This fixes #724.
[sneridagh] (#724)
Avoid calculating batch links for catalog results twice.
[davisagli]
3.9.0 (2019-04-18)
New features:
Add full support for fullobjects support for AT content types.
[sneridagh] (#698)
3.8.1 (2019-03-21)
Bug fixes:
Fixed Python 3 incompatiblity with workflow service (#676)
[ajung]
Hide performance, testing, and tiles profile. (#700)
[timo]
3.8.0 (2019-03-21)
New features:
Add support for add/update user portraits (@user endpoint)
[sneridagh] (#701)
3.7.5 (2019-03-14)
Bug fixes:
Do not depend on the deprecated plone.app.controlpanel package.
[sneridagh] (#696)
3.7.4 (2019-03-13)
Bug fixes:
Fix a problem on ZCML loading depending on how the policy package is named,
related to the load of permissions in control panels and multilingual.
[sneridagh] (#526)
3.7.3 (2019-03-08)
Bug fixes:
Use environment-markers instead of python-logic to specify dependencies for py2.
[pbauer] (#688)
Do not fail on serializing types with fields having non-parametrized widgets.
Fixes issue 664.
[elioschmutz]
3.5.0 (2018-11-06)
New Features:
Add Python 3 support.
[pbauer, davisagli]
3.4.5 (2018-09-14)
Bugfixes:
Avoid AttributeError on add-on installation (fixes #465.
[lukasgraf, hvelarde]
Make search work with a path query containing a list of paths in a virtual hosting setting.
[sunew]
3.4.4 (2018-08-31)
Bugfixes:
Generalize the last bugfix solution for searching the userid on password
reset requests, matching it with Plone's one. This covers all the request
use cases.
[sneridagh]
3.4.3 (2018-08-30)
Bugfixes:
Add "Use UUID as user ID" support for password resets
[sneridagh]
3.4.2 (2018-08-27)
Bugfixes:
Add missing "Use UUID as user ID" support to POST @users endpoint on user creation.
Also improve the userid/username chooser by using the same process as Plone does.
This fixes: https://github.com/plone/plone.restapi/issues/586
[sneridagh]
3.4.1 (2018-07-22)
Bugfixes:
Make sure the default profile is installed on tiles profile installation.
[timo]
3.4.0 (2018-07-21)
New Features:
Add tiles profile.
[timo]
3.3.0 (2018-07-20)
New Features:
Return member fields based on user schema in @users endpoint instead of a
fixed list of member properties.
[buchi]
3.2.2 (2018-07-19)
Bugfixes:
Do not include HTTP examples using data_files anymore, but move them below
src/plone/restapi instead and use package_data to include them.
[lgraf]
Rename Dexterity content before adding it to a container.
[buchi]
Avoid hard dependency on Archetypes introduced in 3.0.0.
This fixes issue 570.
[buchi]
Make setup.py require plone.behavior >= 1.1. This fixes #575.
[timo]
Fixes test_search to work with bug fixed plone.indexer.
Now DXTestDocument explicit got an attribute exclude_from_nav.
This fixes issue 579.
Refers to Products.CMFPlone Issue 2469
[jensens]
3.2.1 (2018-06-28)
Bugfixes:
Require plone.schema >= 1.2.0 in setup.py for new tiles endpoint.
[timo]
3.2.0 (2018-06-28)
New Features:
Add tiles endpoint for getting all available content tiles and its JSONSchema.
[sneridagh]
Add a tiles behavior to support the new tiles implementation for plone.restapi.
[sneridagh]
Make sure to include HTTP examples in installed egg, so test_documentation
tests also work against a installed release of plone.restapi.
[lgraf]
3.1.0 (2018-06-27)
New Features:
Plone 5.2 compatibility.
[sunew, davisagli, timo]
3.0.0 (2018-06-26)
Breaking Changes:
Fix object creation events. Before this fix, creation events were fired on
empty not yet deserialized objects. Also a modified event was fired after
deserializing e newly created object.
Custom content deserializers now must handle the create keyword argument,
which determines if deserialization is performed during object creation or
while updating an object.
[buchi]
Include translated role titles in @sharing GET.
[lgraf]
Image URLs are now created using the cache optimized way. Fixes #494.
[erral]
2.2.1 (2018-06-25)
Bugfixes:
Fix ReST on PyPi.
[timo]
2.2.0 (2018-06-25)
New Features:
Document the use of the Accept-Language HTTP header.
[erral]
Translate FTI titles on @types endpoint. Fixes #337.
[erral]
Translate action name, workflow state and transition names in @history endpoint.
[erral]
Enhance @workflow endpoint to support applying transitions to all contained
items and to set effective and expiration dates.
[buchi]
Bugfixes:
Make sure DX DefaultFieldDeserializer validates field values.
[lgraf]
Reindex AT content on PATCH. This fixes issue 531.
[buchi]
Fix change password on Plone 5.2
[sunew]
Plone 5.2 compatible tests.
[sunew]
2.1.0 (2018-06-23)
New Features:
Include translated role title in @roles GET.
[lgraf]
2.0.1 (2018-06-22)
Bugfixes:
Hide upgrades from the add-ons control panel.
Fixes issue 532.
[maurits]
2.0.0 (2018-04-27)
Breaking Changes:
Convert all datetime, DateTime and time instances to UTC before serializing.
[thet]
Use python-dateutil instead of DateTime to parse date strings when de-serializing.
[thet]
Make @translations endpoint expandable
[erral]
Rename the results attribute in @translations endpoint to be 'items'
[erral]
Remove 'language' attribute in @translations endpoint from the
top-level response entry
[erral]
New Features:
Expose the tagged values for widgets in the @types endpoint.
[jaroel]
Render subject vocabulary as items for subjects field.
[jaroel]
New permission for accessing user information in the GET @user endpoint
plone.restapi: Access Plone user information mapped by default to Manager
role (as it was before).
[sneridagh]
Bugfixes:
Add VHM support to @search
[csenger]
1.6.0 (2018-04-17)
New Features:
Add expand.navigation.depth parameter to the @navigation endpoint.
[fulv, sneridagh]
1.5.0 (2018-04-03)
New Features:
Allow users to update their own properties and password.
[sneridagh]
1.4.1 (2018-03-22)
Bugfixes:
Fix serialization of Discussion Item and Collection content types when
called with fullobjects parameter.
[sneridagh]
1.4.0 (2018-03-19)
New Features:
Add expandable @actions endpoint to retrieve portal_actions.
[csenger,timo,sneridagh]
1.3.1 (2018-03-14)
Bugfixes:
Support null in content PATCH requests to delete a field value
(Dexterity only). This fixes #187.
[csenger]
1.3.0 (2018-03-05)
New Features:
Observe the allow_discussion allowance (global, fti, object) on object
serialization.
[sneridagh]
Add '@email-send' endpoint to allow authorized users to send emails to
arbitrary addresses (Plone 5 only).
[sneridagh]
1.2.0 (2018-02-28)
New Features:
Allow users to get their own user information.
[erral]
Bugfixes:
Mark uninstall profile as non-installable.
[hvelarde]
Fix the use of fullobjects in Archetypes based sites @search
[erral]
Fix workflow translations with unicode characters.
[Gagaro]
Fix workflow encoding in transition endpoint.
[Gagaro]
1.1.0 (2018-01-24)
New Features:
Add '@email-notification' endpoint to contact the site owner via email.
(Plone 5 only)
[sneridagh]
Bugfixes:
Remove warning about alpha version from docs.
[timo]
1.0.0 (2018-01-17)
Bugfixes:
Remove deprecated getSiteEncoding import.
[timo]
Build documentation on Plone 5.0.x (before: Plone 4.3.x).
[timo]
1.0b1 (2018-01-05)
Breaking Changes:
Rename 'url' attribute on navigation / breadcrumb to '@id'.
[timo]
New Features:
Allow client to ask for the full representation of an object after creation
by setting the 'Prefer' header on a PATCH request.
[Gagaro]
Support deserialization of a relationChoice field using the contents of the
serialization (enhanced by the serializer) output.
[sneridagh]
Allow properties when adding a user.
This allows setting the fullname by anonymous users.
[jaroel]
Add support for IContextSourceBinder vocabularies on JSON schema Choice
fields adapters.
[sneridagh]
Add upgrade guide.
[timo]
Bugfixes:
Fix issue where POST or PATCH a named file with a download link would
always return self.context.image, not the actual file.
[jaroel]
Fix DateTimeDeserializer when posting None for a non-required field.
[jaroel]
Fixed 'required' for DateTime fields.
[jaroel]
Batching: Preserve list-like query string params when canonicalizing URLs.
[lgraf]
Fixed NamedFieldDeserializer to take a null to remove files/images.
[jaroel]
Fixed NamedFieldDeserializer to validate required fields.
[jaroel]
Prevent a fatal error when we get @workflow without permission to get
review_history worfklow variable.
[thomasdesvenain]
Make user registration work as default Plone behavior by adding the Member
role to the user.
[sneridagh]
1.0a25 (2017-11-23)
Breaking Changes:
Remove @components navigation and breadcrumbs. Use top level @navigation and
@breadcrumb endpoints instead.
[timo]
Remove "sharing" attributes from GET response.
[timo,jaroel]
Convert richtext using .output_relative_to. Direct conversion from RichText
if no longer supported as we always need a context for the ITransformer.
[jaroel]
New Features:
Add fullobjects parameter to content GET request.
[timo]
Include descriptions of modified fields in object-modified event.
[buchi]
Add uninstall profile
[davilima6]
Add include_items option to SerializeFolderToJson.
[Gagaro]
Bugfixes:
Fix error messages for password reset (wrong user and wrong password).
[csenger]
Fix #440, URL and @id wrong in second level get contents call for folderish
items.
[sneridagh]
Fix #441, GET in a folderish content with 'fullobjects' is
including all items recursively.
[sneridagh]
Fix #443, Ensure the userid returned by authenticateCredentials is a byte string and not unicode.
[Gagaro]
1.0a24 (2017-11-13)
New Features:
Add 'is_editable' and 'is_deletable' to the serialization of comments
objects. Also refactored the comments endpoint to DRY.
[sneridagh]
Improve is_folderish property to include Plone site and AT content types
[sneridagh]
Bugfixes:
Cover complete use cases of file handling in a content type. This includes
removal of a image/file and being able to feed the PATCH endpoint with the
response of a GET operation the image/file fields without deleting the
existing value.
[sneridagh]
Change RichText field value to use 'output' instead of 'raw' to fix inline
paths. This fixes #302.
[erral]
New Features:
Automatically publish docker images on hub.docker.com.
[timo]
Bugfixes:
Docs: Fix batching example request/response.
[lgraf]
1.0a16 (2017-05-23)
New Features:
Add @comments endpoint.
[jaroel,timo,pjoshi]
Add @roles endpoint to list defined global roles.
[jaroel]
Add JSON schema to @registry listing.
[jaroel]
Allow to manipulate the group membership in the @groups endpoint.
[jaroel]
List and mutate global roles assigned to a user in the @users endpoint.
[jaroel]
Bugfixes:
Bind schema field to context to handle context vocabularies. #389
[csenger]
The inherit flag was the wrong way around.
Blocked inherit showed up as non-blocked.
[jaroel]
1.0a15 (2017-05-15)
New Features:
Add @translations endpoint
[erral]
Reorder children in a item using the content endpoint.
[jaroel]
Add batched listing of registry entries to @registry endpoint.
[jaroel]
1.0a14 (2017-05-02)
New Features:
Add @history endpoint.
[jaroel]
Bugfixes:
Fix the @move endpoint fails to return 403 when the user don't have proper
delete permissions over the parent folder.
[sneridagh]
1.0a13 (2017-04-18)
New Features:
Add support for a 'search' parameter to @sharing. This returns additional
principals in 'entries', also flagging the acquired and inherited fields.
[jaroel]
Add support for setting/modifying 'layout' on DX and AT content endpoints.
[jaroel]
Add support for getting the defined layouts on the root types endpoint.
[jaroel]
Bugfixes:
Add the title to the workflow history in the @workflow endpoint.
This fixes #279.
[sneridagh]
Don't fetch unnecessary PasswordResetTool in Plone 5.1
[tomgross]
1.0a12 (2017-04-03)
Bugfixes:
Handle special case when user @move content that cannot delete returning
proper 403
[sneridagh]
1.0a11 (2017-03-24)
Bugfixes:
Remove zope.intid dependency from copy/move endpoint. Remove plone.api
dependency from principals endpoint. Make
ChoiceslessRelationListSchemaProvider available only if z3c.relationfield
is installed. This fixes https://github.com/plone/plone.restapi/issues/288
[erral]
Remove unittest2 imports from tests.
[timo]
Add Products.PasswortResetTool to dependencies. This dependency is gone in
Plone 5.1.
[timo]
Make import of LocalrolesModifiedEvent conditional, so plone.restapi
doesn't prevent Plone 4.3 deployments < 4.3.4 from booting.
[lgraf]
Add support for named IJsonSchemaProvider adapter to target a single
field in a schema. This allows us to prevent rendering all choices in
relatedItems. See https://github.com/plone/plone.restapi/issues/199.
[jaroel]
Add review_state to the folderish summary serializer.
[sneridagh]
Add @principals endpoint. It searches for principals and returns a list of
users and groups that matches the query. This is aimed to be used in the
sharing UI widget or other user/groups search widgets.
[sneridagh]
Return correct @id for folderish objects created via POST.
[lgraf]
Fix timezone-related failures when running tests through coverage.
[witsch]
@search endpoint: Also prefill path query dict with context path.
This will allow users to supply an argument like path.depth=1, and still
have path.query be prefilled server-side to the context's path.
[lgraf]
Overhaul JSON schema generation for @types endpoint. It now returns
fields in correct order and in their appropriate fieldsets.
[lgraf]
Add missing id to the Plone site serialization, related to issue #186.
[sneridagh]
Add missing adapter for IBytes on JSONFieldSchema generator. This fixes the
broken /@types/Image and /@types/File endpoints.
[sneridagh]
Fix addable types for member users and roles assigned locally on @types
endpoint.
[sneridagh]
1.0a9 (2017-03-03)
New Features:
Make date and datetime fields provide a 'widget' attribute.
[timo]
Add documentation for types endpoint schema.
[timo]
Add basic groups CRUD operations in @groups endpoints
[sneridagh]
Make POST request return the serialized object.
[timo]
Include 'id' attribute in responses.
[timo]
1.0a3 (2016-09-27)
New Features:
Add @users endpoint.
[timo]
Bugfixes:
Fix bug where disabling the "Use Keyring" flag wasn't persisted in jwt_auth plugin.
[lgraf]
1.0a2 (2016-08-20)
New Features:
Implements navigation and breadcrumbs components
[ebrehault]
Add widget and support for RichText field in @types component.
[ebrehault]
Add fieldsets in @types
[ebrehault]
Bugfixes:
Disable automatic CSRF protection for @login and @login-renew endpoints:
If persisting tokens server-side is enabled, those requests need to be allowed to cause DB writes.
[lgraf]
Documentation: Fixed parameter 'data' to JSON format in JWT Authentication
documentation
[lccruz]
Tests: Fail tests on uncommitted changes to docs/source/_json/
[lgraf]
Tests: Use freezegun to freeze hard to control timestamps in response
dumps used for documentation.
[lgraf]
Tests: Limit available languages to a small set to avoid excessive language
lists in response dumps used for documentation.
[lgraf]