Skip to content

Commit

Permalink
1.11.132
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Jan 23, 2024
1 parent 54c27fb commit 26dea31
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ Official web site: https://clojurescript.org

## Releases and dependency information ##

Latest stable release: 1.11.60
Latest stable release: 1.11.132

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

[Clojure deps.edn](http://clojure.org/guides/deps_and_cli) dependency information:

```
org.clojure/clojurescript {:mvn/version "1.11.60"}
org.clojure/clojurescript {:mvn/version "1.11.132"}
```

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

```
[org.clojure/clojurescript "1.11.60"]
[org.clojure/clojurescript "1.11.132"]
```

[Maven](https://maven.apache.org) dependency information:
Expand All @@ -28,7 +28,7 @@ Latest stable release: 1.11.60
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojurescript</artifactId>
<version>1.11.60</version>
<version>1.11.132</version>
</dependency>
```

Expand Down
33 changes: 33 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
## 1.11.132

### Fixes
* CLJS-3410: JavaScript double values should not hash to the same result
* CLJS-3381: Invokable JS namespaces used as constructors not hinted properly
* CLJS-3395: `(set! a -x false)` doesn't work
* CLJS-3399: :as-alias does not work with symbols
* CLJS-3401: dedupe '+ and '_PLUS symbols with :optimize-constants
* CLJS-3400: macroexpand does not expand and and or without args correctly
* CLJS-3398: Docstring of with-redefs should mention usage of ^:dynamic in production
* CLJS-3386: defn varargs argument should be nil when no varargs are passed
* CLJS-3384: get-in should not unreduce values.

### Changes
* CLJS-3378: Change default :language-in to :ecmascript-next
* CLJS-3385: Extend empty? to counted? colls that arent seqable, such as transients
* CLJS-3327 Add :node-modules-dirs configuration
* CLJS-3391: add cljs.test/run-test
* CLJS-3369: Speed up random-uuid by generating 4 digits at a time
* CLJS-3014: Promote Error->map to be a core fn
* CLJS-3394: Add ECMASCRIPT options for 2018-2021
* CLJS-2268: Make clojure.string/escape consistent with Clojure
* Bump closure lib to 2023 release
* CLJS-3407: bump tools.reader to 1.3.7
* remove EXPERIMENTAL from ES6 iterator support
* CLJS-3406 implement reset-vals! and swap-vals! through protocol
* CLJS-3363: reduce-kv on seq of map entries
* CLJS-3393: Efficient drop, partition for persistent/algo colls
* CLJS-3408: Handle @extends in externs
* CLJS-3392: datafy support for js/Error and ExceptionInfo
* CLJS-3379: Add support for node_modules with .cjs extension
* CLJS-3387: Browser repl unable to serve wasm files

## 1.11.60

### Fixes
Expand Down

0 comments on commit 26dea31

Please sign in to comment.