Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
Prepare 0.18.0 for release (#567)
Browse files Browse the repository at this point in the history
* chore: prepare 0.18.0 for release
  • Loading branch information
nickcernis authored Jun 16, 2022
1 parent 966468c commit aa21229
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Atlas Content Modeler Changelog

## Unreleased
## 0.18.0 - 2022-06-16
### Changed
- Text fields can now use “title” as their API identifier if “use this field as the entry title” is ticked.
- Field validation now returns translatable errors.
Expand Down
2 changes: 1 addition & 1 deletion atlas-content-modeler.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: https://wpengine.com/
* Text Domain: atlas-content-modeler
* Domain Path: /languages
* Version: 0.17.0
* Version: 0.18.0
* Requires at least: 5.7
* Requires PHP: 7.2
* License: GPLv2 or later
Expand Down
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atlas-content-modeler",
"version": "0.17.0",
"version": "0.18.0",
"description": "",
"targets": {
"settings": {
Expand Down
21 changes: 20 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Requires at least: 5.7
Tested up to: 6.0
Requires PHP: 7.2
Stable tag: 0.17.0
Stable tag: 0.18.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Author: WP Engine
Expand Down Expand Up @@ -54,6 +54,25 @@ You can submit feature requests and open bug reports in our [GitHub repo](https:

== Changelog ==

= 0.18.0 - 2022-06-16 =

* **Changed:** Text fields can now use “title” as their API identifier if “use this field as the entry title” is ticked.
* **Changed:** Field validation now returns translatable errors.
* **Changed:** Crud function insert_model_entry() will now append relationship ids.
* **Changed:** Text field entries via CRUD are now validated for min and max characters.
* **Changed:** Text field entries created via the PHP API are now validated for minRepeatable and maxRepeatable.
* **Changed:** Extended timeout for `wp acm blueprint import` command from 5 seconds to 15 seconds.
* **Changed:** Number field entries via CRUD are now validated for min, max, and step values as well as type.
* **Fixed:** Issue where adding a new repeating field to an existing model schema could break GraphQL queries under certain conditions.
* **Fixed:** Empty field values are no longer saved to the database.
* **Fixed:** Relationship fields no longer resolve as “null” in GraphQL results for models with different singular names and API identifiers.
* **Added:** Added email validation when using insert_model_entry() crud function.
* **Added:** Added ability to add newly created models from the top admin menu dropdown right after creation without a refresh of the page.
* **Added:** Added validation for repeatable text fields for insert_model_entry() crud function.
* **Added:** Added validation for repeatable date fields for insert_model_entry() crud function.
* **Added:** Added validation for repeatable number fields for insert_model_entry() crud function.
* **Added:** Added validation for repeatable email fields for insert_model_entry() crud function.

= 0.17.0 2022-05-05 =

* **Added:** Mutations support to create, update and delete entries via GraphQL. All fields are supported except media and relationships for now. Find examples at https://github.com/wpengine/atlas-content-modeler/blob/main/docs/mutations/index.md.
Expand Down

0 comments on commit aa21229

Please sign in to comment.