Skip to content

Commit 71a7f17

Browse files
committed
Upgrade regex to 1.1.0
Fixes #915.
1 parent 0970d07 commit 71a7f17

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

dependabot/deps-list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ medley/medley 0.8.3 (EPL-1.0)
7777
meta-merge/meta-merge 1.0.0 (EPL-1.0)
7878
metosin/malli 0.20.0 (EPL-2.0)
7979
mvxcvi/arrangement 2.1.0 (Public Domain)
80-
net.cgrand/regex 1.0.1
80+
net.cgrand/regex 1.1.0
8181
one-time/one-time 0.8.0 (EPL-1.0)
8282
org.apache.commons/commons-email 1.6.0 (Apache-2.0)
8383
org.apache.commons/commons-fileupload2-core 2.0.0-M4 (Apache-2.0)

dependabot/deps-tree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ metosin/malli 0.20.0
233233
com.github.seancorfield/next.jdbc 1.3.1070
234234
. org.clojure/java.data 1.3.113
235235
. camel-snake-kebab/camel-snake-kebab 0.4.3
236-
net.cgrand/regex 1.0.1
236+
net.cgrand/regex 1.1.0
237237
com.cemerick/friend 0.2.3
238238
X ring/ring-core 1.2.0 :use-top
239239
X slingshot/slingshot 0.10.2 :older-version

dependabot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@
226226
<dependency>
227227
<groupId>net.cgrand</groupId>
228228
<artifactId>regex</artifactId>
229-
<version>1.0.1</version>
229+
<version>1.1.0</version>
230230
</dependency>
231231
<dependency>
232232
<groupId>com.cemerick</groupId>

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
metosin/malli {:mvn/version "0.20.0"}
4848

49-
net.cgrand/regex {:mvn/version "1.0.1"}
49+
net.cgrand/regex {:mvn/version "1.1.0"}
5050

5151
one-time/one-time {:mvn/version "0.8.0"
5252
:exclusions [ ;; not needed on java 17, addresses CWE-120

src/clojars/tools/process_stats.clj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@
2020
(extend-type Pattern
2121
re/RegexValue
2222
(pattern [re] (.pattern re))
23-
(groupnames [_] [])
24-
re/RegexFragment
25-
(static? [_ _] true)
26-
(recursimplify [_ _] (throw (ex-info "Not implemented" {}))))
23+
(groupnames [_] []))
2724

2825
(def re-legacy-cdn
2926
"Log format used when we logged from fastly to rackspace cloudfiles"

0 commit comments

Comments
 (0)