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

Commit

Permalink
bumped and built versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danrot committed Jul 28, 2016
1 parent 2a5ea26 commit f098fdd
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 32 deletions.
36 changes: 26 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
CHANGELOG for Sulu CMF
======================

* 1.3.0-RC2 (2016-07-28)
* BUGFIX #2692 [PreviewBundle] Fixed the generation of log and cache directory when context is part of path
* BUGFIX #2697 [ContentBundle]  Deindex page after unpublishing
* BUGFIX #2684 [ContentBundle] Disabled options in toolbar item which are not avialable when editing a page
* FEATURE #2689 [ContentBundle] Added functionality to delete a draft
* FEATURE #2559 [CoreBundle] Renamed parameters.yml to parameters.yml.dist so you can use a local version
* BUGFIX #2678 [ContentBundle] Fixed error caused by draft label when opening a ghost page
* BUGFIX #2668 [ContentBundle] Fixed resource locator generation for pages with unpublished parents
* BUGFIX #2675 [ContactBundle] Fixed findGetAll-method of ContactRepository
* ENHANCEMENT #2674 [SearchBundle] Added a WebsiteSearchController
* BUGFIX #2524 [ContactBundle] Fixed contact-serialization for smart-content
* BUGFIX #2632 [ContentBundle] prevent item select when ordering a column (husky)
* BUGFIX #2663 [MediaBundle] made masonry view work for media with no thumbnail
* ENHANCEMENT #2665 [Webspace] Introduced DelegatingFileLoader for webspace configurations
* FEATURE #2669 [RouteBundle] Added is-published method for route-defaults-provider

* 1.3.0-RC1 (2016-07-22)
* HOTFIX #2632 [Content] Fix usage of document inspector in StructureBridge
* BUGFIX #2655 [MediaBundle] Fixed media selection for none images and selected media list
Expand Down Expand Up @@ -46,7 +62,7 @@ CHANGELOG for Sulu CMF
* BUGFIX #2530 [AdminBundle] Included husky build which fixes the login translation issue
* FEATURE #2528 [AdminBundle] Added form-abstraction for simple data-mapper forms
* ENHANCEMENT #2526 [SearchBundle] Introduced contexts for indexes to restrict selections
* BUGFIX #2104 [ContentBundle] Show Webspace node on 'copy' and 'move' overlays
* BUGFIX #2104 [ContentBundle] Show Webspace node on 'copy' and 'move' overlays
* ENHANCEMENT #2520 [ContentBundle] Delete routes using the DocumentManager
* BUGFIX #2523 [SecurityBundle] Fixed error with non-visible permission types in matrix
* ENHANCEMENT #2522 [All] Use correct default phpcr session
Expand Down Expand Up @@ -98,15 +114,15 @@ CHANGELOG for Sulu CMF
* BUGFIX #2379 [MediaBundle]  Inject CategoryRepository in MediaManager to avoid using removed constant
* BUGFIX #2370 [TestBundle] Use Doctrine DBAL as default PHPCR-Backend
* BUGFIX #2369 [All] Install the symfony phpunit bridge again
* ENHANCEMENT #2356 [PreviewBundle] Added default error message
* BUGFIX #2354 [ContentBundle] Fixed javascript error preview is null for new page form
* ENHANCEMENT #2356 [PreviewBundle] Added default error message
* BUGFIX #2354 [ContentBundle] Fixed javascript error preview is null for new page form
* ENHANCEMENT #2338 [MarkupBundle] Implemented markup bundle
* FEATURE #2333 [PreviewBundle] Added preview render error templates
* ENHANCEMENT #2353 [WebsocketBundle] Changed configuration to default disable websocket
* BUGFIX #2351 [ContentBundle] Removed strange condition for data-changed
* FEATURE #2333 [PreviewBundle] Added preview render error templates
* ENHANCEMENT #2353 [WebsocketBundle] Changed configuration to default disable websocket
* BUGFIX #2351 [ContentBundle] Removed strange condition for data-changed
* BUGFIX #2352 [CoreBundle] Fixed RequestAnalyzer for use with ESI
* FEATURE #2349 [RouteBundle] Added route-bundle
* FEATURE #2299 [PreviewBundle] Implemented preview bundle
* FEATURE #2349 [RouteBundle] Added route-bundle
* FEATURE #2299 [PreviewBundle] Implemented preview bundle
* ENHANCEMENT #2289 [ContentBundle] Added display options support to date content type
* ENHANCEMENT #2316 [Symfony] Added collector compiler pass
* ENHANCEMENT #2279 [Webspace] Do not hide invalid webspace exceptions
Expand Down Expand Up @@ -143,7 +159,7 @@ CHANGELOG for Sulu CMF
* HOTFIX #2498 [TestBundle] Fixed TestUserProvider to create accounts with repository to support
sulu inheritance
* BUGFIX #2389 [MediaBundle] Removed twice adding of navigation item
* HOTFIX #2481 [WebsiteBundle] Fixed handling of non-default formats in error pages
* HOTFIX #2481 [WebsiteBundle] Fixed handling of non-default formats in error pages
* HOTFIX #2467 [MediaBundle] Fixed media-selection-overlay missing locale
* HOTFIX #2460 [MediaBundle] Fixed deprecation of getEntityManager in MediaPreviewController
* HOTFIX #2454 [MediaBundle] Fixed inset image scale image-size 0
Expand All @@ -162,7 +178,7 @@ CHANGELOG for Sulu CMF
* HOTFIX #2376 [ContentBundle] Added cleanup for structure reindex provider
* HOTFIX #2382 [ResourceBundle] Added column definitions to resource-bundle
* HOTFIX #2384 [WebsiteBundle] Added condition to custom-routes to match only full-matches

* 1.2.2 (2016-05-09)
* HOTFIX #2375 [SecurityBundle] Fixed visibility of entries in language dropdown
* ENHANCEMENT #2373 [MediaBundle] Added batch indexing for medias
Expand Down
54 changes: 49 additions & 5 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# Upgrade

## 1.3.0-RC2

### SearchController

The `SearchController` has been moved from sulu-standard to sulu. Therefore the
new template type `search` has been introduced. Just define the twig template
you want to use for the search in your webspace configuration:

```xml
<templates>
<template type="search">ClientWebsiteBundle:views:query.html.twig</template>
</templates>
```

The name of the route also changed from `website_search` to
`sulu_search.website_search`, because the controller is located in the
SuluSearchBundle now.

### Webspace Configuration

The configuration schema for webspaces has changed. Instead of
`error-templates` you have to define `templates` now with a certain type.
For the error templates this type is `error` for the default error, and
`error-<code>` for certain error codes.

Before:
```xml
<error-templates>
<error-template code="404">SomeBundle:view:error404.html.twig</error-template>
<error-template default="true">SomeBundle:view:error.html.twig</error-template>
</error-templates>
```

After:
```xml
<templates>
<template type="error-404">SomeBundle:views:error404.html.twig</template>
<template type="error">SomeBundle:views:error.html.twig</template>
</templates>
```

This change only affects the files which use the 1.1 version of the webspace
schema definition.

## 1.3.0-RC1

### PHPCR
Expand All @@ -22,7 +66,7 @@ The `orderBefore` method of the `NodeRepository` has been removed. Use the
### LocalizationProvider
The core LocalizationProvider (which provided the system locales)
got removed. At this point the WebspaceLocalizationProvider is the
only LocalizationProvider in Sulu. If the system locales
only LocalizationProvider in Sulu. If the system locales
(locales in which translations for the admin panel are available) are
needed, please refer directly to the config `sulu_core.translations`.

Expand Down Expand Up @@ -112,22 +156,22 @@ indexed as title, although this value was already the default:

### Webspaces

We have deprecated (1.0) the schema for webspaces and created a new version (1.1) of it.
We have deprecated (1.0) the schema for webspaces and created a new version (1.1) of it.

```
<?xml version="1.0" encoding="utf-8"?>
<webspace xmlns="http://schemas.sulu.io/webspace/webspace"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.sulu.io/webspace/webspace http://schemas.sulu.io/webspace/webspace-1.1.xsd">
...
</webspace>
```

You should update your webspace.xml files soonish. To do that you simply have to move the `default-templates` and
`error-templates` from the `theme` node and put it into the `webspace` node after the `theme`.

The theme is now optional and can be used with a theme-bundle. Sulu has extracted this functionality to make it
replaceable with any theming bundle you want. To keep the old directory-structure and functionality please read the
next part of this file.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"type": "project",
"description": "The sulu content management framework",
"version": "1.3.0-RC1",
"version": "1.3.0-RC2",
"autoload": {
"psr-0": {
"": "src/"
Expand All @@ -23,7 +23,7 @@
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"sulu/sulu": "dev-develop",
"sulu/sulu": "1.3.0-RC2",
"sulu/theme-bundle": "1.0.*",
"sulu/document-manager": "@dev",
"symfony-cmf/core-bundle": "1.2.*",
Expand Down
30 changes: 15 additions & 15 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f098fdd

Please sign in to comment.