Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
danrot committed Feb 13, 2017
1 parent 900735b commit ab23083
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 4 deletions.
51 changes: 50 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,60 @@
CHANGELOG for Sulu CMF
======================

* dev-develop
* 1.5.0-RC1 (2017-02-13)
* ENHANCEMENT #788 [SULU-STANDARD] Updated example template
* ENHANCEMENT #779 [SULU-STANDARD] Removed exception-controller from config
* ENHANCEMENT #771 [SULU-STANDARD] Removed generator-bundle
* BUGFIX #773 [SULU-STANDARD] Removed acl configuration
* BUGFIX #3022 [ContentBundle] Fixed property-value offset set
* ENHANCEMENT #3190 [ContentBundle] Extracted automation handler
* ENHANCEMENT #3188 [AutomationBundle] Extracted the automation-bundle
* BUGFIX #3183 [ContentBundle] Fixed grid usage in conten form
* BUGFIX #3186 [Cache] Fixed wrong cache key generation for MemoizeTwigExtensionTrait
* ENHANCMENT #3182 [SecurityBundle] Added unique constraint for permission context and role
* ENHANCEMENT #3179 [All] Added exception throw when field descriptor reference is not found
* BUGFIX #3040 [MediaBundle] Throw exception when multiple formats have the same key
* BUGFIX #3180 [AutomationBundle] Remove the automation tab from ghost page forms
* FEATURE #3164 [AdminBundle] Extracted csv-export into extension
* BUGFIX #3158 [WebsiteBundle] Fixed error where URL displayed in exception is missing
* BUGFIX #3149 [ContentBundle] Fixed cache clearing on publishing
* BUGFIX #3141 [All] Fixed doctrine list builder id when name is not id
* ENHANCEMENT #3146 [TestBundle] SuluTestCase: Adopted initPhpcr to work for all kernels
* ENHANCEMENT #3147 [All] Updated minimum "phpspec/prophecy" version
* ENHANCEMENT #3142 [CoreBundle] Added a script handler to delete the composer.lock file from gitignore
* FEATURE #3042 [ContentBundle] Added versioning functionality
* ENHANCEMENT #3126 [All] Fixed deprecations to be compatible to twig2
* FEATURE #3113 [ContentBundle] Added authored/author field to pages
* ENHANCEMENT #3094 [MarkupBundle] Extracted tag-extractor from html-markup-parser
* BUGFIX #3111 [LocationBundle] Fixed coordinates update for google map provider
* ENHANCEMENT #3110 [WebsiteBundle] Fixed deprecation of flatten-exception by decorating twig-exception-controller
* BUGFIX #3109 [SnippetBundle] Added publish snippet after copy locale
* FEATURE #3107 [All] Added storage-name to list components
* BUGFIX #3098 [AdminBundle] Fixed typo in english translation
* ENHANCEMENT #3097 [All] Updated dependencies
* BUGFIX #3095 [ContentBundle] Fixed sort-by for data-provider
* BUGFIX #3092 [ContentBundle] Fixed api if structure-type was removed or is not valid
* ENHANCEMENT #3084 [GeneratorBundle] Removed generator-bundle
* ENHANCEMENT #3080 [All] Removed getRequest calls
* ENHANCENEMT #3070 [All] Removed guzzle3 dependency
* FEATURE #3078 [MediaBundle] Added sort-by title for media-dataprovider
* FEATURE #3069 [PreviewBundle] Added cache configuration for preview & websocket context
* ENHANCEMENT #3071 [All] Updated willdurand/hateoas-bundle
* ENHANCEMENT #3072 [SnippetBundle] Fixed deprecations for symfony 3.0
* ENHANCEMENT #3072 [AdminBundle] Fixed deprecations for symfony 3.0
* FEATURE #3066 [AutomationBundle] Added notification-badge to automation-tab
* ENHANCEMENT #3059 [ContentBundle] Fixed deprecation in WebspaceCollection rendering
* ENHANCEMENT #3058 [All] Fixed some config files for symfony3
* BUGFIX #3043 [ContentBundle] Fixed bind null values on managed-structure
* FEATURE #3037 [AutomationBundle] Added automation-bundle
* BUGFIX #3052 [ContentBundle] Fixed loading tree (with uuid) without webspace
* ENHANCEMENT #3067 [ContentBundle] Removed symfony-acl-voter
* ENHANCEMENT #3068 [CoreBundle] Removed phpcr-odm
* ENHANCEMENT #2856 [ContactBundle] Removed not needed css
* BUGFIX #3034 [LocationBundle] Load external map data over https
* BUGFIX #3031 [AdminBundle] Fixed defaultDisplayOption in media selectio content type
* BUGFIX #3075 [ContentComponent] Fixed missing referenced UUIDs for contentTypes nested in a block
* ENHANCEMENT #1686 [SnippetBundle] Added XLIFF-Import/Export for Snippet-Documents.

* 1.4.7 (2017-02-13)
* HOTFIX #3195 [MediaBundle] Fixed media linking in texteditor overlay
Expand Down
73 changes: 73 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,78 @@
# Upgrade

## 1.5.0-RC1

### Media formats uniqueness

The uniqueness of media formats is now checked, and an exception is thrown in
case duplicated format keys exist.

In addition to that the existing formats have been prefixed with `sulu-`,
so that they are less likely to conflict. If you have relied on these formats,
which you shouldn't have, then you have to create them now in your own theme.

The following formats do not exist anymore, and should therefore be deleted
from the `web/uploads/media`-folder, except you decide to create the image
format on your own:

* 400x400
* 400x400-inset
* 260x
* 170x170
* 100x100
* 100x100-inset
* 50x50

### Page author

The page has a new property `author` and `authored` which will be prefilled with values from `creator`/`created`.

```
app/console phpcr:migrations:migrate
```

### Twig 2

If you upgrade twig to version 2 please read follow
[this instructions](http://twig.sensiolabs.org/doc/1.x/deprecated.html).

The most important change is ``_self`` for calling macros. You have to import it before using.

__Before:__
```twig
{ _self.macro_name() }}
```

__After:__
```twig
{% import _self as self %}
{ self.macro_name() }}
```

If you dont want to use twig2 please add following line to your ``composer.json``:

```json
"require": {
...
"twig/twig": "^1.11"
}
```

### Deprecations

Following classes and methods were removed because of deprecations:

* Sulu\Component\Security\Authorization\AccessControl\SymfonyAccessControlVoter
* Sulu\Component\Rest\RestController::responsePersistSettings
* Sulu\Component\Rest\RestController::responseList
* Sulu\Component\Rest\RestController::createHalResponse
* Sulu\Component\Rest\RestController::getHalLinks
* Sulu\Bundle\WebsiteBundle\DefaultController::redirectAction
* Sulu\Bundle\WebsiteBundle\DefaultController::redirectWebspaceAction

Additionally the GeneratorBundle was removed because it was not maintained since a while.
You have to remove the Bundle from you Kernels.

## 1.4.3

### Multiple properties in template
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"sulu/sulu": "dev-develop",
"sulu/theme-bundle": "dev-develop",
"sulu/sulu": "1.5.*@RC",
"sulu/theme-bundle": "1.2.*@RC",
"dantleech/phpcr-migrations-bundle": "0.1.*",

"nelmio/alice": "~1.7",
Expand All @@ -40,7 +40,7 @@
"doctrine/doctrine-cache-bundle": "~1.0",
"oro/doctrine-extensions": "^1.0",

"sulu/document-manager": "@dev"
"sulu/document-manager": "0.9.*@RC"
},
"require-dev": {
"sensio/generator-bundle": "~3.0",
Expand Down

0 comments on commit ab23083

Please sign in to comment.