Skip to content

Releases: kuzzleio/kuzzle

0.13.2

02 Feb 09:19
Compare
Choose a tag to compare

Replaced putUser with createOrReplaceUser in the API

Content type extended to allow charset usage

01 Feb 16:46
Compare
Choose a tag to compare

PR #147 - Content type extended to allow charset usage

Security user create user id not read

01 Feb 14:00
Compare
Choose a tag to compare
  • Update architecture documentation PR #140
  • Security user create user id not read PR #144

0.12.2

01 Feb 10:32
Compare
Choose a tag to compare

Introducing the @cleanSecurity tag back.
The hooks now run before & after the tags and perform a deleteByQuery on the test prefixed ids instead of dropping the whole %kuzzle index.

0.12.1

29 Jan 16:57
Compare
Choose a tag to compare

Rename "put" route

29 Jan 15:50
Compare
Choose a tag to compare
  • change route putMapping by createOrReplaceMapping
  • change route putRole by createOrReplaceMapping
  • change route putProfile by createOrReplaceProfile

0.11.4

29 Jan 09:50
Compare
Choose a tag to compare

Fixed a bug where subscriptions made on empty filters and on null/undefined filters generated different room IDs, whereas the same room ID should be generated.

0.11.3

27 Jan 13:11
Compare
Choose a tag to compare
  • Added a new replace API route, allowing to replace the content of a document with another one
  • Created the new replace notification type
  • Added corresponding unit and functional tests

0.11.2

27 Jan 08:57
Compare
Choose a tag to compare
  • added a new internalIndex global configuration
  • replaced all explicit references to the %kuzzle index with the new internalIndex configuration
  • index wildcards now resolve all indexes except the internal one. Rights on the internal index must now be explicitly granted
  • security bugfix: the security controller cannot be invoked anymore if no explicit rights have been granted on the internal index
  • added explicit rights on the internal index to the default guest and admin roles
  • role and profile creation now use the user's context instead of a generic one

0.11.1

26 Jan 13:57
Compare
Choose a tag to compare
  • Kuzzle server instances now don't call the writeEngine directly anymore, but instead use write workers
  • the global repository module now use a writeLayer option instead of a writeEngine service. The new layer only exposes a execute function, taking a RequestObject as argument, and returns a promise. A default writeLayer is provided directly in the repository implementation, pointing to write workers
  • rewrote most of unit tests made on the prepareDb module, as they didn't test much
  • removed unnecessary global variables in the prepareDb module
  • fixed several bugs in prepareDb.importMapping
  • prepareDb.importFixtures now filters partial errors fired when documents already exist
  • repository documentation updated