Skip to content

Commit

Permalink
chore(release): 3.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kisenka committed Aug 31, 2017
1 parent 388ce74 commit a1ae646
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="3.2.5"></a>
## [3.2.5](https://github.com/kisenka/svg-sprite-loader/compare/v3.2.4...v3.2.5) (2017-08-31)


### Bug Fixes

* **runtime:** don't encode "(", ")" and "~" symbols when replacing urls in <use> references ([388ce74](https://github.com/kisenka/svg-sprite-loader/commit/388ce74))



<a name="3.2.4"></a>
## [3.2.4](https://github.com/kisenka/svg-sprite-loader/compare/v3.2.3...v3.2.4) (2017-08-20)

Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/browser-sprite-with-dll/build/dll.js
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ var xLinkNS = namespaces_1.xlink.uri;
var xLinkAttrName = 'xlink:href';

// eslint-disable-next-line no-useless-escape
var specialUrlCharsPattern = /[(){}|\\\^~\[\]`"<>]/g;
var specialUrlCharsPattern = /[{}|\\\^\[\]`"<>]/g;

function encoder(url) {
return url.replace(specialUrlCharsPattern, function (match) {
Expand Down
2 changes: 1 addition & 1 deletion examples/browser-sprite/build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ var xLinkNS = namespaces_1.xlink.uri;
var xLinkAttrName = 'xlink:href';

// eslint-disable-next-line no-useless-escape
var specialUrlCharsPattern = /[(){}|\\\^~\[\]`"<>]/g;
var specialUrlCharsPattern = /[{}|\\\^\[\]`"<>]/g;

function encoder(url) {
return url.replace(specialUrlCharsPattern, function (match) {
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-runtime-generator/build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10411,7 +10411,7 @@ var xLinkNS = namespaces_1.xlink.uri;
var xLinkAttrName = 'xlink:href';

// eslint-disable-next-line no-useless-escape
var specialUrlCharsPattern = /[(){}|\\\^~\[\]`"<>]/g;
var specialUrlCharsPattern = /[{}|\\\^\[\]`"<>]/g;

function encoder(url) {
return url.replace(specialUrlCharsPattern, function (match) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svg-sprite-loader",
"version": "3.2.4",
"version": "3.2.5",
"description": "Webpack loader for creating SVG sprites",
"keywords": [
"svg",
Expand Down

0 comments on commit a1ae646

Please sign in to comment.