Fork me on GitHub
#announcements
<
2021-04-26
>
Dainius Jocas10:04:26

A new release of the Lucene grep, that includes a flexible text analysis pipeline construction from most of what Lucene has to offer https://github.com/dainiusjocas/lucene-grep. Now things like this are possible now:

echo "<p>foo bars baz</p>" | \
  ./lmgrep \
  --only-analyze \
  --analysis='
  {
    "char-filters": [
      {"name": "htmlStrip"},
      {
        "name": "patternReplace",
         "args": {
           "pattern": "foo",
           "replacement": "bar"
        }
      }
    ],
    "tokenizer": {"name": "standard"},
    "token-filters": [
      {"name": "englishMinimalStem"},
      {"name": "uppercase"}
    ]
  }
  '
=>
["BAR","BAR","BAZ"]

👍 3
Alex Miller (Clojure team)15:04:08

org.clojure/core.async 1.3.618 is now available • https://clojure.atlassian.net/browse/ASYNC-237: (CLJS) timeout timers access array elements with out-of-bounds index

👍 5
3
jerger_at_dda16:04:46

We proudly announce the first working release of https://gitlab.com/domaindrivenarchitecture/k8s-mastodon-bot We generate valid k8s-deployment-yamls for mastodon-bot. With deep (spec-)validation and in a multi-target setup (cljs, clj, graalvm-native).

😎 5
Alex Miller (Clojure team)17:04:47

org.clojure/data.json 2.2.2 is now available • Perf https://clojure.atlassian.net/browse/DJSON-36: Reapplied updated refactored code in read-array and read-object • Add https://clojure.atlassian.net/browse/DJSON-45: Generative tests for read/write roundtrip

👍 24
😻 5
Noah Bogart16:04:24

would it be helpful to run data.json over the JSON Test Suite (https://github.com/nst/JSONTestSuite)? if it would be, how best should I raise any issues that are found? JIRA?

Alex Miller (Clojure team)16:04:19

Sure, would be best to integrate something like that into the repo so it can stay in sync (could be a script or whatever). If you’re interested in working on that, would be best for you to become a contributor and get jira access

Noah Bogart16:04:11

Cool, I’ll see if I can get something working and if so, I’ll sign the CLA

♥️ 3
Noah Bogart04:04:22

I have signed the CLA and submitted a JIRA support ticket for access.

Alex Miller (Clojure team)19:04:22

com.cognitect/transit-js 0.8.874 is now available • goog.isArray & goog.isString removed, switch to goog.typeOf

metal 16
Alex Miller (Clojure team)19:04:25

com.cognitect/transit-cljs 0.8.269 is now available • Update transit-js dependency to 0.8.874

metal 19