7.4.0 (2022-08-02)
7.3.0 (2022-07-25)
7.2.2 (2022-07-19)
7.2.1 (2022-07-11)
7.2.0 (2022-07-04)
7.1.4 (2022-07-01)
7.1.3 (2022-06-21)
7.1.2 (2022-06-10)
7.1.1 (2022-06-01)
7.1.0 (2022-05-24)
7.0.0 (2022-05-17)
- package.json & package-lock.json: update fsxa-stack dependencies to their latest version (#45) (efd008a)
- package.json & package-lock.json: Links inside of RichtTextElements will now be mapped in the same way as the value of CMS_INPUT_LINK. Please refer the FSXA-API CHANGELOG.md for more information.
6.0.1 (2022-05-06)
6.0.0 (2022-04-21)
- dependencies: The latest fsxa-api version has a new return type for fetchProjectProperties and a new format for the ImageMap type. For details, check the breaking changes in the fsxa-api.
5.3.2 (2022-04-08)
5.3.1 (2022-04-05)
5.3.0 (2022-03-24)
5.2.3 (2022-03-02)
5.2.2 (2022-02-22)
5.2.1 (2022-02-16)
5.2.0 (2022-02-15)
5.1.0 (2022-02-11)
5.0.1 (2022-02-09)
5.0.0 (2022-02-08)
- env: We updated the dependency to latest fsxa-api version, introducing new "type" attribute for public interfaces. This may cause your application to break. Details how to handle this can be found in the Changelog of the fsxa-api.
4.0.5 (2022-01-14)
4.0.4 (2022-01-11)
4.0.3 (2022-01-11)
4.0.2 (2021-12-21)
4.0.1 (2021-12-20)
4.0.0 (2021-12-15)
- The original fsxa-api class was removed and the new ones FSXAProxyApi and FSXARemoteApi are used. They have slightly different, but better, method signatures. For more information, please read the migration guide in the CHANGELOG of the FSXA-API.
- Environment variables FSXA_HOST and FSXA_PORT have to be configured in your production environments. Make sure to set the variables in your PWA deployments. In testing scenarios, http://localhost:3000 will be used. Please read the migration guide below.
Since there are new environment variables, the referencing PWA's nuxt.config.ts needs to be adjusted. Place the following code snippet inside the NuxtConfig object:
publicRuntimeConfig: {
FSXA_HOST: process.env.FSXA_HOST,
FSXA_PORT: process.env.FSXA_PORT,
FSXA_MODE: process.env.FSXA_MODE
},
It will make the environment variables available inside your application. The modules array also needs this information. So add it to the modules configuration as well. Additionally the variables NUXT_HOST and NUXT_PORT defined in the PWA's configuration need to be handed over.
modules: [
...
[
'fsxa-nuxt-module',
{
FSXA_HOST: process.env.FSXA_HOST,
FSXA_PORT: process.env.FSXA_PORT,
FSXA_MODE: process.env.FSXA_MODE,
NUXT_HOST: process.env.NUXT_HOST,
NUXT_PORT: process.env.NUXT_PORT
}
]
],
3.7.0 (2021-12-03)
3.6.0 (2021-11-18)
- customization: implement possibility to customize the middleware path (b2014a2)
3.5.1 (2021-08-16)
3.5.0 (2021-07-01)
3.4.2 (2021-06-25)
- remove unused dependencies (2a9e221)
3.4.1 (2021-06-25)
- add documentation for adjusting TPP-SNAP version (214f5af)
3.4.0 (2021-05-03)
- devmodeinfo: added a new template to be displayed when devMode is active (e0fad1d)
3.3.0 (2021-04-14)
- fs-tpp-snap: added a new entry to define the tpp-snap version (e9dd970)
3.2.0 (2021-03-12)
- upgrade fsxa-api and fsxa-pattern-library to newest version (49ab441)
3.1.0 (2020-12-14)
- sitemap / fsxa-api: we've updated the fsxa-api and added a sitemap route (6abdda5)
3.0.0 (2020-12-09)
- configuration / dataset support: changed configuration of components and its file structure (ae69a42)
- configuration / dataset support: - Components will now be passed as a single configuration option
2.2.1 (2020-11-02)
- dependencies: add loose coupling for dependency versions (d63e782)
2.2.0 (2020-10-28)
- logging: you can now specify a logLevel through your config file (0cdcc39)
2.1.0 (2020-10-14)
- datasets: add datasets support and switch internally to getExpressRouter exposed by fsxaapi (a5d1fb1)
2.0.0 (2020-10-05)
- options: fix custom route format (d53db84)
- options: You can no longer pass middlewarOptions. Use the customRoutes option instead.
1.4.2 (2020-09-24)
- automatic file mapping: nuxt was not able to watch newly created directories for components (87dcf9a)
1.4.1 (2020-09-18)
- configuration: remove obsolete appUrl setting (1a2368a)
1.4.0 (2020-09-17)
- i18n: we are now supporting multi-language projects as well (a4fe89f)
1.3.0 (2020-09-09)
- fsxa-api: update to fsxa-api v1.1.0 to support new tenantId feature (2a081df)
1.2.7 (2020-09-08)
- plugin: introduce new fsxa-pattern-library and update nuxt-plugin to meet SSR requirements (5f2f4a0)
1.2.6 (2020-09-08)
- plugin: set appUrl for client mode (ca32188)
1.2.5 (2020-09-08)
- plugin: fix wrong usage of NUXT_HOST env variable (344369e)
1.2.4 (2020-09-08)
- plugin: update client-check (8d0692f)
1.2.3 (2020-09-08)
- plugin: check if window exists to ensure that the correct baseUrl is passed to the API (ea140cc)
1.2.2 (2020-09-08)
- plugin: switch to usage of NUXT_HOST and NUXT_PORT environment variables during build (496047f)
1.2.1 (2020-09-08)
- plugin: remove appUrl usage from plugin and add internal routing to localhost:3000 when in SSR (0d6e7c8)
1.2.0 (2020-09-07)
- configuration: we introduced a new required configuration option named appUrl (3a272ec)
1.1.0 (2020-09-04)
- mapping: subfolders are now correctly mapped to component-keys (c77b0da)
- api: you can now add custom routes to the backend api (ae8a8a2)
1.0.4 (2020-08-31)
- windows compat: we are now using path.join for path construction (b034446)
1.0.3 (2020-08-25)
- express-api: fix wrong export in ServerMiddleware (4708516)
1.0.2 (2020-08-25)
- express-api: remove import statements from server-middleware (73a15a1)
1.0.1 (2020-08-25)
- package.json: fix missing dependencies bug (f856abd)
- initial release: release initial FSXA Nuxt-Module (8dffd6a)