Skip to content

Commit

Permalink
add CHANGELOG updates
Browse files Browse the repository at this point in the history
update `Nova::script` version to 1.2.3
  • Loading branch information
chrispelzer committed Apr 10, 2023
1 parent 56ea34e commit 056382e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.2.3] - 2023-04-10
### Fixed
* Switch merging options from `array_merge_recursive` to `array_merge` to prevent the merging of associative arrays keys merging rather than replacing the keys in https://github.com/waynestate/nova-ckeditor4-field/pull/88

### Changed
* Updated CKEditor4 from 4.20.2 to 4.21.0

## [1.2.2] - 2023-03-26
### Fixed
* Fixed possible caching issue for users who already loaded a previous nova-ckeditor4-field version, causing their cached script not being updated when the package is updated.
Expand Down
2 changes: 1 addition & 1 deletion src/CKEditor4FieldServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function boot()
Nova::serving(function (ServingNova $event) {
Nova::script('ckeditor', config('nova.ckeditor-field.ckeditor_url', 'https://cdn.ckeditor.com/4.21.0/full-all/ckeditor.js'));

Nova::script('nova-ckeditor-v1-2-2', __DIR__ . '/../dist/js/field.js');
Nova::script('nova-ckeditor-v1-2-3', __DIR__ . '/../dist/js/field.js');
// Nova::style('nova-ckeditor', __DIR__ . '/../dist/css/field.css');
});

Expand Down

0 comments on commit 056382e

Please sign in to comment.