-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update-vals etc from Clojure 1.11 missing #137
Comments
Can you make a repro? |
I made a PR with tests instead! Edit: And here's an example to illustrate the problem where I convert the keys in a map into keywords: > echo "{\"a\" \"1\"}" | jet -T '(update-keys keyword)'
...
Caused by: clojure.lang.ExceptionInfo: Could not resolve symbol: update-keys |
Thanks :) I noticed the changelogs weren't updated yet. Can you do this too? |
Will do! |
Yes, I think moving this extra config to sci.configs will be even better so then we can re-use it in both bb and jet and possibly more projects. |
Okay, so maybe the current PR should be closed and then I can open one for SCI where the functions are added to |
No, not in SCI, but in https://github.com/babashka/sci.configs. |
Cool, I'll give updating sci.configs a try later today 😊 |
I tried to applying the recent update to sci.configs to Jet and noticed that leiningen is still used to build and test, which doesn't support referencing git-dependencies! I can try to assist with moving to building using deps.edn instead if that's a good direction for the project, but for now it looks like this issue will be resolved with the next release 😊 |
Ah yes, sorry, I didn't notice that. We can move to tools.build. I'll make an issue for that and solve that myself, if nobody else jumps on it. |
Tried writing a little transformer that was going to use
update-vals
, but it seems to be missing from Jet!Similar story to other functions added in Clojure 1.11 such as
update-keys
,parse-long
etc...The text was updated successfully, but these errors were encountered: