rinvex/laravel-attributes

View on GitHub
CHANGELOG.md

Summary

Maintainability
Test Coverage
# Rinvex Attributes Change Log

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](CONTRIBUTING.md).


## [v6.1.0] - 2022-02-14
- Update composer dependencies to Laravel v9
- FIX trash multiple attribute types in one save (#101)
- Fix all attribute values of type varchar documentation example (fixes #155)

## [v6.0.0] - 2021-08-22
- Drop PHP v7 support, and upgrade rinvex package dependencies to next major version
- Merge rules instead of resetting, to allow adequate model override
- Update composer dependencies
- Drop old MySQL versions support that doesn't support json columns
- Fix constructor initialization order (fill attributes should come next after merging fillables & rules)
- Upgrade to GitHub-native Dependabot
- Simplify Attributable trait
- Simplify service provider model registration into IoC
- Change hardcoded AttributeEntity table name into dynamically config option (fix #77)
- Enable StyleCI risky mode

## [v5.0.1] - 2020-12-25
- Add support for PHP v8

## [v5.0.0] - 2020-12-22
- Upgrade to Laravel v8
- Update validation rules

## [v4.1.0] - 2020-06-15
- Update validation rules
- Drop using rinvex/laravel-cacheable from core packages for more flexibility
  - Caching should be handled on the application layer, and not enforced from the core packages
- Drop PHP 7.2 & 7.3 support from travis
- Drop slugifying group attribute

## [v4.0.6] - 2020-05-30
- Remove default indent size config
- Add strip_tags validation rule to string fields
- Specify events queue
- Explicitly specify relationship attributes
- Add strip_tags validation rule
- Explicitly define relationship name

## [v4.0.5] - 2020-04-12
- Fix ServiceProvider registerCommands method compatibility

## [v4.0.4] - 2020-04-09
- Tweak artisan command registration
- Reverse commit "Convert database int fields into bigInteger"
- Refactor publish command and allow multiple resource values

## [v4.0.3] - 2020-04-04
- Fix namespace issue

## [v4.0.2] - 2020-04-04
- Enforce consistent artisan command tag namespacing
- Enforce consistent package namespace
- Drop laravel/helpers usage as it's no longer used

## [v4.0.1] - 2020-03-20
- Convert into bigInteger database fields
- Add shortcut -f (force) for artisan publish commands
- Fix migrations path

## [v4.0.0] - 2020-03-15
- Upgrade to Laravel v7.1.x & PHP v7.4.x

## [v3.0.3] - 2020-03-13
- Significant performance improvement by bypassing Eloquent model magic when attaching attribute relationships to models.
- Tweak TravisCI config
- Add migrations autoload option to the package
- Tweak service provider `publishesResources`
- Remove indirect composer dependency
- Drop using global helpers
- Update StyleCI config

## [v3.0.2] - 2019-12-18
- Fix wrong code sample in readme
- Fix `migrate:reset` args as it doesn't accept --step

## [v3.0.1] - 2019-09-24
- Add missing laravel/helpers composer package

## [v3.0.0] - 2019-09-23
- Upgrade to Laravel v6 and update dependencies

## [v2.1.1] - 2019-06-03
- Enforce latest composer package versions

## [v2.1.0] - 2019-06-02
- Update composer deps
- Drop PHP 7.1 travis test
- Refactor migrations and artisan commands, and tweak service provider publishes functionality

## [v2.0.0] - 2019-03-03
- Rename environment variable QUEUE_DRIVER to QUEUE_CONNECTION
- Require PHP 7.2 & Laravel 5.8
- Apply PHPUnit 8 updates
- Tweak and simplify FormRequest validations
- Fix MySQL / PostgreSQL json column compatibility

## [v1.0.1] - 2018-12-22
- Update composer dependencies
- Add PHP 7.3 support to travis
- Fix MySQL / PostgreSQL json column compatibility

## [v1.0.0] - 2018-10-01
- Enforce Consistency
- Support Laravel 5.7+
- Rename package to rinvex/laravel-attributes

## [v0.0.7] - 2018-09-22
- Fix wrong package name in autoload for testing
- Enforce consistency
- Update PHPUnit options
- Add attribute model factory
- Update PHPUnit options

## [v0.0.6] - 2018-06-20
- Add integration test suites
- Enforce snake_case slugs (fix #51)
- Making entity_id nullable for now (fix #57)

## [v0.0.5] - 2018-06-18
- Update composer dependencies
- Define polymorphic relationship parameters explicitly
- Drop default attribute types registration
- Use global helper functions instead of class based methods
- [WIP] Implement per resource attributes

## [v0.0.4] - 2018-02-18
- Update composer dependencies
- Update supplementary files
- Tweak setEntitiesAttribute mutator
- Add PublishCommand to artisan
- Move slug auto generation to the custom HasSlug trait
- Add missing composer dependencies
- GetMorphClass the right way
- Remove useless scopes
- Fix polymorphic class maps
- Register blade extension for @attributes
- Refactor attribute types registration
- Fix attributable cache issues
- Add PHPUnitPrettyResultPrinter
- Add slug unique index
- Move frontend stuff to cortex/attributes from rinvex/laravel-attributes
- Tweak and fix entity attributes retrieval
- Require PHP v7.1.3
- Fix entities issue and tweak some features
- Remove fillable relation rules
- Fix entity custom primary id issue (fix #30, #26)
- Typehint method returns
- Drop useless model contracts (models already swappable through IoC)
- Sort attributes on retrieval
- Add Laravel v5.6 support
- Simplify IoC binding
- Add force option to artisan commands
- Return eloquent collection always from getEntityAttributes method for compatibility
- Check if attribute_entity database table exists before querying entity attributes
- Drop Laravel 5.5 support

## [v0.0.3] - 2017-09-09
- Fix many issues and apply many enhancements
- Rename package rinvex/laravel-attributes from rinvex/attributable

## [v0.0.2] - 2017-06-29
- Enforce consistency
- Add Laravel 5.5 support
- Update validation rules
- Fix order column datatype
- Tweak collection flag column
- Change integer column length
- Tweak model event registration
- Add required flag column to attributes
- Fix wrong slug generation method order
- Rename sorting column from order to sort_order
- Replace wrong isCollection method with correct corresponding attribute is_collection

## v0.0.1 - 2017-04-08
- Rename package to "rinvex/attributable" from "rinvex/sparse" based on 715a831

[v6.1.0]: https://github.com/rinvex/laravel-attributes/compare/v6.0.0...v6.1.0
[v6.0.0]: https://github.com/rinvex/laravel-attributes/compare/v5.0.1...v6.0.0
[v5.0.1]: https://github.com/rinvex/laravel-attributes/compare/v5.0.0...v5.0.1
[v5.0.0]: https://github.com/rinvex/laravel-attributes/compare/v4.1.0...v5.0.0
[v4.1.0]: https://github.com/rinvex/laravel-attributes/compare/v4.0.6...v4.1.0
[v4.0.6]: https://github.com/rinvex/laravel-attributes/compare/v4.0.5...v4.0.6
[v4.0.5]: https://github.com/rinvex/laravel-attributes/compare/v4.0.4...v4.0.5
[v4.0.4]: https://github.com/rinvex/laravel-attributes/compare/v4.0.3...v4.0.4
[v4.0.3]: https://github.com/rinvex/laravel-attributes/compare/v4.0.2...v4.0.3
[v4.0.2]: https://github.com/rinvex/laravel-attributes/compare/v4.0.1...v4.0.2
[v4.0.1]: https://github.com/rinvex/laravel-attributes/compare/v4.0.0...v4.0.1
[v4.0.0]: https://github.com/rinvex/laravel-attributes/compare/v3.0.3...v4.0.0
[v3.0.3]: https://github.com/rinvex/laravel-attributes/compare/v3.0.2...v3.0.3
[v3.0.2]: https://github.com/rinvex/laravel-attributes/compare/v3.0.1...v3.0.2
[v3.0.1]: https://github.com/rinvex/laravel-attributes/compare/v3.0.0...v3.0.1
[v3.0.0]: https://github.com/rinvex/laravel-attributes/compare/v2.1.1...v3.0.0
[v2.1.1]: https://github.com/rinvex/laravel-attributes/compare/v2.1.0...v2.1.1
[v2.1.0]: https://github.com/rinvex/laravel-attributes/compare/v2.0.0...v2.1.0
[v2.0.0]: https://github.com/rinvex/laravel-attributes/compare/v1.0.1...v2.0.0
[v1.0.1]: https://github.com/rinvex/laravel-attributes/compare/v1.0.0...v1.0.1
[v1.0.0]: https://github.com/rinvex/laravel-attributes/compare/v0.0.7...v1.0.0
[v0.0.7]: https://github.com/rinvex/laravel-attributes/compare/v0.0.6...v0.0.7
[v0.0.6]: https://github.com/rinvex/laravel-attributes/compare/v0.0.5...v0.0.6
[v0.0.5]: https://github.com/rinvex/laravel-attributes/compare/v0.0.4...v0.0.5
[v0.0.4]: https://github.com/rinvex/laravel-attributes/compare/v0.0.3...v0.0.4
[v0.0.3]: https://github.com/rinvex/laravel-attributes/compare/v0.0.2...v0.0.3
[v0.0.2]: https://github.com/rinvex/laravel-attributes/compare/v0.0.1...v0.0.2