v1.1.0
- [SDPA-1986] nuxt events feed (#467) - @alan-cole
- [SDPA-1888] Fix: Safari hero banner graphic glitch. (#501) - @alan-cole
- [SDPA-3045] Added request id in all route requests (#500) - @tim-yao
- [SDPA-2976] Fetch alert notifications from site taxonomy (#487) - @dylankelly
- [SDPA-369] Implement topic and tags into Page content type. (#492) - @alan-cole
- [SDPA-2988] Adds topic and tags search results page (#489) - @dylankelly
- [SDPA-372] Add Topic and Tags to end of Landing Page. (#486) - @alan-cole
- [SDPA-3091] Fixed search conig (#498) - @tim-yao
- [SDPA-2723] Fix: A rpl-link 'target' prop change will update target attr (#496) - @alan-cole
- [SDPA-3074] Added winston modules in babel transpile (#497) - @tim-yao
- [SDPSUP-608] Fix for grant accordion error if body is null. (#477) - @dylankelly
- [SDPA-2723] Fix: Site footer and site map to work in storybook v5. - @alan-cole
- [SDPA-3072] Hero banner fonts (#495) - @alan-cole
- [SDPA-2985] Fix acknowledgment field name and hero banner border. (#493) - @alan-cole
- [SDPA-910] Add padding to Display Heading typography. (#479) - @alan-cole
- [SDPA-1408] Provide more precise scaling options for icons. (#481) - @alan-cole
- AIODPC-8: Start nuxt without yarn (#490) - @tim-yao
- [SDPA-2594] Hero Banner background position. (#478) - @alan-cole
- [SDPA-3061] fix vue warning (#491) - @dylankelly
- [SDPA-2432] Use path instead of fullpath for route query (#474) - @dylankelly
- Adds ability to upload test fixture via YAML file (#469) - @dylankelly
- [SDPA-2983] Links default to opening in the same window (#466) - @dylankelly
- [SDPA-3007] Added winston as logger (#480) - @tim-yao
- [SDPA-1407] Make success icon the same size (#473) - @dylankelly
- [SDPA-2451] Adds additional status messages for grants. (#464) - @dylankelly
- [SDPA-2894] Adds fallback meta description if metatag.description is unset (#458) - @dylankelly
- [SDPA-2661] Increase RplList line-height from 14px to 16px. (#454) - @alan-cole
- Add link target="" support to components that display menus. (#384) - @alan-cole
- [SDPA-2985] Prominent acknowledgment message. (#485) - @alan-cole
- [SDPA-2937] Acknowledgement flags (#468) - @alan-cole
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
}
}
}