Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
medfreeman committed Oct 22, 2017
1 parent 1a23abb commit 730dfda
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,45 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="1.1.0"></a>
## [1.1.0](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.2...v1.1.0) (2017-10-22)

### Features

* **config** add possibility to declare nuxtent options `api` key as a function
given the `isStatic` parameter to adjust Axios options when using `nuxt generate`, fixes [#92](https://github.com/nuxt-community/nuxtent-module/issues/92)

```json
{
content: {
page: '/_slug',
permalink: '/:year/:slug',
generate: ['get', 'getAll']
},
api: function(isStatic) {
return {
browserBaseURL: isStatic ? 'http://production-url.com' : ''
}
}
}
```

* **config** all nuxtent options present in `api` key are now forwarded to `axios`

* **module** allow `.yml` file extension for content files ([a6b240a](https://github.com/nuxt-community/nuxtent-module/commit/a6b240a1500a8861ee8cbfdae0f3cb2b34f235c0)), closes [#69](https://github.com/nuxt-community/nuxtent-module/issues/69)

### Bug Fixes

* **prism** change Prism implementation to include classes ([
4dad625](https://github.com/nuxt-community/nuxtent-module/commit/4dad625ba6ec329cd327134cca3757d6abcd0f19))

* **module** harmonize date format of posts and pages ([2154c45](https://github.com/nuxt-community/nuxtent-module/commit/2154c4535fdcf0de268385c09aae64977b065ebb)), closes [#103](https://github.com/nuxt-community/nuxtent-module/issues/103), fixes[#98](https://github.com/nuxt-community/nuxtent-module/issues/98)

* **module** do not expose `filePath` to the browser ([7311294](https://github.com/nuxt-community/nuxtent-module/commit/7311294734270c093bf9c7379be043bba351504d)), fixes [#96](https://github.com/nuxt-community/nuxtent-module/issues/96)

* **module:** fix `generate` router permalink concatenation ([f553cda](https://github.com/nuxt-community/nuxtent-module/commit/f553cda)), closes [#103](https://github.com/nuxt-community/nuxtent-module/issues/103)


<a name="1.0.2"></a>
## [1.0.2](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.1...v1.0.2) (2017-09-29)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxtent",
"version": "1.0.2",
"version": "1.1.0",
"description": "Seamlessly use content files in your Nuxt.js sites.",
"main": "index.js",
"contributors": [
Expand Down

0 comments on commit 730dfda

Please sign in to comment.