Skip to content

Commit 519b74d

Browse files
committed
1.9.655
1 parent 3ec81ca commit 519b74d

File tree

2 files changed

+79
-3
lines changed

2 files changed

+79
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Official web site: http://clojurescript.org
66

77
## Releases and dependency information ##
88

9-
Latest stable release: 1.9.562
9+
Latest stable release: 1.9.655
1010

1111
* [All released versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22clojurescript%22)
1212

1313
[Leiningen](http://github.com/technomancy/leiningen/) dependency information:
1414

1515
```
16-
[org.clojure/clojurescript "1.9.562"]
16+
[org.clojure/clojurescript "1.9.655"]
1717
```
1818

1919
[Maven](http://maven.apache.org) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.9.562
2222
<dependency>
2323
<groupId>org.clojure</groupId>
2424
<artifactId>clojurescript</artifactId>
25-
<version>1.9.562</version>
25+
<version>1.9.655</version>
2626
</dependency>
2727
```
2828

changes.md

+76
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,79 @@
1+
## 1.9.655
2+
3+
### Enhancements
4+
* CLJS-2108: faster set equivalence
5+
* CLJS-2099: Optimize apply by avoiding .apply
6+
* CLJS-2046: Optimize expression in call position
7+
* CLJS-1876: Faster reduce for PV, Subvec and ChunkedSeq
8+
* CLJS-2080: Faster equiv-map
9+
* CLJS-2066: Avoid analyzing named fn literal bodies twice
10+
* CLJS-2065: Improve analyzer munge performance
11+
12+
### Changes
13+
* CLJS-2130: Self-host: Add `:fn-invoke-direct` to public API docstrings
14+
* CLJS-2112: Iterator based reduce path
15+
* CLJS-2100: to-array calls seq too often
16+
* CLJS-2041: Compiler flag to drop Function.prototype.call invokes
17+
* CLJS-2093: inline ^:const var values
18+
* CLJS-2042: Variadic invoke calls array_seq inefficiently
19+
* CLJS-2003 remove redundant calls to `str` in munge/demunge
20+
* CLJS-1907: Improve error message from cljs.reader/read-string
21+
* CLJS-1724: Include IIterable in fast-path-protocols
22+
* CLJS-924: Better error message for mistaken use of 'def'
23+
* CLJS-1599: UUIDs are not equal for upper/lower case strings
24+
* NodeJS REPL accepts a :path opt to set NODE_PATH
25+
* CLJS-1886: RangedIterator should only be created from cljs.core.PersistentVector instances
26+
* CLJS-2068: MapEntry, RedNode and BlackNode are IComparable
27+
* CLJS-2073: Don't flush for every emitted line
28+
* CLJS-2089: Warn message wrong for recur to protocol with nil
29+
* CLJS-2085: defrecord recur method head target object
30+
* CLJS-1977: defrecord should use murmur hashing like Clojure
31+
* CLJS-2076: modules should support wildcard namespaces
32+
* CLJS-2078: add resolve macro
33+
34+
### Fixes
35+
* CLJS-2128: Fix regression in CLJS-1886
36+
* CLJS-2126: Add new compiler option :fn-invoke-direct to build-affecting options
37+
* CLJS-2054: Private core names still result in "already declared" warnings
38+
* CLJS-2125: Duplicate HOF invoke warnings if :static-fns true
39+
* CLJS-2119: s/form for s/& is qualified with `clojure.spec.alpha`
40+
* CLJS-2121: Self-host: Document string as valid name arg
41+
* CLJS-2124: Self-host: Tests failing wth Could not find tag parser for :cljs.spec.alpha
42+
* CLJS-2122: Self-host: Non-symbol ns names dumped into env
43+
* CLJS-2117: Self-host: Port CLJS-1989 to self-hosted
44+
* CLJS-1989: s/fdef expansion side effect fails when load cached source
45+
* CLJS-2116: Need to handle un-namespaced symbol when evaluating `foo.core
46+
* CLJS-2109: incorrect syntax-quote symbol resolution (resolve-symbol 'clojure.core) -> 'clojure/core
47+
* CLJS-2113: nth function produces different results from clojure when using a negative index on a sequence
48+
* CLJS-2115: Pass not-found in the native-satisfies? branch of nth
49+
* CLJS-2111: Transit analysis caching broken for JSValue or regex
50+
* CLJS-2101: Undeclared var in do chain of defs
51+
* CLJS-2104: Const-replaced exprs do not emit js "return"
52+
* CLJS-1992: declare after def should have no effect
53+
* CLJS-1251: Missing semicolons when emitting deftype and defrecord mistaken use of 'def'
54+
* CLJS-1685: Incorrectly lazy subvec when start param is nil
55+
* CLJS-1641: Multi-arity defn copies arguments unnecessarily for all cases
56+
* CLJS-2092: Redundant call to equiv-map in PAM.-equiv
57+
* Check for compilation success, and lib folder
58+
* CLJS-2030: Case with grouped keyword test emit result-expr multiple times
59+
* CLJS-2094: Predicates unit tests constructs a uuid with nil
60+
* CLJS-1891: UUID.toString can return non-string
61+
* CLJS-2072: Eliminate reflection in cljs.js-deps/build-index
62+
* CLJS-2012: Find on PHM with nil entry always returns nil entry
63+
* CLJS-2057: fix language-in options (es6 deprecated and add missing es2016)
64+
* CLJS-2060: Backport CLJ-2141 Return only true/false from qualified-* predicates
65+
* CLJS-2091: reify docstring ISeqable example needs correction
66+
* CLJS-2088: fix caching collision between macros ns and regular ns in boostrap
67+
* CLJS-2036: Relative path exception thrown when :preloads requires a :foreign-lib
68+
* CLJS-2083: Test equiv-map for maps which do not impl IKVReduce
69+
* CLJS-2081: Self-host: Regression with CLJS-2079
70+
* CLJS-2079: Records and maps are not equal
71+
* CLJS-2075: PersistentTreeMap.reduce-kv does not honor reduced?
72+
* Browser REPL regression
73+
* CLJS-2069: Self-host: automatic `clojure` -> `cljs` aliasing doesn't work when loading macro namespaces
74+
* CLJS-2067: reduce-kv / inode-kv-reduce fails to honor reduced?
75+
* CLJS-2056: Self-host: test-self-parity failing wrt cljs.core/fn symbol
76+
177
## 1.9.562
278

379
### Enhancements

0 commit comments

Comments
 (0)