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
wachterjohannes committed Nov 14, 2017
1 parent 228bc42 commit 7e5a8a8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
CHANGELOG for Sulu CMF
======================

* 1.6.7 (2017-11-14)
* BUGFIX sulu/sulu#3614 [WebsiteBundle] Fixed content-route tests for umlauts
* ENHANCEMENT sulu/sulu#3608 [WebsiteBundle] Analytics: Added possibility to determine the position of content (head open, head close, body open, body close)
* HOTFIX sulu/sulu#3610 [ContactBundle] ContactSelectionContentType: Fixed bug in serialization with missing category data
* HOTFIX sulu/sulu#3597 [WebsiteBundle] Only display analytics in the actual environment
* HOTFIX sulu/sulu#3598 [SecurityBundle] Fixed misleading security warning message
* HOTFIX sulu/sulu#3573 [RouteBundle] Added rawurldecode to decode path-info before searching for route
* HOTFIX sulu/sulu#3573 [ContentBundle] Added rawurldecode to decode path-info before searching for route
* HOTFIX sulu/sulu#3573 [CustomUrlBundle] Added rawurldecode to decode path-info before searching for route

* 1.6.6 (2017-10-12)
* ENHANCEMENT #3557 [ContentBundle] Added option to decorate index name for document types
* HOTFIX #3555 [ContentBundle] Fixed "awkward" state of documents after copy-locale
Expand Down
14 changes: 14 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Upgrade

## 1.6.7

### Custom Analytics

We've added the possibility to determine the position of the content.
The '<script></script>' wrapper was also removed from the custom template.
That means the user has to add this wrapper when it's needed.

Changes to existing custom analytics needs to be deployed with following SQL statement on your database:

```sql
UPDATE we_analytics w SET content = CONCAT('{"position":"bodyClose","value":"<script>', SUBSTRING(content,2,LENGTH(content) -2), '</script>"}') WHERE w.type = 'custom';
```

## 1.6.4

### File Version - Tag Cascading
Expand Down

0 comments on commit 7e5a8a8

Please sign in to comment.