Skip to content

Commit

Permalink
v2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aocneanu committed Jan 31, 2019
1 parent 8d871a6 commit 9229468
Show file tree
Hide file tree
Showing 48 changed files with 402 additions and 267 deletions.
11 changes: 10 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ APP_URL=http://localhost

LOG_CHANNEL=stack

DB_CONNECTION=mysql
DB_CONNECTION=system
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=enso
DB_USERNAME=root
DB_PASSWORD=

DB_TENANT_DATABASE=tenant

BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
Expand All @@ -38,4 +40,11 @@ PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

LOGIN_ATTEMPTS_PER_MINUTE=5
PASSWORD_LIFETIME=0
PASSWORD_LENGTH=6
PASSWORD_UPPER_CASE_CHARACTERS=0
PASSWORD_NUMERIC_CHARACTERS=0
PASSWORD_SPECIAL_CHARACTERS=0

ENSO_API_TOKEN=adrian
2 changes: 1 addition & 1 deletion .env.testing
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ APP_URL=http://localhost

LOG_CHANNEL=stack

DB_CONNECTION=mysql
DB_CONNECTION=system
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=enso
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
## Laravel Enso's Changelog

### 2.16.0
Starting with this version Enso gets native multitenancy support, thanks to the our newest package `laravel-enso/multitenancy`

#### Improvements
- in the following days we will update the docs to fully cover the new capabilities multitenancy
- adds caching support for totals in tables; this can be have a great positive impact in large tables. For more info check the [docs](https://docs.laravel-enso.com/packages/vue-datatable.html#caching-support)
- strenghthens the user -> person -> company -> userGroup -> roles policies, getting ready for MT :D

#### Bug Fixes
- fixes a bug in vue select when the selected value is (int) 0
- fixes a bug in typeahead when using the filter function -> this bug affected the searchable functionality
- other minor bug fixes

#### Upgrade steps:
- update in `composer.json`: `"laravel-enso/core": "3.6.*"`
- run `composer update`
- run `php artisan enso:upgrade`
- update your `database.php` config file and make sure that you have a `system` connection that is also configured as default and an optionally `tenant` connection. Use the file from the main repository as an example.
- update `CompanyFactory` with the one from the demo repository
- update `.env.example` && `.env.testing` if needed
- update the `horizon.php` & `datatable.php` configuration files with the ones from the main repository

### 2.15.3

#### Improvements
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"laravel-enso/addressesmanager": "2.5.*",
"laravel-enso/commentsmanager": "2.4.*",
"laravel-enso/controlpanelapi": "^2.0",
"laravel-enso/core": "3.6.*",
"laravel-enso/core": "3.7.*",
"laravel-enso/discussions": "1.1.*",
"laravel-enso/documentsmanager": "2.4.*",
"laravel-enso/examples": "^1.0",
Expand Down
Loading

0 comments on commit 9229468

Please sign in to comment.