Skip to content

Latest commit

 

History

History
865 lines (662 loc) · 48 KB

CHANGELOG.md

File metadata and controls

865 lines (662 loc) · 48 KB

1.8.3

Warning
This release contains breaking changes.

IMPROVEMENTS:

  • Change the hash algorithm of signing XML signature from SHA-1 to SHA-256. (#687)
    • From this version on, tokens issued by the Unit are not compatible with Unit in prior version. For details, refer to personium-lib-common#117.

MISC:

  • Implement unit tests of TokenIntrospectEndpointResource. (#686)

1.8.2

Warning
This release contains breaking changes.

IMPROVEMENTS:

  • Unify scattered log settings into personium-unit-config. (#677)
    • If you upgrade personium-core from v1.8.1 or under, replace /personium_nfs/personium-core/eventlog/${eventlog_path} with ${eventlog_path} in logback configuration file.
      1. If you use Ansible to deploy Personium the logback.xml can found in this location: /opt/logback/logback.xml in AP server.
      2. Otherwise, you can find in locations specified in classpath.

BUG FIXES:

  • Replace Exception 415 with 406 (#675)
  • Fix core version in properties (#680)

MISC:

  • Update release workflow (#681)

1.8.1

IMPROVEMENTS:

  • Supporting elasticsearch 7.17 and rest client (#672)

BUG FIXES:

  • PROPFIND Support for __log related resources (#564)
  • set MAX_RESOURCE_LENGTH 255 (#664)

MISC:

  • Fix warnings.

1.8.0

IMPROVEMENTS:

SECURITY FIX:

MISC:

1.7.25

NEW FEATURES:

IMPROVEMENTS:

  • Improve stricity about WebDAV ACL with validating XML namespace. (personium/personium-core#629)
    • This improvement may contain some incompatibility. Before version 1.7.25, you could specify personium specific privileges with any namespace. From this release, you must specify Personium namespace (urn:x-personium:xmlns) when you use personium specific WebDAV privileges.

MISC:

1.7.24

SECURITY UPDATES:

  • Update elasticsearch version to 6.8.22 to address log4j2 vulnerability - CVE-2021-44228, CVE-2021-45046, CVE-2021-45105

IMPROVEMENTS:

1.7.23

NEW FEATURES:

  • Create AuthPluginLoader interface to load multiple authentication plugins (personium-plugin-base#23)
  • Enhance the official OpenID Connect plugin, which is loaded by default (#614 ,personium-plugins#15)
    • Support for all generic OpenID Providers, not just Google, which was already supported
    • AuthPluginLoader support allows multiple OpenID Providers to be configured

IMPROVEMENTS:

  • Update dependent software versions

1.7.22

IMPROVEMENTS:

  • Implement for relaying request of dynamic path service execution (#593)
  • Use java 7+ nio file APIs for more flexible and precise File handling (#579)
  • Should respond error when accessed via domain name different from the one configured in Unit Certificate (#535)
  • Update elasticsearch version 6.8.15 (#602)

BUG FIXES:

  • WebDAV MOVE fails on subdomain-based mode (#553)
  • Box metadata falsely returns "ready" at the initial instant of bar installation (#574)
  • Unit test case ObjectIoTest.marshal_Acl failed when PathBasedCellUrl is enabled. (#581)
  • Modifying error message for unsupported grant type (#595)

MISC:

  • Implementing multi-stage Dockerfile (#594)
  • Update checkstyle version and check rules
  • Updating forkflow scripts for Releasing (#599)
  • move properties from pom to src/test/resources (#601)

NOTES:

  • Use personium-engine 1.5.28 for this version of personium-core

1.7.21

BREAKING CHANGES:

  • Exported bar file now does not use a "personium-localunit:" URL (#512)

    • Base Url in 00_meta/90_rootprops.xml
      • 1.7.17 and before
        https://{cellName}.{domain}/__role/{boxName}
      • 1.7.18-20:
        personium-localunit:{cellName}:/__role/{boxName}
      • 1.7.21 and later:
        https://{cellName}.{domain}/__role/__/
    • Bar file export / import compatibility
      • Bar file exported from 1.7.18-20
        Not importable to any version
      • Bar file exporeted from 1.7.17 and earlier
        Importable to any versions (after 1.6.10)
      • Bar file exporeted from 1.7.21 and later
        Importable to any versions (after 1.6.10)
  • Role Url in TranceCellAccessToken/VisitorRefreshToken are now Role Class URL (See)

  • personium-core.log (Java Web Application log) format changed

  • Default request key (Unique identifier of each request in log files) format changed

BUG FIXES:

  • When Unit FQDN is less than 14 letters long, token parsing may possibly fail. (#518)
  • Refreshed visitor access token does not have Roles directly assigned from ExtCell. (#516)

IMPROVEMENTS:

  • Upgraded personium-lib-common to 1.5.3
  • Now Personium unit can also be configured with OS environment variables and system properties.
    • Configuration priority
      1. Java system properties
      2. OS environment variables
      3. Unit config file (personium-unit-config.properties in class path or any file whose location specified with java system propety "io.personium.configurationFile")
      4. Default configuration (personium-unit-config-default.properties bundled in personium-core.war file)

NOTES:

  • Use personium-engine 1.5.27 for this version of personium-core

1.7.20

BUG FIXES:

  • When grant code is used at token end point to issue an access token, the token subject does not have the association with the roles that should be allocated to it. (#501)
  • Presenting grant code with confidentialClient app auth token at token endpoint fails for schema mismatch. (#506)
  • Some OData keys in URLs including __id for OData service collection entity sets is not escaped in response payload items such as __metadata.uri. (#486)

1.7.19

BUG FIXES:

  • DateTime properties are handled as text properties for range query. (#487)
  • 500 Error occurs at token end point API when the request body is empty. (#489)

1.7.18b

BUG FIXES:

  • Cell Owner URL being persisted without #fragment info. (#479)

1.7.18a

BUG FIXES:

  • 500 Error when Non-Cell URL (incl. Unit URL) is given in p_target param at TokenEndpoint. (#475)

1.7.18

NEW FEATURES:

  • Each Cell's OAuth 2.0 token endpoint now accepts scope request.
    • Apps can request single or multiple Cell level privilege name(s) as scope request.
    • Issued tokens now carry assigned scope information.
    • Added unit config keys for configuring default scopes for different grant type (#470)
    • Default configurations for all grant types are set to "root" for backward compatibility. (Change configuration to use your unit with more security)

BREAKING CHANGES:

  • Cell Level API Access is now limited to tokens with appropriate scope. (#445)
  • URL scheme "personium-localunit" is extended and supports a syntax using two colons. (#284)

IMPROVEMENTS:

  • Base URL in ACL is now converted to one using "personium-localunit" scheme when internally pesisted. Unit FQDN change won't require data change.

SECURITY FIX:

  • Token refreshing between apps now disabled. (#463)

1.7.17

IMPROVEMENTS:

  • Add IO logging with elapsed time. (#446)

1.7.16

BUG FIXES:

  • Even if Depth:1 is specified in "Retrieve cell snapshot file setting" API, it is ignored. (#439)
  • If Accept request header contains extra values, 409 is returned (#435)

IMPROVEMENTS:

  • Fix crossdomain.xml namespace URL. (#448)

1.7.15

BUG FIXES:

  • Implementation of log file deletion API(#270)
  • Display of Box is incorrect when PROPFIND of Cell level is executed with Depth:1.(#366)
  • FIX: Close opened resources properly. (#436)

IMPROVEMENTS:

  • Add the REPORT method to the WebDAV based API.(#101)
  • Checkstyle and PMD fixes of lib-es-adapter.(#434)

1.7.14

BUG FIXES:

  • DavCmpFsImpl doesn't respect binaryData.fsync.enabled setting.(#394)

IMPROVEMENTS:

  • Support MERGE of the cell management object.(#351)

1.7.13

BUG FIXES:

  • Unknown Exception occurs during cell import.(#296)
  • Repeating cell import api will erase the contents of box.(#423)

IMPROVEMENTS:

  • When a large number of Rules are registered in Unit, it takes time to start personium (tomcat).(#370)

1.7.12

BUG FIXES:

  • At the time of cell import, data of other cells may be deleted.(#353)
  • Some Unittests that use memcached fail.(#416)

IMPROVEMENTS:

  • Update activemq-client version.(#383)
  • Concurrent request support for token authentication to the same account(App cell).(#398)
  • Update jackson-databind version.(#420)

1.7.11

BUG FIXES:

  • There is a part that is not closed after executing HttpClient execute.(#406)
  • Change the default value of "X-Personium-RequestKey".(#408)

IMPROVEMENTS:

  • Add debug log.(#415)

1.7.10

IMPROVEMENTS:

  • Modify the behavior when using user settings html for authorization endpoint.(#362)
  • Add the function to prompt Box installation to the authorization endpoint.(#380)

1.7.9

BUG FIXES:

  • URLs in link element in XML return value is not escaped.(#372)
  • Token when executing the "exec" action does not contain Role.(#384)
  • Rule information is not deleted when executing Box recursive deletion API.(#388)

IMPROVEMENTS:

  • Divide elasticsearch index into each type.(#390)
    • Note: You need to recreate the Elasticsearch index configuration.

1.7.8

BUG FIXES:

  • Account locking is incorrect when using memcached.(#377)
    • Caution: It is necessary to modernize memcached. (v1.5.12)
      Please see the official website for details.

IMPROVEMENTS:

  • Use secure hash in password authentication(#339)

1.7.7

NEW FEATURE:

  • Include "inherited" tag information in the response of PROPFIND.(#50)
  • Elasticsearch 6.x support(#285)
  • Support "bind" and "unbind" privileges(#315)
  • Support Password Initialization flow(#341)

BUG FIXES:

  • ActiveMQ leaks memory.(#373)

IMPROVEMENTS:

  • Introduce Status property to Account(#340)
  • $filter Limit character strings that can be specified in the query to 1000 bytes.(#354)
  • Make the value of maxResultWindow equal to NtoN.maxnum.(#363)
    • For those who upgrade their existing Personium environment.
      • If you set maxResultWindow to the default value, please replace it with the previous value "110000".
  • Maintenance of checkstyle and PMD.(#365)

1.7.6

NEW FEATURE:

  • Enable to set expiration date of token.(#342)
  • Change the default setting of personium to per-Cell-FQDN.(#348)
    • For setting up per-Cell-FQDN environment, please click here.

BUG FIXES:

  • BAR installation incorrectly assigns CollectionKind to "NONE".(#272)
  • When using transcell token in per-cell environment, privilege check fails.(#356)

IMPROVEMENTS:

  • Increase the default value of "odata.links.NtoN.maxnum".(#343)

1.7.5

NEW FEATURE:

  • ElasticSearch 5.x Support.(#254)
  • Support OpenID Connect.(#287)
  • Introduce Stream Collection and add new Action 'relay.data' to Rule.(#289)
  • Subscribe topic of Stream Collection with WebSocket.(#290)
  • Support account lock.(#308)

BUG FIXES:

  • External cells are doubly registered when roles/relations are given in messages(#301)
  • Cannot get .error file that is generated when cell export fails.(#312)
  • The heartbeat of websocket does not work.(#314)

IMPROVEMENTS:

  • Update "jackson-databind".(#302)
  • Add Internal Events.(#305)
  • Add information when issuing tokens.(#309)
  • Enable to issue tokens only from specified IP address.(#310)
  • Add password restriction to property.(#325)
  • Quit converting Cell URL to path-base in the Issuer& Subject fields in Tokens.(#334)

1.6.18

BUG FIXES:

1.7.4

BUG FIXES:

  • "Unknown Exception" has occurred on $select query for CellCtl object.(#56)

IMPROVEMENTS:

  • OAuth2 Token Introspection.(#281)
  • Support OpenID Connect.(#287) Under development.
    • __authz endpoint
      • Accept "scope=openid"
      • Accept "response_type=id_token"
    • Add "__certs" endpoint
    • Responses are still all dummy

1.7.3

IMPROVEMENTS:

  • Response body of PROPFIND is URL-encoded.(#219)
  • Support per-Cell FQDN.(Under development. Please check the issue for details.)(#223)

1.6.17

BUG FIXES:

  • Resolve "issuer does not match" error.(#279)

IMPROVEMENTS:

  • Box import supports per-Cell FQDN format.(#274)
  • Enable the old Content-Type of box export.(#275)

1.7.0 Beta3

IMPROVEMENTS:

  • Support per-Cell FQDN.(Under development. Some functions will not work yet.)(#223)

1.7.0 Beta2

IMPROVEMENTS:

  • Add "Retrieve unit meta data" API.(#262)
  • Add unit metadata to metadata of cell and box.(#263)
  • Updates to libraries with security warnings.(#264)

1.7.0 Beta1

IMPROVEMENTS:

  • Support per-Cell FQDN.(Prerelease. Some functions will not work yet.)(#223)
  • Incorrect error message.(__authz endpoint).(#232)

1.6.16

  • Change Servlet Spec from 3.0 to 3.1(#6)
  • English comments on major source files(#244)
  • Add API to return cell name(url) and box name(url).(#249)
  • Change the Content-Type of box export.(#250)
  • Remove "Wink WebDAV" library.(#252)

1.6.15

IMPROVEMENTS:

  • Upgrade to JAX-RS 2.1.(#237)
  • Make default value of "relayhtmlurl" and "authorizationhtmlurl" configurable in the personium-unit-config.properties file.(#240)

1.6.14

IMPROVEMENTS:

  • GET against Cell root URL should return HomeApp HTML.(#234)
  • GET against authorization endpoint should return relayed HTML content from preconfigured remote URL.(#235)

1.6.13

IMPROVEMENTS:

  • Make PluginException correspond to PersoniumCoreAuthnException.(#231)

1.6.12

BUG FIXES:

  • It is necessary to modify the plugin mechanism.(#224)
  • System does not shutdown cleanly.(#226)

IMPROVEMENTS:

  • Change EventInfo in Timer Rule from required to optional.(#225)

1.6.11

BUG FIXES:

  • URI returned by response is not URL-encoded.(#214)
  • "_Relation._Box.Name" can not be acquired normally by ExtRole list retrieval.(#220)

1.6.10

IMPROVEMENTS:

  • Implement box export pre-function.(#182, #185, #188)
  • Correspondence of Bar file ver 2.0.(#190)
  • Thread pool support for Box installation function.(#210)

1.6.9

IMPROVEMENTS:

  • Corresponds to authorization code grant flow.(#213)
    • Only a part of the function is implemented. Refer to #213 for details.

1.6.8

BUG FIXES:

  • Error occurs when importing snapshot of the cell into different unit.(#183)
  • Token on receiving a message does not include schema information.(#197)

IMPROVEMENTS:

  • Update pom.xml.(#191)
  • HTTP Proxy support.(#193)
  • Close HttpClient.(#195)
  • Improve eventbus and event processing.(#199)
  • Introduce timer event.(#201)
  • Enable select of message broker used on EventBus.(#203)
  • Use embedded message broker on test.(#205)
  • Allow only positive number for EventObject in case of timer rule.(#207)

1.6.7

BUG FIXES:

  • Authority of the token acquired by Google account authentication is incorrect.(#173)
  • Some item's value of event are garbled when action 'exec', 'relay' or 'relay.event' is executed.(#175)

IMPROVEMENTS:

  • Unify the values of CollectionKind.(#84)
  • Can't set personium-localcell:/__ctl/Role to EventObject on rule with _Box.Name.(#177)
  • Convert personium-localunit scheme to https scheme on EventSubject.(#179)

1.6.6

BUG FIXES:

  • Message API does not send to other Unit.(#37)
  • Cell recursive deletion does not delete WebDAV files.(#71)
  • The body check of CellExport API is incorrect.(#104)
  • BAR file installation does not allow specifying ACL on file basis.(#131)
  • MainBox will not be imported when importing into cell different from exported cell.(#157)
  • When importing to a cell different from the exported cell, contents in the cell move.(#158)
  • Accessing cell during cell import returns 500 error.(#161)

IMPROVEMENTS:

  • Append "/" to the end of URL returned by Box URL acquisition API.(#102)
  • Box URL API does not support CORS.(#112)
  • Let RelayAction, ExecAction be triggered with appropriate access tokens.(#169)

1.6.5

IMPROVEMENTS:

  • Change matching of EventInfo to forward match.(#149)
  • Change Type value of Internal Event for odata operation.(#150)
  • Enable to set any string to EventObject in case of external event.(#151)

1.6.4

IMPROVEMENTS:

  • Limit Unit User privilege.(#66)
  • Define string constants.(#144)

1.6.3

IMPROVEMENTS:

  • Event has no date and time of when the event occurred.(#132)
  • Don't publish rule event in case of external event.(#134)
  • Add new Action 'relay.event' to Rule.(#140)

BUG FIXES:

  • Event log is output to unknown folder.(#136)
  • Scheme of object of internal event in box install is not personium-localcell.(#138)

1.6.2

BUG FIXES:

  • Accept Arbitrary String for User OData's __id.(#98)
  • Box installation can not create file directly under the box.(#125)

IMPROVEMENTS:

  • It cannot know a connecting WebSocket state.(#120)
  • Put an upper limit on derived number of times from a source event.(#123)
  • Convert scheme of X-Personium-Box-Schema header from personim-localunit to https in ExecAction.(#127)

1.6.1

BUG FIXES:

  • Modify API execution privilege of NullResource.(#95)

IMPROVEMENTS:

  • Enable to receive events with WebSocket.(#116)

1.6.0

NEW FEATURES:

  • Event Processing Functions
    • New Cell control objects "Rule" is introduced for managing event processing rules. see (#89)

BREAKING CHANGES:

  • Interfaces of Messaging and external event acceptance API's are changed:
    • RequestRelation is now replaced with RequestObjects. see (#103)
    • External event JSON structure has changed.
    • External events are no longer logged by default without any Rules settings.

IMPROVEMENTS:

  • httpclient lib version updated. (#41)
  • "unitUser.issuers" item in the unit config file now supports URL's with personium-localunit scheme. (#99)

1.5.8

IMPROVEMENTS:

  • Add Box recursive delete function.(#58)

1.5.7

BUG FIXES:

  • Add value check processing of RequireSchemaAuthz attribute.(#78)
  • Change execution privilege of GetBoxURL API.(#82)
  • DateTime literal format used in OData $filter is not implemented correctly.(#86)

IMPROVEMENTS:

  • When Unit URL is changed, cells' hidden parameter Owner in elasticsearch will be wrong URL.(#40)
  • Unify the linefeed code of file to LF.(#77)
  • Recursive delete of WebDAV collection without user OData.(#68)

1.5.6

IMPROVEMENTS:

  • OData with N:N relationship also deletes $links at the same time when deleting entities.(#65)
  • recursive delete of OData Service Collection.(#69)

1.5.5

IMPROVEMENTS:

  • Add Cell export import function.(Release.)(#43)

1.5.4

BUG FIXES:

  • Memcached Changes the behavior at update failure.(#35)
  • REST API error handling improvement.(#26)
  • Incorrect argument is passed to constructor ODataResource(). (#44)

IMPROVEMENTS:

  • Add Cell export import function.(Prerelease. Partial abnormal case and tests are not implemented yet.)(#43)

1.5.3

IMPROVEMENTS:

  • Improve error output level when installing bar files.(#34)

BUG FIXES:

  • (Provisional coping) Memcached Changes the behavior at update failure.(#35)

1.5.2

BUG FIXES:

  • When multiple accesses to the same Box occurred, 500 Errors occurred.(#28)

IMPROVEMENTS:

  • Enable to switch accessible data scope of token from Cell-admin app to general app.(#21)
  • Organize PersoniumUnitConfig.(#32)

1.5.1

IMPROVEMENTS:

  • Make relationship registration possible by role. (#24)
  • If ads: none, unnecessary logs are output.(#25)
  • WebDAV file encryption.(#27)

1.5.0

BUG FIXES:

  • Unavailability of TLS 1.2. (#3)

IMPROVEMENTS:

  • Enable specification of class URL in RequestRelation of message API. (#19)
  • Change OAuth2Token authentication API endpoint. (#20)

1.4.6

BUG FIXES:

  • Implementation of BoxBound function of message API. (#17)

1.4.5

BUG FIXES:

  • Fixed about Executing Cell Recursive Delete API does not delete OData in cell. (#13)

1.4.4

MODIFICATIONS FOR RELIABILITY:

  • Add test codes for Accept Weak ETag. (#5)

1.4.3

IMPROVEMENTS:

  • Pluggable architecture for authentication APIs. (#4)
  • Accept Weak ETag for WebDAV. (#5)

MODIFICATIONS FOR SECURITY:

  • Abolished temporarily Unit User Promotion PROPPATCH API. (#11).

BUG FIXES:

  • Test bar file resources are not proper in 1.4.2 . (#7)
  • Remove PMD warnings and Checkstyle errors. (#8)
  • Fixed a problem about Cell Administoration privilege p:root.

1.4.2

BREAKING CHANGES:

  • Rename package name and some parameters from com.fujitsu.dc or dc to io.personium or personium . (#1)
  • Changed parameters' names are below:
# Name V1.4.1 and previous 1.4.2 or later Example or Usage
1 Unit Configuration file name dc-config.properties personium-unit-config.properties
2 XML name space/URN xmlns:dc='urn:x-dc1:xmlns' xmlns:p='urn:x-personium:xmlns' WebDAV Property data, bar file document or Authn API
3 HTTP request header X-Dc-Xxxxx X-Personium-Xxxxx All APIs with original request header
4 POST request parameters' key dc_xxxxx p_xxxxx APIs with post parameters
5 Core APIs for Engine Javascript dc.xxxx _p.xxxxx Engine service script (server-side logic)

IMPROVEMENTS:

  • Cell level ACL inherits to all Boxes in Cells when you set Box previliges to Cell. (#2)
    • Enabled to set the Box previleges (ex. D:read or D:write ) to Cell ACL.
    • In addition, renamed Cell administoration previlege name from dc:all to p:root.

1.4.1

IMPROVEMENTS:

  • core [UriUtils.java, CellEsImpl.java,TokenEndPointResource.java etc] :
    A new custom URL scheme personium-localunit is introduced for more flexible server operation.
    It is now supported in major APIs handling URL.
  • You can write personium-localunit:/cell1/ instead of https://myunit.example/cell1/ in fields such as Box.Schema or ExtCell.Url when referring within the same Unit.

  • In previous versions, Unit FQDN change requires data conversion in most cases.

  • By using this new URL scheme, links among Cells on a Unit can be kept without data conversion after Unit FQDN change.

BUG FIXES:

  • core [DcEngineSvcCollectionResource.java etc], engine [FsServiceResourceSourceManager.java etc]:
    The script file could not be loaded for enabling custom API was fixed. (Issue #27)

  • core [DavCmpFsImpl.java]:
    The bug that the content length is always reset to 0 at updating WebDAV file was fixed.(Issue #29)

1.4.0

BREAKING CHANGES:

  • core, engine [dc-config-default.properties]:

Changed unit configuration file keys' prefixes from com.fujitsu.dc.* to io.personium.*. It is necessary for V1.3.X users to replace all keys' prefixes in dc-config.properties file.

IMPROVEMENTS:

  • core [CellCmpFsImpl.java, BoxCmpFsImpl.java, DavCmpFsImpl.java etc], es-api-2.4 [userdata.json etc]:

Supports elasticsearch v2.4.1.

  • The es-api-2.4 module is newly developed for elasticsearch v2.4.X support.
  • Personium V1.4.0 (or later) must run with es-api-2.4 module.
  • Current es-api-2.4 supports ElasticSearch v2.4.1.
  • For the incompatibilities between elasticsearch v1.3.X and v2.4.X, the registration formats of data (OData / WebDAV) were changed. (Show in details below.)

BACKWARD INCOMPATIBILITIES:

  • core [CellCmpFsImpl.java, BoxCmpFsImpl.java, DavCmpFsImpl.java etc], es-api-2.4 [userdata.json etc]:
    For supporting elasticsearch v2.4.1, the registration formats of inner data (OData / WebDAV) were changed.
    For these incompatibilities, V1.4.0 cannot run with the same data construction in server as V1.3.X. To upgrade version from V1.3.X, inner data must be converted in new rules below.
  • The WebDAV data are stored in file system.
    Stored directory path is set by dc-config.properties, the default path is /personium_nfs/dc-core/dav.
  • Elasticsearch mapping definition key "l" was replaced to "ll" in UserData object.
    (The other objects which have "l.*" mapping keys are not changed.)

1.3.25

IMPROVEMENTS:

  • core [Common.java, Box.java, ExtCell.java, ODataUtils.java etc]:
    Improved formats of Box object's "Schema" and ExtCell object's "Name".
    The definitions of these formats are below.
Object Property Format name Proper format definition Examples
Box Schema Schema URI Cell URL or URN. http://fqdn/adc/
urn:x-dc1:adc
ExtCell Name Cell URL Normalized URL with http(s) scheme and trailing slash. http://fqdn/adc/
  • The formats of URI, URN and URL are based on RFC3986.
  • Trailing slash is the character / which is in the end of URL.
  • These values are validated at the time of creating/updating Box or ExtCell.
  • If the above check fails, the response code will be 400 Bad Request.

1.3.24

IMPROVEMENTS:

  • core [pom.xml etc]:
    Enabled Java 8 compilation.
  • Compilation on Java 8 used to fail due to incompatibility between Java 7 and 8. Now it is fixed and both Java 7 and 8 can compile the source.
  • Also checked it surely runs on Java 8.
  • core [Account.java, Common.java, AbstractODataResource.java etc]:
    Fixed the known issue in V1.3.23 about Create Account API.
  • Account object's "Type" value can be validated when you create a new Account.
  • Available values are:
    "basic","oidc:google" or these space-separated values such as "oidc:google basic".
  • If the above check fails, the response code will be 400 Bad Request.
  • core [TokenEndPointResource.java etc]:
    Fixed the bug about password authentication.
  • Added checking that Account object's "Type" value contains "basic" at the time of password authentication.
  • If the above check fails, the response code will be 400 Bad Request.

1.3.23

IMPROVEMENTS:

  • core [IdToken.java, TokenEndPointResource.java etc]:
    Supports OpenID Connect (OIDC). In V1.3.23, supporting ID provider is Google only.
  • When creating OIDC Account, post Create Account API with "Type" key parameter in the request body such as {"Name":"[GMAIL_ADDRESS]", "Type":"oidc:google"}. Account name must be Gmail address (ex. [email protected]) to use Google OIDC. When you create an account which is authenticated with both basic ID/PW and OIDC, separate two values with space such as {"Type":"basic oidc:google"}. (Without setting of "Type" value, the default is basic).
  • When utilizing OIDC Authentication, need to set com.fujitsu.dc.core.oidc.google.trustedClientIds=[CLIENT_ID] configuration by dc-confing.properties file. (You can get client IDs by registering your apps to Google developer Console.) If you want to set multiple client IDs, these values must be separated with space. You can also configure wild card *, but this setting causes more security risks, so we strongly recommend for debugging use only. (Without setting, default value is *.)
  • When authenticating an account with OIDC, use Authentication API with request body "grant_type=urn:x-dc1:oidc:google&id_token=[ID_TOKEN]" . If you need more information with OAuth2.0 ID Token, refer to Google Developers site.
  • core [DavDestination.java, DavMoveResource.java, DavCollectionResource.java, DavCmpEsImpl.java, etc.]:
  • MOVE method(RFC2518) for WedDAV collections and stored files are implemented. (Some restrictions apply.)
  • MOVE method requires Destination: header which is absolute URI expressing the name or the directory to be changed to. MOVE method can be used by below items:
1. WebDAV collections.
2. OData collections.
3. Service collections.
4. WebDAV collection files.
5. Service collection files under `/__src` directory.

#####API examples:

######Rename collection (end slash is required)

curl -X MOVE "http://[FQDN]/[cell]/[box]/[collection]/[old_name]/"
-H "Destination:http://[FQDN]/[cell]/[box]/[collection]/[new_name]/" -i -k -s

######Rename file

curl -X MOVE "http://[FQDN]/[cell]/[box]/[collection]/[dir]/old.txt"
-H "Destination:http://[FQDN]/[cell]/[box]/[collection]/[dir]/new.txt" -i -k -s

######Move file

curl -X MOVE "http://[FQDN]/[cell]/[box]/[collection]/[from]/file.txt"
-H "Destination:http://[FQDN]/[cell]/[box]/[collection]/[to]/file.txt" -i -k -s
  • core [UserSchemaODataProducer.java ]:
    PUT methods to change the name of following items are implemented.
  • EntityType
  • Property
  • ComplexTypeProperty
  • AssociationEnd

KNOWN ISSUES:

  • core : When creating new Account, the posted "Type" value is not validated. New account can be created whatever the "Type" value is, such mistaking values as "Type": "basic oidc:facebook" (not supported ID Provider), "Type": "basic_oidc:google" (separated by underscore) etc.

1.3.22a

BACKWARD INCOMPATIBILITIES:

  • core [DcCoreAuthnException.java]: Response code for authentication failure with OAuth 2.0 (__auth endpoint) has been changed as follows.

    Versions Response code & header
    Prior to V1.3.22 401 with/without authentication header depending on authentication type.
    V1.3.22 401 with header "WWW-Authenticate: xxxxx"
    From V1.3.22a Basic authentication: 400 with header "WWW-Authenticate: Basic". Client authentication: See KNOWN ISSUES below.

KNOWN ISSUES:

  • core : Response code for client authentication failure with OAuth 2.0 (__auth endpoint) should be 401 and include "WWW-Authenticate" response header. However current version of personium.io returns response code 400 without authenticate header due to compatibility for existing applications.

1.3.22

IMPROVEMENTS:

  • core [EsQueryHandler.java]: Implemented ne (not equal) operator for OData $filter query. List of supported operators and functions follows.

    Operator Description Example Note
    eq Equal $filter=itemKey eq 'searchValue'
    $filter=itemkey eq 10
    ne Not equal $filter=itemKey ne 'searchValue'
    gt Greater than $filter=itemKey gt 1000
    ge Greater than or equal $filter=itemKey ge 1000
    lt Less than $filter=itemKey lt 1000
    le Less than or equal $filter=itemKey le 1000
    gt Greater than $filter=itemKey gt 1000
    and Logical and $filter=itemKey eq 'searchValue1' and itemKey2 eq 'searchValue2'
    or Logical or $filter=itemKey eq 'searchValue1' or itemKey2 eq 'searchValue2'
    () Precedence grouping $filter=itemKey eq 'searchValue' or (itemKey gt 500 and itemKey lt 1500)
    Function Description Example Note
    startswith $filter=startswith(itemKey, 'searchValue') Null value is not supported.
    substringof $filter=substringof('searchValue1', itemKey1) Null value is not supported.

BUG FIXES:

  • core [EsQueryHandler.java, DcOptionsQueryParser.java, DcCoreExceptoin.java]: Unexpected result or error was retunred when unsupported operator or function is specified in query. Now returns Bad request (400).

  • core [EsQueryHandler.java]: No data was returned when searching with query that contains control codes as an operand. Fixed.

BACKWARD INCOMPATIBILITIES:

  • core [EsQueryHandler.java, DcOptionsQueryParser.java, FilterConditionValidator.java, DcCoreExceptoin.java]: Due to the above improvements and bug fixes, $filter behavior has been changed as follows:

    When undefined property is specified as query operand.
    Prior to V1.3.22 Nothing is Returned.
    From V1.3.22 Bad Request(400)
    When the format of operand value is different from the type of property.
    Prior to V1.3.22 If the operand value is castable to the type of assocaiated property, the operand is treated as valid.
    If not castable, retunrs Bad Request(400).
    From V1.3.22 Bad Request(400)
    When operand value is out of range for the type of property.
    Prior to V1.3.22 The operand value is treated as a valid operand, but may cause either unexpected result or error.
    From V1.3.22 Bad Request(400)
    To search data including \ (back-slash)
    Prior to V1.3.22 No escaping is required in query value..
    From V1.3.22 Escaping '' (back-slash) required, such as '\\'

1.3.21

BREAKING CHANGES:

  • core [AccessConetxt.java, etc.]: Supports Basic authentication (user, password) with Authorization header to allow access to the resource.

BACKWARD INCOMPATIBILITIES:

  • core [BoxPrivilege.java, ODataSvcCollectionResource.java, ODataSvcSchemaResource.java]: Added alter-schema privilege. Prior to 1.3.21, OData schema can be changed with write privilege, but from 1.3.21, alter-schema privilege is required to change the schema.

  • core [BoxUrlResource.java]: Changed response code of "Get Box URL" API from 302 to 200 to prevent redirection to the "Location URL" on some environment.

IMPROVEMENTS:

  • core [DcCoreConfig.java, AuthUtils.java]: Password salt was hard-coded and the same value was used for every personium runtime, so that it could be a threat in terms of security. Now it can be specified with individual value in dc-config.properties.

  • core [BinaryDataAccessor.java]: Corrected file write operation to ensure that the data is flushed and synced to the storage device.

BUG FIXES:

  • core [DcEngineSvcCollectionResource.java], engine [DcResponse.java]: Status code 500 was returned when "Transfer-Encoding: chuncked" header was given on engine response. Fixed.

  • core [AccessContext.java, DcCoreAuthzException.java, etc.]: Authentication and authorization behavior is corrected to comply with HTTP RFC.