diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fd09185..1bbcbc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.57.3 - 2024-08-27 + +- Prefer default viewer meta on history push d0dc39d +- Add `:on-load-1` launcher option 6953d2d + +### Bug Fixes + +- Prevent issue with records and serialization 5cfd6f2 + - Fixes #236 + - Issue caused by dc33869 + - Thanks for the bug report @ognen! +- Fix overflow css issue for inspector 65c463d + ## 0.57.2 - 2024-08-08 - Updates IJ plugin for 2024.2 (#235) 6e013a0 diff --git a/README.md b/README.md index b3533c84..f01b5213 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,13 @@ More video presentations on Portal can be found [here](./doc/videos.md). To start a repl with portal, run the **clojure >= 1.10.0** cli with: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"}}}' +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.3"}}}' ``` or for a **web** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.3"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main ``` @@ -55,7 +55,7 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"} or for a **node** **clojurescript >= 1.10.773** repl, do: ```bash -clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"} +clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.3"} org.clojure/clojurescript {:mvn/version "1.10.844"}}}' \ -m cljs.main -re node ``` @@ -63,19 +63,19 @@ clj -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"} or for a **babashka >=0.2.4** repl, do: ```bash -bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.2"}}}' +bb -Sdeps '{:deps {djblue/portal {:mvn/version "0.57.3"}}}' ``` or for a lein `project.clj`, add: ```clojure -{:profiles {:dev {:dependencies [[djblue/portal "0.57.2"]]}}} +{:profiles {:dev {:dependencies [[djblue/portal "0.57.3"]]}}} ``` or as a global profile, add to `~/.lein/profiles.clj`: ```clojure -{:portal {:dependencies [[djblue/portal "0.57.2"]]}} +{:portal {:dependencies [[djblue/portal "0.57.3"]]}} ``` > **Note** @@ -163,8 +163,8 @@ For more documentation, take a look through the [docs][docs]. [live-demo]: https://www.youtube.com/watch?v=Tj-iyDo3bq0 [london-clojurians]: https://www.youtube.com/channel/UC-pYfofTyvVDMwM4ttfFGqw -[docs]: https://cljdoc.org/d/djblue/portal/0.57.2/doc/ui-concepts -[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.57.2/doc/ui-concepts +[docs]: https://cljdoc.org/d/djblue/portal/0.57.3/doc/ui-concepts +[ui-concepts]: https://cljdoc.org/d/djblue/portal/0.57.3/doc/ui-concepts [vs-code-docs]: ./doc/editors/vs-code.md [intellij-docs]: ./doc/editors/intellij.md diff --git a/dev/tasks/info.clj b/dev/tasks/info.clj index 22a2390b..65494d17 100644 --- a/dev/tasks/info.clj +++ b/dev/tasks/info.clj @@ -2,7 +2,7 @@ (:require [clojure.java.shell :refer [sh]] [clojure.string :as str])) -(def version "0.57.2") +(def version "0.57.3") (defn git-hash [] (str/trim (:out (sh "git" "rev-parse" "HEAD")))) diff --git a/extension-intellij/gradle.properties b/extension-intellij/gradle.properties index 6bc87ef4..9d6bd4a0 100644 --- a/extension-intellij/gradle.properties +++ b/extension-intellij/gradle.properties @@ -3,7 +3,7 @@ pluginGroup = djblue pluginName = portal -pluginVersion = 0.57.2 +pluginVersion = 0.57.3 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. diff --git a/extension-vscode/package.json b/extension-vscode/package.json index d7217204..c4e361d0 100644 --- a/extension-vscode/package.json +++ b/extension-vscode/package.json @@ -1,6 +1,6 @@ { "name": "portal", - "version": "0.57.2", + "version": "0.57.3", "description": "A clojure tool to navigate through your data.", "icon": "icon.png", "main": "vs-code.js", diff --git a/package.json b/package.json index be25e58a..07fc698e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@djblue/portal", - "version": "0.57.2", + "version": "0.57.3", "repository": "github:djblue/portal", "dependencies": { "@fortawesome/fontawesome-svg-core": "^1.2.36", diff --git a/src/portal/extensions/vs_code.cljs b/src/portal/extensions/vs_code.cljs index 7c988fe7..c8bbe12a 100644 --- a/src/portal/extensions/vs_code.cljs +++ b/src/portal/extensions/vs_code.cljs @@ -46,7 +46,7 @@ " - " ["portal" (get options :window-title "vs-code") - "0.57.2"]) + "0.57.3"]) (view-column) (clj->js {:enableScripts true diff --git a/src/portal/runtime.cljc b/src/portal/runtime.cljc index 8b3a45e1..9ebbda55 100644 --- a/src/portal/runtime.cljc +++ b/src/portal/runtime.cljc @@ -366,7 +366,7 @@ {:name (if (= :dev (:mode options)) "portal-dev" "portal") - :version "0.57.2" + :version "0.57.3" :runtime (runtime) :platform #?(:bb "bb" diff --git a/src/portal/runtime/index.cljc b/src/portal/runtime/index.cljc index 65e92357..a1264b64 100644 --- a/src/portal/runtime/index.cljc +++ b/src/portal/runtime/index.cljc @@ -2,7 +2,7 @@ (defn html [{:keys [name version host port session-id code-url platform mode] :or {name "portal" - version "0.57.2" + version "0.57.3" code-url "main.js" platform #?(:bb "bb" :clj "jvm" :cljs "node" :cljr "clr")}}] (str