[Pkg-javascript-commits] [uglifyjs] branch master updated (bdee2ad -> d133806)
Jonas Smedegaard
dr at jones.dk
Thu Aug 17 23:06:42 UTC 2017
This is an automated email from the git hooks/post-receive script.
js pushed a change to branch master
in repository uglifyjs.
from bdee2ad Fix help (Closes: #847642)
new f9ddf4a Update watch file: Tighten to track only 2.x.x.
new 43ad4e9 fix variable substitution (#1816)
new 6ad823d fix `reduce_vars` within try-block (#1818)
new d0faa47 fix `unused` on labeled for-loop (#1831)
new 2c21dc5 fix `unused` on for-in statements (#1843)
new 7305ba0 fix `unsafe` on `evaluate` of `reduce_vars` (#1870)
new dda4eb9 backport test scripts
new d8106b6 fix label-related bugs (#1835)
new 90ed544 fix test for #1865 (#1873)
new d08c772 Merge pull request #1871 from alexlamsl/v2.8.23
new 5dfda6e v2.8.23
new 487ae8e change `harmony` references to `uglify-es` in README (#1902)
new 13e5e33 document known issues with `const` (#1916)
new aa7e878 fix invalid transform on `const` (#1919)
new f631d64 avoid `arguments` and `eval` in `reduce_vars` (#1924)
new 9a98513 add documentation for `side_effects` & `[#@]__PURE__` (#1925)
new c736834 Merge pull request #1921 from alexlamsl/v2.8.24
new 87f8a48 v2.8.24
new 4027a0c fix parser bugs & CLI reporting (#1827)
new 9f5a602 clarify wording (#1931)
new d0b0aec document 3 max passes (#1928)
new a8c67ea fix bugs with getter/setter (#1926)
new 24967b8 fix & improve coverage of `estree` (#1935)
new 3ee1464 Merge pull request #1938 from alexlamsl/v2.8.25
new 1ca43bc v2.8.25
new ecb63ad improve keyword-related parser errors (#1941)
new 6cd580d fix parsing of property access after new line (#1944)
new 93d4224 Merge pull request #1947 from alexlamsl/v2.8.26
new 4cbf5a7 v2.8.26
new 957c54b introduce `unsafe_regexp` (#1970)
new a7c987a Merge pull request #1971 from alexlamsl/v2.8.27
new 75e2748 v2.8.27
new 3818a9e fix non-identifier getter/setter name (#2041)
new 06296be add tests for `AST_SymbolAccessor` (#2049)
new 092d027 Merge pull request #2048 from alexlamsl/v2.8.28
new 23876a8 v2.8.28
new 0af80ec v2.8.29
new c92db1a New upstream version 2.8.29
new 4a5638b Updated version 2.8.29 from 'upstream/2.8.29'
new 682f458 Modernize Vcs-Browser field: Use git (not cgit) in path.
new 82f2d9d Unfuzz patch 1001.
new ed16902 Declare compliance with Debian Policy 4.0.0.
new 78d8910 Modernize git-buildpackage config: Filter any .git* file.
new 705bbf0 Prepare for release: Update changelog, control file and copyright hints.
new 9e8e3e6 Merge branch 'master' of git+ssh://git.debian.org/git/pkg-javascript/uglifyjs
new 10852fb Declare compliance with Debian Policy 4.0.1.
new c880b8c Rename patch to follow naming micro policy.
new 6cab39b Add DEP-3 patch header.
new 2eb6604 Advertise DEP3 format in patch headers.
new d133806 Prepare for release: Update changelog, control file and copyright hints.
The 50 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 -
.travis.yml | 1 -
README.md | 48 +--
bin/uglifyjs | 16 +-
debian/changelog | 30 +-
debian/control | 4 +-
debian/control.in | 4 +-
debian/copyright_hints | 10 +
debian/gbp.conf | 4 +-
debian/patches/1001_break_dep_loop.patch | 5 +-
debian/patches/1002_avoid_timeout_in_tests.patch | 3 +-
debian/patches/1003_fix_manpage_help_output.patch | 18 +
debian/patches/2002_node_conflict.patch | 3 +-
debian/patches/2100_NMU_fix_help.patch | 13 -
debian/patches/series | 2 +-
debian/watch | 2 +-
lib/ast.js | 13 +-
lib/compress.js | 252 ++++++++----
lib/mozilla-ast.js | 52 +--
lib/output.js | 35 +-
lib/parse.js | 113 ++++--
lib/scope.js | 5 -
package.json | 7 +-
test/benchmark.js | 4 +-
test/compress/collapse_vars.js | 46 +++
test/compress/dead-code.js | 16 +
test/compress/drop-unused.js | 60 +++
test/compress/evaluate.js | 47 +++
test/compress/functions.js | 54 +++
test/compress/issue-1656.js | 6 +-
test/compress/issue-1833.js | 134 +++++++
test/compress/issue-1943.js | 31 ++
test/compress/properties.js | 102 +++++
test/compress/pure_getters.js | 59 +++
test/compress/reduce_vars.js | 261 ++++++++++--
test/compress/sequences.js | 24 ++
test/input/invalid/assign_4.js | 1 +
test/input/invalid/dot_1.js | 1 +
test/input/invalid/dot_2.js | 1 +
test/input/invalid/dot_3.js | 1 +
test/input/invalid/else.js | 1 +
test/input/invalid/object.js | 1 +
test/input/invalid/return.js | 1 +
test/mocha/accessorTokens-1492.js | 2 +-
test/mocha/cli.js | 305 +++++++++-----
test/mocha/directives.js | 16 +-
test/mocha/getter-setter.js | 2 +-
test/mozilla-ast.js | 174 ++++----
test/run-tests.js | 6 -
test/sandbox.js | 38 +-
test/ufuzz.js | 469 +++++++++++++++-------
51 files changed, 1867 insertions(+), 637 deletions(-)
delete mode 100644 .gitignore
create mode 100644 debian/patches/1003_fix_manpage_help_output.patch
delete mode 100644 debian/patches/2100_NMU_fix_help.patch
create mode 100644 test/compress/issue-1833.js
create mode 100644 test/compress/issue-1943.js
create mode 100644 test/input/invalid/assign_4.js
create mode 100644 test/input/invalid/dot_1.js
create mode 100644 test/input/invalid/dot_2.js
create mode 100644 test/input/invalid/dot_3.js
create mode 100644 test/input/invalid/else.js
create mode 100644 test/input/invalid/object.js
create mode 100644 test/input/invalid/return.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list