Skip to content

Commit b874305

Browse files
author
phalcon
committed
fixing conflicts
2 parents 74c146a + 4f28c5b commit b874305

File tree

594 files changed

+84051
-37296
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

594 files changed

+84051
-37296
lines changed

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,3 +411,53 @@ build/64bits/modules/
411411
build/64bits/phalcon.la
412412
build/64bits/phalcon.lo
413413
build/64bits/run-tests.php
414+
build/safe/.deps
415+
build/safe/.libs/
416+
build/safe/Makefile
417+
build/safe/Makefile.fragments
418+
build/safe/Makefile.global
419+
build/safe/Makefile.objects
420+
build/safe/acinclude.m4
421+
build/safe/aclocal.m4
422+
build/safe/autom4te.cache/
423+
build/safe/build/
424+
build/safe/config.guess
425+
build/safe/config.h
426+
build/safe/config.h.in
427+
build/safe/config.log
428+
build/safe/config.nice
429+
build/safe/config.status
430+
build/safe/config.sub
431+
build/safe/configure
432+
build/safe/configure.in
433+
build/safe/install-sh
434+
build/safe/libtool
435+
build/safe/ltmain.sh
436+
build/safe/missing
437+
build/safe/mkinstalldirs
438+
build/safe/modules/
439+
build/safe/phalcon.la
440+
build/safe/phalcon.lo
441+
build/safe/run-tests.php
442+
ext/annotations/.libs/
443+
ext/annotations/adapter.lo
444+
ext/annotations/adapter/.libs/
445+
ext/annotations/adapter/memory.lo
446+
ext/annotations/annotation.lo
447+
ext/annotations/collection.lo
448+
ext/annotations/exception.lo
449+
ext/annotations/parser.lo
450+
ext/annotations/reader.lo
451+
ext/annotations/reflection.lo
452+
ext/annotations/scanner.lo
453+
ext/di/service/.libs/
454+
ext/di/service/builder.lo
455+
ext/mvc/collectioninterface.lo
456+
ext/mvc/micro/collection.lo
457+
ext/mvc/model/behavior/softdelete.lo
458+
ext/mvc/model/behaviorinterface.lo
459+
ext/mvc/model/metadata/strategy/.libs/
460+
ext/mvc/model/metadata/strategy/introspection.lo
461+
ext/mvc/model/relationinterface.lo
462+
ext/mvc/router/annotations.lo
463+
ext/mvc/router/group.lo

CHANGELOG

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
0.9.0b2
2+
- Support for reusable records. A relation can be marked to cache in memory the records to speedup getting related records
3+
- Added 'elseif' statement to Volt
4+
- Changed static key in Volt's 'cache' to any valid expression
5+
- Added Phalcon\Logger\Adapter\Syslog and Phalcon\Logger\Adapter\Stream to Phalcon\Logger
6+
- Added Phalcon\Logger\Multiple to send logs to multiples adapters
7+
- Added formatters abstraction to Phalcon\Logger, now including: Phalcon\Logger\Formatter\Line, Phalcon\Logger\Formatter\Json and Phalcon\Logger\Formatter\Syslog
8+
- Added Phalcon\Annotations\Adapter\Files to Phalcon\Annotations, this adapter stores the annotations in PHP files
9+
10+
0.9.0b1
11+
- Added Phalcon\Annotations, a general purpose component to read annotations from docblocks
12+
- Phalcon\Mvc\Model now supports saving related records using magic methods with a unique call to 'save'
13+
- Adding autoescaping option to Phalcon\Tag
14+
- Added andWhere/orWhere to Phalcon\Mvc\Model\Criteria
15+
- Added passing an HTTP body to the Phalcon\Http\Response's constructor
16+
- Phalcon\Mvc\View is now able to pass variables to the views using magic methods
17+
- Support for slice with filter and built-in syntax in Volt
18+
- Added magic methods in the ORM to find/findFirst by a single field
19+
- Improved XSS protection in Phalcon\Tag
20+
- Implemented queuing events with priorities in Phalcon\Events
21+
- Implemented collecting of returned responses in Phalcon\Events
22+
- Added toArray method to Phalcon\Mvc\Model\Resultset classes
23+
- Added hydration modes to Phalcon\Mvc\Model\Resultset (HYDRATE_RECORDS, HYDRATE_ARRAYS, HYDRATE_OBJECTS)
24+
125
0.8.0b1
226
- Improved Phalcon\Escaper, this component provides contextual escaping of different kinds of texts (CSS, Javascript, URL, HTML Attributes etc)
327
- Added serialization of Mvc\Collection instances

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For use phalcon on windows you only should to download a DLL library
1919

2020
extension=php_phalcon.dll
2121

22-
Finally restart your webserver.
22+
Finally restart your webserver.
2323

2424
### Linux/Unix/Mac
2525

@@ -38,7 +38,7 @@ Ubuntu:
3838

3939
Suse:
4040

41-
yast2 -i php5-pear php5-dev libmysqlclient gcc make autoconf2.13
41+
yast2 -i php5-pear php5-devel libmysqlclient gcc make autoconf2.13
4242

4343
Compilation
4444
-----------
@@ -48,7 +48,7 @@ Follow these instructions to generate a binary extension for your platform:
4848
# git clone git://github.com/phalcon/cphalcon.git
4949
# cd cphalcon/build
5050
# sudo ./install
51-
51+
5252
Add extension to your php.ini
5353

5454
extension=phalcon.so

0 commit comments

Comments
 (0)