Skip to content

Latest commit

 

History

History
315 lines (281 loc) · 36.3 KB

CHANGELOG.md

File metadata and controls

315 lines (281 loc) · 36.3 KB

Changelog

v1.6.0 (04/03/2020)


v1.5.7 (04/03/2020)


v1.4.0 (12/11/2019)


v1.3.1 (18/10/2019)


v1.2.1 (24/09/2019)


v1.2.1-rc.0 (23/09/2019)


v1.2.0-rc.0 (09/09/2019)


v1.2.0 (09/09/2019)

Upgrade notes

  • /Sitemap has been moved into @dpc-sdp/ripple-nuxt-tide. When upgrading sites, please delete /pages/sitemap.vue.

v1.1.0-alpha.0 (28/08/2019)


v1.0.0 (28/08/2019)


v1.1.0 (28/08/2019)

Upgrade notes

This update need a small update on custom site "/store/index.js" to add request id, but without this changes, site should still working, not a breaking change.

   import { logger } from '@dpc-sdp/ripple-nuxt-tide/lib/core'

   export const actions = {
-    async nuxtServerInit ({ dispatch }) {
+    async nuxtServerInit ({ dispatch }, { req }) {
       try {
-        await dispatch('tide/init')
+        await dispatch('tide/init', { requestId: req.requestId })
       } catch (error) {
         if (process.server) {
           logger.error('Tide API server has an error.', { error, label: 'App' })
         }
         throw error
       }
     }
   }

v1.0.1 (09/08/2019)