Skip to content

Commit

Permalink
v1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x authored Feb 19, 2021
1 parent 95cddb4 commit 1162c9f
Showing 1 changed file with 59 additions and 2 deletions.
61 changes: 59 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,52 @@
## v1.1.9 (02/19/2021)

### Enhancements

- feat(wordpress): Add `@__` translate directive (#38)
- feat(wordpress): Add @wpbodyopen directive (#46)
- chore(docs): Document @wpbodyopen directive
- feat(acf): Add `@hasfields` and `@endhasfields` directives (#52)
- chore(docs): Add @hasfields and @endhasfields to docs (#53)
- enhance(package): Add `log1x/sage-directives/namespace` filter for overriding default namespace (#33)
- feat(directives): Add `@hasoptions` & `@endhasoptions` (#54)

### Bug fixes

- fix(docs): Update legacy codex documentation links (#47)
- fix(term-directive): Fix warnings for `@term` (#55)

## v1.1.8 (03/31/2020)

### Bug fixes

- fix(hasposts): add missing closing tag (Fixes: #34)

## v1.1.7 (02/20/2020)

### Bug fixes

- Fix `@thumbnail()` having `thumbnail` hardcoded as its image size when passed `false` as the second value.

## v1.1.6 (12-02-2019)

### Bug fixes

- Allow the second parameter of `@set` to accept a value containing commas (e.g. an array) (Fixes #28)

### Enhancements

- Allow passing `raw` as the second parameter of `@image` to return an attachment URL (Fixes #24)
- Add the `$limit` parameter to the `parse` method to allow passing a limit to `explode()` (#28)
- Bump lock files

### Documentation
- Add `@image` example for `raw`

- Add `@image` example for `raw`

## v1.1.5 (11-19-2019)

### Enhancements

- Add `@notempty` / `@endnotempty` (#27, @shanejones)
- Bump dependencies
- Remove unused `$expression` from `@end` directives
Expand All @@ -22,32 +55,38 @@
## v1.1.4 (11-13-2019)

### Bug fixes

- Use `Illuminate\Support\Str` instead of `str_`

## v1.1.3 (08-25-2019)

### Enhancements

- Added `@hasposts` and `@endhasposts` directives.
- Added `@noposts` and `@endnoposts` directives. (#18)

## v1.1.2 (08-07-2019)

### Bug fixes

- Use `Collection::put()` instead of `Collection::replace()` to maintain backwards compatibility.

## v1.1.1 (08-07-2019)

### Enhancements

- Added `Util::unwrap()` which simply unwraps the passed string from the passed delimiter.
- Added `Util::clean()` to combine and clean malformed arrays formed from a parsed expressions.
- `Util::toString()` now accepts a second parameter `$single` for working with flattened or malformed arrays.

### Bug fixes

- Fix passing an array as the third parameter to `@image`

## v1.1.0 (08-07-2019)

### Enhancements

- Added `@image` directive which echos attachment images as well as ACF field images responsively using `wp_get_attachment_image()`
- Added `Util::field()` which if ACF is present, attempts to get and return a field value from `get_field()`, `get_sub_field()`, or `get_field($field, 'option')` (in that order).
- Added `Util::toString()` which attempts to convert expressions such as arrays back to strings before passing them to Blade to avoid array to string exceptions after modifying arrays passed as a Blade expression.
Expand All @@ -60,95 +99,113 @@
- Other small clean up.

### Bug fixes

- Fix documentation styles with the new VuePress.
- Only pull the Google font weights we're actually using on the documentation.

## v1.0.9 (05-12-2019)

### Enhancements

- Move docs from DocPress to VuePress (woo-hoo search!)
- Add CHANGELOG.md
- Clean up `package.json`
- Clean up `.gitignore` and `.gitattributes`

### Bug Fixes

- Fix various typo's within the documentation.

## v1.0.8 (05-03-2019)

### Enhancements

- Use a better method of getting Sage 10's Blade compiler.

### Bug Fixes

- Remove an unused `@asset` implementation that clashes with Sage 10.

## v1.0.7 (04-30-2019)

### Enhancements
- Add Sage 10 support 🎈

- Add Sage 10 support 🎈
- `@sub` and `@hassub` can now accept a third parameter for deeper nested arrays (e.g. `@sub('images', 'sizes', 'thumbnail')`). (Fixes #12)
- New `@permalink`, `@categories`, `@category`, `@term`, `@role`, and `@endrole` directives.

### Bug Fixes

- Change `get()` to a protected function.
- Fix a few typos in the docs. (Fixes #13)

## v1.0.6 (03-02-2019)

### Enhancements

- Change namespace to `Log1x\SageDirectives`
- The project README was getting a little insane with the amount of Directives currently in the project. They now have a new home: https://log1x.github.io/sage-directives-docs/

### Bug Fixes

- Set `ignore_sticky_posts` to `true` when passing an array of post IDs/objects to `@posts`
- Properly return the collection array when passing post IDs/objects to `@posts`

## v1.0.5 (02-13-2019)

### Bug Fixes

- Change `is_number()` to `is_numeric()` (oops)
- Fix `@published` typo on README

## v1.0.4 (02-11-2019)

### Features

- Added 12+ new helper directives: `@istrue`, `@isfalse`, `@isnull`, `@isnotnull`, `@instanceof`, `@typeof`, `@repeat`, `@style`, `@script`, `@js`, `@inline`, `@fa`
- Added 6 new WordPress directives: `@author`, `@authorurl`, `@published`, `@modified`, `@wpautop`, `@wpautokp`
- Refactored `@posts` allowing it to accept post ID's, `WP_Post` instances, or an array with a combination of the two (#8)
- Refactored source code DocBlocks and formatting of directives
- Improved formatting and examples for documentation

### Bug Fixes

- Fix missing closing parenthesis in fields directive (#7)
- Added missing parameters to allow passing an array key to `@isfield`, `@issub`, and `@isoption`

### Breaking Change

- `@condition` has been replaced with `@istrue` / `@isfalse`

## v1.0.3 (01-30-2019)

### Bug Fixes

- Add a `function_exists()` check for `add_action()` to prevent issues in scenarios where WordPress core is not loaded (e.g. Composer).

## v1.0.2 (12-07-2018)

### Features

- Add usage documentation with examples.
- Allow `@posts` to accept a custom WP_Query instance as a variable as well as return the main loop if `$query` is undefined and no variable is passed. (Thanks to @mmirus on #1)
- Add `@title`, `@content`, and `@excerpt` WordPress directives.
- Allow `@option` to accept a second parameter to return a value in an array.

### Enhancements

- Clean up `@sub`, `@hassub`, and `@issub` (were mistakenly accepting unusable param's originally from `@field`).
- Clean up `@condition` syntax to be more uniform with the other directives.

### Bug Fixes

- Add missing `@isoption` directive.
- Fix `@options` param typo.

## v1.0.1 (10-29-2018)

### Enhancements

- Rewrite utility methods making use of `collect()` and allowing easier argument splitting.
- Refactor directives using new utility methods as well as allowing additional arguments to be passed for ACF directives such as post ID.
- Make directive source code more readable.
Expand Down

0 comments on commit 1162c9f

Please sign in to comment.