mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Update unicode asset sanitization tests (and History.md).
This commit is contained in:
@@ -33,6 +33,11 @@
|
||||
|
||||
* The `reify` npm package has been upgraded to version 0.11.22.
|
||||
|
||||
* Illegal characters in paths written in build output directories will now
|
||||
be replaced with `_`s rather than removed, so that file and directory
|
||||
names consisting of only illegal characters do not become empty
|
||||
strings. [PR #8765](https://github.com/meteor/meteor/pull/8765).
|
||||
|
||||
## v1.5, 2017-05-30
|
||||
|
||||
* The `meteor-base` package implies a new `dynamic-import` package, which
|
||||
|
||||
@@ -23,9 +23,9 @@ selftest.define("assets - unicode asset names are allowed", () => {
|
||||
run.match('1 - getText: Hello world!');
|
||||
run.match('2 - getText: Hello world!');
|
||||
run.match('3 - getText: Hello world!');
|
||||
run.match(/1 - absoluteFilePath:(.*)maaverde.txt/);
|
||||
run.match(/2 - absoluteFilePath:(.*)maaverde.txt/);
|
||||
run.match(/3 - absoluteFilePath:(.*)maaverde.txt/);
|
||||
run.match(/1 - absoluteFilePath:(.*)ma_a_verde.txt/);
|
||||
run.match(/2 - absoluteFilePath:(.*)ma_a_verde.txt/);
|
||||
run.match(/3 - absoluteFilePath:(.*)ma_a_verde.txt/);
|
||||
run.stop();
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user