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

Commit 730dfda

Browse files
committed
chore(release): 1.1.0
1 parent 1a23abb commit 730dfda

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,45 @@
22

33
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.
44

5+
<a name="1.1.0"></a>
6+
## [1.1.0](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.2...v1.1.0) (2017-10-22)
7+
8+
### Features
9+
10+
* **config** add possibility to declare nuxtent options `api` key as a function
11+
given the `isStatic` parameter to adjust Axios options when using `nuxt generate`, fixes [#92](https://github.com/nuxt-community/nuxtent-module/issues/92)
12+
13+
```json
14+
{
15+
content: {
16+
page: '/_slug',
17+
permalink: '/:year/:slug',
18+
generate: ['get', 'getAll']
19+
},
20+
api: function(isStatic) {
21+
return {
22+
browserBaseURL: isStatic ? 'http://production-url.com' : ''
23+
}
24+
}
25+
}
26+
```
27+
28+
* **config** all nuxtent options present in `api` key are now forwarded to `axios`
29+
30+
* **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)
31+
32+
### Bug Fixes
33+
34+
* **prism** change Prism implementation to include classes ([
35+
4dad625](https://github.com/nuxt-community/nuxtent-module/commit/4dad625ba6ec329cd327134cca3757d6abcd0f19))
36+
37+
* **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)
38+
39+
* **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)
40+
41+
* **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)
42+
43+
544
<a name="1.0.2"></a>
645
## [1.0.2](https://github.com/nuxt-community/nuxtent-module/compare/v1.0.1...v1.0.2) (2017-09-29)
746

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuxtent",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Seamlessly use content files in your Nuxt.js sites.",
55
"main": "index.js",
66
"contributors": [

0 commit comments

Comments
 (0)