Meta object field should not be required
This commit is contained in:
parent
2ebc302e16
commit
9e0f7b7f35
2 changed files with 40 additions and 30 deletions
64
CHANGELOG.md
64
CHANGELOG.md
|
|
@ -1,71 +1,75 @@
|
||||||
|
## 0.4.2 - 2018-06-06
|
||||||
|
|
||||||
|
- Meta object field should not be required
|
||||||
|
|
||||||
## 0.4.1 - 2018-06-06
|
## 0.4.1 - 2018-06-06
|
||||||
|
|
||||||
* Round imgix width request to nearest 100px
|
- Round imgix width request to nearest 100px
|
||||||
|
|
||||||
## 0.4.0 - 2018-06-06
|
## 0.4.0 - 2018-06-06
|
||||||
|
|
||||||
* Improve reusability of <Meta /> component
|
- Improve reusability of <Meta /> component
|
||||||
* Rename `page` prop to `fields` on pages / posts
|
- Rename `page` prop to `fields` on pages / posts
|
||||||
* Update config.yml with meta object for each item
|
- Update config.yml with meta object for each item
|
||||||
|
|
||||||
## 0.3.1 - 2018-06-01
|
## 0.3.1 - 2018-06-01
|
||||||
|
|
||||||
* Encode CMS image urls
|
- Encode CMS image urls
|
||||||
* Update config.yml
|
- Update config.yml
|
||||||
|
|
||||||
## 0.3.0 - 2018-06-01
|
## 0.3.0 - 2018-06-01
|
||||||
|
|
||||||
* General design updates
|
- General design updates
|
||||||
* Improved default logo / favicon
|
- Improved default logo / favicon
|
||||||
* Improved default card-og.png
|
- Improved default card-og.png
|
||||||
* Improved contact page layout
|
- Improved contact page layout
|
||||||
* Update <BackgroundImage />
|
- Update <BackgroundImage />
|
||||||
* Change normalize.css to modern-normalize
|
- Change normalize.css to modern-normalize
|
||||||
* Add react-feather icons
|
- Add react-feather icons
|
||||||
* Remove AOS
|
- Remove AOS
|
||||||
|
|
||||||
## 0.2.9 - 2018-05-30
|
## 0.2.9 - 2018-05-30
|
||||||
|
|
||||||
* IE11 support updates
|
- IE11 support updates
|
||||||
|
|
||||||
## 0.2.8 - 2018-05-29
|
## 0.2.8 - 2018-05-29
|
||||||
|
|
||||||
* Use imgix auto=format for automatic webp conversion
|
- Use imgix auto=format for automatic webp conversion
|
||||||
|
|
||||||
## 0.2.7 - 2018-05-25
|
## 0.2.7 - 2018-05-25
|
||||||
|
|
||||||
* Update slugify() util function to support plural initialisms
|
- Update slugify() util function to support plural initialisms
|
||||||
|
|
||||||
## 0.2.6 - 2018-05-25
|
## 0.2.6 - 2018-05-25
|
||||||
|
|
||||||
* Add slugify() util function
|
- Add slugify() util function
|
||||||
|
|
||||||
## 0.2.5 - 2018-05-25
|
## 0.2.5 - 2018-05-25
|
||||||
|
|
||||||
* Upgrade CMS (1.8.2)
|
- Upgrade CMS (1.8.2)
|
||||||
* Update singlePost CMS config
|
- Update singlePost CMS config
|
||||||
|
|
||||||
## 0.2.4 - 2018-05-24
|
## 0.2.4 - 2018-05-24
|
||||||
|
|
||||||
* Use strict CMS version (1.8.0)
|
- Use strict CMS version (1.8.0)
|
||||||
|
|
||||||
## 0.2.3 - 2018-05-21
|
## 0.2.3 - 2018-05-21
|
||||||
|
|
||||||
* Add optional imgix integration for images
|
- Add optional imgix integration for images
|
||||||
* Return to console.log for build console messages
|
- Return to console.log for build console messages
|
||||||
|
|
||||||
## 0.2.2 - 2018-05-21
|
## 0.2.2 - 2018-05-21
|
||||||
|
|
||||||
* Use ora for build console message
|
- Use ora for build console message
|
||||||
|
|
||||||
## 0.2.1 - 2018-05-17
|
## 0.2.1 - 2018-05-17
|
||||||
|
|
||||||
* Log netlifySiteUrl when viewing CMS on localhost
|
- Log netlifySiteUrl when viewing CMS on localhost
|
||||||
|
|
||||||
## 0.2.0 - 2018-05-17
|
## 0.2.0 - 2018-05-17
|
||||||
|
|
||||||
* Add CHANGELOG
|
- Add CHANGELOG
|
||||||
* Upgrade dependencies
|
- Upgrade dependencies
|
||||||
* Minor improvements to CMS webpack config
|
- Minor improvements to CMS webpack config
|
||||||
* Add CMS service worker field
|
- Add CMS service worker field
|
||||||
* Fix typo on <SinglePost />
|
- Fix typo on <SinglePost />
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
- {label: Phone, name: phone, widget: string}
|
- {label: Phone, name: phone, widget: string}
|
||||||
- {label: Email Address, name: email, widget: string}
|
- {label: Email Address, name: email, widget: string}
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
@ -42,6 +43,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
- {label: Featured Image, name: featuredImage, widget: image}
|
- {label: Featured Image, name: featuredImage, widget: image}
|
||||||
- {label: Subtitle, name: subtitle, widget: markdown}
|
- {label: Subtitle, name: subtitle, widget: markdown}
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
@ -60,6 +62,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
- {label: Section 1, name: section1, widget: markdown}
|
- {label: Section 1, name: section1, widget: markdown}
|
||||||
- {label: Section 2, name: section2, widget: markdown}
|
- {label: Section 2, name: section2, widget: markdown}
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
@ -77,6 +80,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
- {label: Subtitle, name: subtitle, widget: markdown}
|
- {label: Subtitle, name: subtitle, widget: markdown}
|
||||||
- {label: Body, name: body, widget: markdown}
|
- {label: Body, name: body, widget: markdown}
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
@ -116,6 +120,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
searchFields: ["title"]
|
searchFields: ["title"]
|
||||||
valueField: "title"
|
valueField: "title"
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
@ -135,6 +140,7 @@ collections: # A list of collections the CMS should be able to edit
|
||||||
fields: # The fields each document in this collection have
|
fields: # The fields each document in this collection have
|
||||||
- {label: Title, name: title, widget: string}
|
- {label: Title, name: title, widget: string}
|
||||||
- label: "Meta"
|
- label: "Meta"
|
||||||
|
required: false
|
||||||
name: "meta"
|
name: "meta"
|
||||||
widget: "object"
|
widget: "object"
|
||||||
fields:
|
fields:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue