Skip to content

Commit

Permalink
1.11.51
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed May 13, 2022
1 parent d1809c5 commit 970a783
Showing 2 changed files with 39 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -6,14 +6,14 @@ Official web site: http://clojurescript.org

## Releases and dependency information ##

Latest stable release: 1.11.4
Latest stable release: 1.11.51

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

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

```
[org.clojure/clojurescript "1.11.4"]
[org.clojure/clojurescript "1.11.51"]
```

[Maven](http://maven.apache.org) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.11.4
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.11.4</version>
<version>1.11.51</version>
</dependency>
```

36 changes: 36 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
## 1.11.51

### Changes
* CLJS-3372: Vendorize data.json, transit-clj, and tools.reader
data.json and transit-clj are no longer dependencies. CLJS-3375 bridges
tools.reader for backwards compatibility
* Clojure 1.10 minimum version
* Update Google Closure Compiler, transit-java, tools.reader dependencies to latest
* CLJS-2820 Compile cljs.loader regardless of whether :modules are used
* CLJS-3370: improved uuid regex to only accept hex characters
* Update / clarify docstrings, CLJS-3358, CLJS-3359, CLJS-3360, CLJS-3361, CLJS-3364
* CLJS-3354: map-invert should use transients and reduce-kv instead of reduce
* CLJS-3350: Update test.check dependency
* CLJS-3294: data_readers.cljc doesn't provide a way to have target-specific
behaviour

### Fixes
* CLJS-3373: Externs Inference issue with vars invoked from foreign libs
* CLJS-3368: let binding can shadow globals, leading to strange behavior
* CLJS-3367: Backward conflict test in prefer-method causes incorrect exception
* CLJS-3371: Invalid warning on record constructor
* Fix apply of IFn for more than 20 arguments
* CLJS-3288: selfhost: *eval-fn* not bound for :js sources
* CLJS-3362: some-fn has different short-circuiting when using 3 predicates
* CLJS-3356: halt-when not usable within #'c.c/into
* CLJS-3352: Self-host negative zero emitted as positive zero
* CLJS-3319: make PersistentHashMap release inodes correctly

### Enhancemnets
* CLJS-3348: Implement new functions for parity with Clojure 1.11
* CLJS-3353: Add the new iteration function introduced in Clojure 1.11
* CLJS-3347: Create clojure.math namespace
* CLJS-3299: port CLJ-2603
* CLJS-3346: :as-alias
* add update-vals & update-keys

## 1.11.4

### Fixes

0 comments on commit 970a783

Please sign in to comment.