Showing 566 changed files with 14,210 additions and 7,539 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ php:

sudo: false

env:
global:
- SYMFONY_DEPRECATIONS_HELPER=weak

matrix:
include:
- php: 5.5
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Contao core bundle change log

### 4.1.1 (2015-03-03)

* Remove the "disable IP check" field from the back end settings (see #436).
* Do not quote the search string in `FIND_IN_SET()` (see #424).
* Always fix the domain and language when generating URLs (see contao/core#8238).
* Fix two issues with the flexible back end theme (see contao/core#8227).
* Correctly toggle custom page type icons (see contao/core#8236).
* Correctly render the links in the monthly/yearly event list menu (see contao/core#8140).
* Skip the registration related fields if a user is duplicated (see contao/core#8185).
* Correctly show the form field type help text (see contao/core#8200).
* Correctly create the initial version of a record (see contao/core#8141).
* Correctly show the "expand preview" buttons (see contao/core#8146).
* Correctly check that a password does not match the username (see contao/core#8209).
* Check if a directory exists before executing `mkdir()` (see contao/core#8150).
* Do not link to the maintenance module if the user cannot access it (see contao/core#8151).
* Show the "new folder" button in the template manager (see contao/core#8138).

### 4.1.0 (2015-11-26)

* Log e-mails in the database instead of a log file (see #413).
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ shallow_clone: true
platform: x86
clone_folder: c:\projects\contao

init:
- SET SYMFONY_DEPRECATIONS_HELPER=weak

install:
- cinst -y OpenSSL.Light
- SET PATH=C:\Program Files\OpenSSL;%PATH%
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": ">=5.4.0",
"symfony/framework-bundle": "^2.7.7",
"symfony/console": "^2.7.3",
"symfony/filesystem": "~2.7",
"symfony/finder": "~2.7",
"symfony/http-foundation": "^2.7.7",
"symfony/security": "^2.7.7",
"symfony/framework-bundle": "~2.8",
"symfony/console": "~2.8",
"symfony/filesystem": "~2.8",
"symfony/finder": "~2.8",
"symfony/http-foundation": "~2.8",
"symfony/security": "~2.8",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/yaml": "~2.7",
"symfony/yaml": "~2.8",
"sensio/framework-extra-bundle": "^3.0.2",
"twig/twig": "~1.20",
"doctrine/doctrine-bundle": "^1.5.2",
Expand All @@ -45,7 +45,7 @@
"lexik/maintenance-bundle": "~2.0",
"phpunit/phpunit": "~4.5",
"satooshi/php-coveralls": "~0.6",
"symfony/phpunit-bridge": "~2.7"
"symfony/phpunit-bridge": "~2.8"
},
"suggest": {
"lexik/maintenance-bundle": "To put the application into maintenance mode"
Expand Down
Loading