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 Jun 1, 2017
1 parent dbe721b commit f018775
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 3 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,47 @@ CHANGELOG for Sulu CMF
* dev-develop
* BUGFIX #816 [SULU-STANDARD] Added 'ClientWebsiteBundle' to default bundles of Assetic configuration.
* ENHANCEMENT #795 [SULU-STANDARD] Updated dependencies and fixed symfony3 deprecations
* BUGFIX #3381 [WebsiteBundle] Fixed partial redirect
* BUGFIX #3379 [All] Upgraded to Symfony 3.3
* BUGFIX #3378 [ContentBundle] Fixed smart-content-manager
* ENHANCEMENT #3359 [ContentBundle] Added check for existence before redirect
* FEATURE #3354 [ContactBundle] Added social media profile field
* FEATURE #3212 [CategoryBundle] Added functionality to move categories
* BUGFIX #3363 [MediaBundle] Fixed compatibility with newest imagick version
* BUGFIX #3369 [DocumentManagerBundle] Adapt to latest ProxyManager
* ENHANCEMENT #3361 [ContentBundle] Replace "getReferencedUuids" with a reference-store
* FEATURE #3368 [ContentBundle] Used reference-store to avoid duplicated content via smart-content
* ENHANCEMENT #3360 [ContentBundle] Removed get-type from content-type-interface
* BUGFIX #3350 [RouteBundle] Fixed restore route when conflict resolver is disabled
* BUGFIX #3352 [RouteBundle] Added default value to route-created field
* ENHANCEMENT #3344 [ContentBundle] Added possibility to add additional attributes to "sulu:link"-tag
* ENHANCEMENT #3345 [CustomUrlBundle] Added redirect parameter of custom-url
* BUGFIX #3342 [ContentBundle] Fixed "sulu:content:types:dump" command
* BUGFIX #3338 [ContentBundle] Fixed overwrite data in content-serialization
* ENHANCEMENT #3329 [ContentBundle] Added possibility to set the published date for documents
* ENHANCEMENT #3332 [RouteBundle] Added parameter to disable conflict-resolver
* FEATURE #3326 [RouteBundle] Added auditable to route
* ENHANCEMENT #3310 [All] Fixed test setup to correct init all bundle tests correctly
* FEATURE #3310 [ContentBundle] Implemented `sulu:webspaces:copy` command
* BUGFIX #3322 [ContentBundle] Fixed validator for resource-locator
* ENHANCEMENT #3312 [SecurityBundle] Added configuration options to send reset password message
* ENHANCEMENT #3317 [All] Fixed jackalope conflict in composer.json
* ENHANCEMENT #3315 [RouteBundle] Added route-history controller
* ENHANCEMENT #3306 [DocumentManagerBundle] Adapted document-manager service definition for new NodeNameSlugifier
* ENHANCEMENT #3302 [ContentBundle] Added metadata to configure remove-live
* FEATURE #3300 [ContentBundle] Added onInvalid flag with ignore option to properties
* BUGFIX #3298 [WebsiteBundle] Fixed sitemap index provider without items
* ENHANCEMENT #3299 [RouteBundle] Added route-generator pool to combine different route-generators
* ENHANCEMENT #2944 [ContentBundle] Added general class for sulu form highlight section
* BUGFIX #3292 [WebsiteBundle] Fixed visibility of our logo in the web developer toolbar
* ENHANCEMENT #3291 [TagBundle] Added all parameters to tag manager
* BUGFIX #3290 [TagBundle] Fixed tag persistence with tag manager
* ENHANCEMENT #3284 [TagBundle] Added persistence to tag-bundle
* ENHANCEMENT #3280 [AudienceTargetBundle] Added rule evaluation
* ENHANCEMENT #3266 [ContentBundle] Added locale parameter to teaser-selection-list
* FEATURE #3278 [Util] Changed way to determine `sulu.version` to composer.lock
* FEATURE #3278 [Util] Introduced new parameter `app.version` read from composer.json
* ENHANCEMENT #3154 [All] Upgrade symfony to ^3.0

* 1.5.4 (2017-05-31)
* HOTFIX #3356 [AdminBundle] Updated husky to fix issue with ckeditor plugins
Expand Down
55 changes: 54 additions & 1 deletion UPGRADE.md
@@ -1,6 +1,59 @@
# Upgrade

# dev-develop
## dev-develop

### Social media profile fixtures

Add fixtures for social media profile of contacts. Run following command to
add the fixtures:

```bash
INSERT INTO co_social_media_profile_types (id, name) VALUES ('1', 'Facebook'), ('2', 'Twitter'), ('3', 'Instagram');
```

### ProxyManager

We had to update `ocramius/proxy-manager` in order to be compatible with PHP 7.
In case you have defined your own proxies, you should check the
[ProxyManager UPGRADE.md](https://github.com/Ocramius/ProxyManager/blob/master/UPGRADE.md).

### ContentTypeInterface

Following methods and constants was removed from `ContentTypeInterface`.

* `PRE_SAVE`
* `POST_SAVE`
* `getType()`
* `getReferenceUuids()`

For replacement of `getReferenceUuids` we have introduced the
[reference-store](http://docs.sulu.io/en/latest/bundles/content/reference-store.html)
and the `PreResolveContentTypeInterface::preResolve` method.

### Route-Table changed

The route-table was extended with auditable information. Run following command to
update the database schema.

```bash
bin/console doctrine:schema:update --force
```

### Highlight section styling changed

To make the highlight section reusable the css not longer depend on the `#content-form`
selector you should use now the `.form` class instead.

### Removed symfony/security-acl dependency

The following deprecated classes was removed:

* `Sulu\Component\Security\Authorization\AccessControl\PermissionMap`
* `Sulu\Component\Security\Authorization\AccessControl\SymfonyAccessControlManager`

Therefor the dependency `symfony/security-acl` was useless and removed.



## Symfony 3.3

Expand Down
5 changes: 3 additions & 2 deletions composer.json
@@ -1,6 +1,7 @@
{
"name": "sulu/sulu-standard",
"license": "MIT",
"version": "1.6.0-RC1",
"type": "project",
"description": "The sulu content management framework",
"autoload": {
Expand All @@ -22,9 +23,9 @@
"sensio/distribution-bundle": "~5.0",
"incenteev/composer-parameter-handler": "~2.0",
"sulu/document-manager": "@dev",
"sulu/sulu": "dev-develop as 1.5.0",
"sulu/sulu": "1.6.0-RC1",
"dantleech/phpcr-migrations-bundle": "~1.0",
"sulu/theme-bundle": "~1.2",
"sulu/theme-bundle": "1.3.0-RC1",

"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.8 || ~3.0",
Expand Down

0 comments on commit f018775

Please sign in to comment.