Skip to content

Commit

Permalink
Merge pull request #15 from phalcon-nucleon/1.3
Browse files Browse the repository at this point in the history
1.3
  • Loading branch information
Ark4ne authored Mar 8, 2019
2 parents 07f4b92 + 892fbcd commit e0cdff3
Show file tree
Hide file tree
Showing 82 changed files with 1,565 additions and 2,968 deletions.
9 changes: 9 additions & 0 deletions .const.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,20 @@ path = @php/dir
env = @php/env:APP_ENV:development
debug = true

url = http://127.0.0.1:8000
static_url = http://127.0.0.1:8000

key = YourSecretKey

[db]
host = 'localhost'
user = 'root'
password = 'abc123'
name = 'nucleon'

[cache]
driver = file

[session]
id = nucleon-session-id
driver = files
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/.sass-cache
/vendor
composer.phar
composer.lock
.php_cs.cache
.DS_Store
Thumbs.db
2 changes: 1 addition & 1 deletion CHANGELOG-1.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Release Note
# Release Note

## v1.1.0

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG-1.2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Release Note
# Release Note

## v1.2.0

Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG-1.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Release Note

## v1.3.0

### Important
- php support 5.6 - 7.2
Phalcon v3.x will not support php7.3 and higher.
Nucleon v1.x, will support only php5.6 to php7.2.
Nucleon v2.x will support php7.2 and higher, with Phalcon v4.x.

### Added
- Task RouteCache (route:cache) : Cache http route file
- Task Optimization (optimize) : Add route:cache
- Compile files (compile, const, config, loader), are now able to be commited & shared
- Volt: Add csrf extension (csrf_field & csrf_token function)
- Volt: Add route function
- Config: Add :
- app.static_uri: Define app static uri
- app.key, app.cipher: Used for cookie encryption

### Changed
- Rename Middleware\Guest to Middleware\RedirectIfAuthenticated.
- Config::Session : Allow to describe multiple store for session
Loading

0 comments on commit e0cdff3

Please sign in to comment.