Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 1.0.1 (2026-07-14)
Dependency-security patch release — CVE-clearing pins over Finagle 24.2.0's frozen transitive set. No API or behavior changes.
- **netty** pinned to `4.1.135.Final` across the aligned set (clears 56 alerts).
- **jackson** core/databind/annotations/module-scala_2.13 aligned at `2.18.9` (GHSA-5jmj-h7xm-6q6v). All four move together because `jackson-module-scala` enforces a matching `jackson-databind` version at runtime.
- **scala-library** `2.13.16` (critical alerts).
- **snakeyaml** `2.4` (CVE-2022-1471 RCE).
- **aws-java-sdk-s3/core** `1.12.797` (drops vulnerable transitive `ion-java`).
- **plexus-utils** `3.6.1`, **guava** `32.0.1-jre`, **httpclient** `4.5.14`, **gson** `2.10.1`.
- `libthrift` remains `0.12.0`: scrooge `24.2.0` codegen requires the pre-`0.13` `TProcessor.process` signature, so the patched `0.23.0` is not adoptable (vulnerable TLS transport is unused — finagle-clojure does TLS via Finagle's Netty transport).

## 1.0.0 (2026-07-03)
- Bump Finagle and scrooge to `24.2.0` (the final Finagle release) and move the built modules (`core`, `http`, `thrift`, `lein-finagle-clojure`) to Scala 2.13 artifacts. `finagle-clojure-template` is not part of the build and remains stale (it predates the Nubank fork).
- **Breaking**: remove `finagle-clojure.builder.server` and `finagle-clojure.builder.client`. Finagle removed the underlying `ServerBuilder` API in `21.8.0`. Use the stack pattern instead (`finagle-clojure.http.server`/`finagle-clojure.http.client`); `common-finagle >= 11.38.0` already does.
Expand Down
2 changes: 1 addition & 1 deletion core/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject finagle-clojure/core "1.0.1-SNAPSHOT"
(defproject finagle-clojure/core "1.0.1"
:description "A light wrapper around Finagle & Twitter Util for Clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
Expand Down
4 changes: 2 additions & 2 deletions http/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject finagle-clojure/http "1.0.1-SNAPSHOT"
(defproject finagle-clojure/http "1.0.1"
:description "A light wrapper around Finagle HTTP for Clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
Expand All @@ -15,7 +15,7 @@
;; finagle 24.2.0 (the last Finagle release ever published); all netty
;; artifacts must stay aligned on the same version, including the
;; classified native-epoll jars (conflict resolution is per classifier)
:dependencies [[finagle-clojure/core "1.0.1-SNAPSHOT"]
:dependencies [[finagle-clojure/core "1.0.1"]
[com.twitter/finagle-http_2.13 "24.2.0"]
[com.twitter/finagle-stats_2.13 "24.2.0"]
[org.scala-lang/scala-library "2.13.16"]
Expand Down
2 changes: 1 addition & 1 deletion lein-finagle-clojure/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-finagle-clojure "1.0.1-SNAPSHOT"
(defproject lein-finagle-clojure "1.0.1"
:description "A lein plugin for working with finagle-clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject finagle-clojure "1.0.1-SNAPSHOT"
(defproject finagle-clojure "1.0.1"
:description "A light wrapper around Finagle for Clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
Expand Down
4 changes: 2 additions & 2 deletions thrift/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject finagle-clojure/thrift "1.0.1-SNAPSHOT"
(defproject finagle-clojure/thrift "1.0.1"
:description "A light wrapper around finagle-thrift for Clojure"
:url "https://github.com/twitter/finagle-clojure"
:license {:name "Apache License, Version 2.0"
Expand Down Expand Up @@ -36,7 +36,7 @@
;; finagle 24.2.0 (the last Finagle release ever published); all netty
;; artifacts must stay aligned on the same version, including the
;; classified native-epoll jars (conflict resolution is per classifier)
:dependencies [[finagle-clojure/core "1.0.1-SNAPSHOT"]
:dependencies [[finagle-clojure/core "1.0.1"]
[com.twitter/finagle-thrift_2.13 "24.2.0"]
;; scrooge 24.2.0 generates `boolean TProcessor.process`; libthrift 0.13+
;; changed it to void, so 0.12.0 is the newest compatible version
Expand Down