Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to `nova-dependency-container` will be documented in this file.

## [1.0.16] - 2025-11-25

### Changed
- Removed all console.log debug statements from Vue components for production readiness
- Improved FieldServiceProvider to gracefully handle environments where Nova is not available
- Updated PHP version requirement to support PHP 8.3, 8.4, and 8.5
- Updated dependency versions for better compatibility (collision ^8.6, pest ^3.7.4)

### Fixed
- Fixed PHPStan analysis errors by adding Nova availability check in FieldServiceProvider
- Fixed test failures when Nova package is not installed in dev environment

### Technical
- Reduced JavaScript bundle size by removing debug logging (~2.5KB reduction)
- Added class_exists check before registering Nova assets to prevent errors in non-Nova environments

## [1.0.15] - 2025-11-25

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iamgerwin/nova-dependency-container",
"version": "1.0.13",
"version": "1.0.16",
"description": "A Laravel Nova 4 and 5 field container allowing to depend on other fields values",
"keywords": [
"laravel",
Expand All @@ -20,15 +20,15 @@
}
],
"require": {
"php": "^8.3",
"php": "^8.3|^8.4|^8.5",
"laravel/framework": "^11.0|^12.0"
},
"require-dev": {
"laravel/pint": "^1.14",
"larastan/larastan": "^3.0",
"nunomaduro/collision": "^8.0",
"nunomaduro/collision": "^8.6",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest": "^3.7.4",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpstan/extension-installer": "^1.3",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

Loading