Skip to content

Releases: nuxt-modules/strapi

v1.0.0

10 Jan 12:00
Compare
Choose a tag to compare

What's Changed

Old documentation for nuxt 2 module available at https://strapi-v0.nuxtjs.org/

Full Changelog: v0.3.4...v1.0.0

v0.3.1

25 Mar 10:28
Compare
Choose a tag to compare

Bug Fixes

v0.3.0

19 Jan 10:56
Compare
Choose a tag to compare

TypeScript

The module has been rewritten with TypeScript and using Siroc as bundler.

Session options

This PR also add a properties into the module to configure the session:

export default {
  strapi: {
    key: 'strapi_jwt',
    expires: 'session',
    cookie: {}
  }
}

Resolves #92 and #85

key

  • Type: String
  • Default: 'strapi_jwt'

Key used for the cookie name as well as LocalStorage/SessionStorage key.

expires

  • Type: String or Number or 'session'
  • Default: 'session'

When expires === 'session', the sessionStorage will be used to act like the cookie.

Otherwise, the value is a string, it will be parsed using ms, ex: expires: '7d'

A number can also be provided as milliseconds, ex: expires: 7 * 24 * 3600 * 1000

It would be possible also to configure during runtime the expiration, example:

if (form.rememberMe) {
  this.$strapi.options.expires = 31 * 24 * 3600 * 1000; // Only number is possible
}
await this.$strapi.login({ identifier: '...', password: '...' })

cookie

  • Type: Object
  • Default: {}

Options to forward to the cookie#options module, the expires property will be overwritten.

Resolved #70

Misc

  • The error returned by $strapi also include .original to list the error code, resolves #89

Learn more at https://strapi.nuxtjs.org

v0.1.10

08 Jan 16:23
Compare
Choose a tag to compare
  • feat: added typescript support and updated docs accordingly (#94) Β· 64f1927

v0.1.9

08 Jan 16:23
Compare
Choose a tag to compare
  • feat: support proxy and add localStorage (#87) Β· 2e08ec6

v0.1.8

02 Nov 17:01
Compare
Choose a tag to compare

πŸ› Bug Fixes

#68 Prevent user fetch on server with target static

v0.1.7

08 Oct 07:58
Compare
Choose a tag to compare

πŸ› Bug Fixes

  • #45 Reduce the size of lodash on build
  • 58a9d17 Better error handling

v0.1.6

25 Aug 17:01
Compare
Choose a tag to compare

πŸš€ Features

  • #37 Add userUpdated hook

v0.1.5

21 Aug 15:27
Compare
Choose a tag to compare

πŸš€ Features

  • #35 Handle Single Type entities

πŸ› Bug Fixes

  • #34 Reactivity of $strapi.user on client-side hydratation

v0.1.4

21 Aug 15:24
Compare
Choose a tag to compare

πŸš€ Features

  • #28 New method to make requests to GraphQL API

πŸ› Bug Fixes

  • #29 Authorization header not present in request object