Skip to content

Commit 77cdda6

Browse files
committed
links
1 parent ff42ff3 commit 77cdda6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/news/2025-11-24-release.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ This a major feature release with a significant number of enhancements. Before d
1212

1313
For a complete list of fixes, changes, and enhancements to
1414
ClojureScript see
15-
https://github.com/clojure/clojurescript/blob/master/changes.md#1.12.108[here]
15+
https://github.com/clojure/clojurescript/blob/master/changes.md#1.12.110[here]
1616

1717
## ECMAScript 2016 Language Specification
1818

19-
ClojureScript, outside of a few small exceptions, has generated ECMAScript 3rd edition (1999) compatible code. We avoided any newer constructs because historically they offered undesirable outcomes: increased code size due to polyfilling and decreased performance due to yet unoptimized paths in JavaScript virtual machines.
19+
ClojureScript, outside of a few small exceptions, has generated https://www.ecma-international.org/wp-content/uploads/ECMA-262_3rd_edition_december_1999.pdf[ECMAScript 3rd edition (1999)] compatible code. We avoided any newer constructs because historically they offered undesirable outcomes: increased code size due to polyfilling and decreased performance due to yet unoptimized paths in JavaScript virtual machines.
2020

21-
Nine years have passed since the ECMAScript 2016 was released and the major JavaScript virtual machines now offer great performance across the specification. While language constructs like `let` surprisingly https://vincentrolfs.dev/blog/ts-var[fail] to deliver much value for ClojureScript, features like `Proxy` and `Reflect` solve real problems at low, low prices.
21+
Nine years have passed since the https://262.ecma-international.org/7.0/[ECMAScript 2016] was released and the major JavaScript virtual machines now offer great performance across the specification. While language constructs like `let` surprisingly https://vincentrolfs.dev/blog/ts-var[fail] to deliver much value for ClojureScript, features like https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy[Proxy] and https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect[Reflect] solve real problems at low, low prices.
2222

2323
ClojureScript will use ES2016 moving foward where it delivers value and performance benefits.
2424

@@ -43,7 +43,7 @@ This feature needs commmunity tire kicking, but we believe this approach offers
4343
4444
## Clojure Method Values
4545
46-
ClojureScript now supports Clojure 1.12 method value syntax as well as static field syntax. `PersistentVector/EMPTY` works, but also `String/.toUpperCase` and `Object/new`. Thanks to ES2016 `Reflect` we do not need manual `:param-tags` for disambiguation, and it covers the many cases where type information will simply not be available to the ClojureScript compiler.
46+
ClojureScript now supports https://clojure.org/reference/java_interop#methodvalues[Clojure 1.12 method value] syntax as well as static field syntax. `PersistentVector/EMPTY` works, but also `String/.toUpperCase` and `Object/new`. Thanks to ES2016 `Reflect` we do not need manual `:param-tags` for disambiguation, and it covers the many cases where type information will simply not be available to the ClojureScript compiler.
4747
4848
[source,clojure]
4949
```
@@ -83,7 +83,7 @@ The other code size issue in ClojureScript programs is printing. While required
8383
8484
Combining these two new experimental flags cuts the starting artifact size by two thirds. However, it's important to understand these flags cannot be used to make *large* ClojureScript programs smaller - once you have enough dependencies or rely on enough features, the savings provided by `:lite-mode` are a wash.
8585
86-
But for people who know that they want to build something very compact, yet not give up on the bits of `cljs.core` and Google Closure Library that they need, these two new flags offer great value.
86+
But for people who know that they want to build something very compact, yet not give up on useful bits of `cljs.core` and Google Closure Library, these two new flags deliver more control.
8787
8888
The following program is 6K Brotli compressed with `:lite-mode` and `:elide-to-string`.
8989

0 commit comments

Comments
 (0)