Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsh committed Jun 14, 2024
1 parent 967171e commit cc5f619
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 45 deletions.
6 changes: 3 additions & 3 deletions .idea/libraries/org_clojure_clojure_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions .idea/libraries/org_graalvm_js_js_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions .idea/libraries/org_graalvm_js_js_launcher_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/libraries/org_graalvm_js_js_scriptengine_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions .idea/libraries/org_jruby_jruby_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/libraries/org_python_jython_standalone_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,42 @@ Once the specific plugin is installed it becomes possible to use the correspondi
* [IDE Scripting Console](https://www.jetbrains.com/help/idea/ide-scripting-console.html)
* [Database Data Extractors](https://www.jetbrains.com/help/datagrip/export-data-in-ide.html#creating-any-text-extractor-with)
* [Database Schema Generators](https://www.jetbrains.com/help/datagrip/generating-code.html)
* ... and counting...


Clojure
=======

* [Plugin page](https://plugins.jetbrains.com/plugin/12469-intellij-scripting-clojure)
* Script engine: `org.clojars.ato:clojure-jsr223:1.5.1`, `org.clojure:clojure:1.12.0-alpha1`
* Script engine: `org.clojars.ato:clojure-jsr223:1.5.1`, `org.clojure:clojure:1.12.0-alpha12`

Add `-Didea.mimic.jar.url.connection=true` VM option the IDE via `Help | Edit Custom VM Options`.
Add `-Didea.mimic.jar.url.connection=true` in `Help | Edit Custom VM Options`.


JavaScript
==========

* [Plugin page](https://plugins.jetbrains.com/plugin/12548-intellij-scripting-javascript)
* [Script engine](https://github.com/graalvm/graaljs): `org.graalvm.js:js-scriptengine:22.2.0`, `org.graalvm.js:js:22.2.0`
* [Script engine](https://github.com/graalvm/graaljs): `org.graalvm.js:js-scriptengine:23.0.4`, `org.graalvm.js:js:23.0.4`

Add `-Dpolyglot.js.nashorn-compat=true` VM option the IDE via `Help | Edit Custom VM Options`.
Add `-Dpolyglot.js.nashorn-compat=true` in `Help | Edit Custom VM Options`.


Python
======

* [Plugin page](https://plugins.jetbrains.com/plugin/12471-intellij-scripting-python)
* [Script engine](https://github.com/jythontools/jython): `org.python:jython-standalone:2.7.3`
* [Script engine](https://github.com/jythontools/jython): `org.python:jython-standalone:2.7.4b2`

Add `-Didea.mimic.jar.url.connection=true` VM option the IDE via `Help | Edit Custom VM Options`.
Add `-Didea.mimic.jar.url.connection=true` in `Help | Edit Custom VM Options`.


Ruby
====

* [Plugin page](https://plugins.jetbrains.com/plugin/12549-intellij-scripting-ruby)
* [Script engine](https://github.com/jruby/jruby): `org.jruby:jruby:9.3.8.0`
* [Script engine](https://github.com/jruby/jruby): `org.jruby:jruby:9.4.7.0`

Add `-Dorg.jruby.embed.localcontext.scope=threadsafe` VM option the IDE via `Help | Edit Custom VM Options`.
Add `-Dorg.jruby.embed.localcontext.scope=threadsafe` in `Help | Edit Custom VM Options`.



2 changes: 1 addition & 1 deletion resources-clojure/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin use-idea-classloader="true">
<id>org.jetbrains.intellij.scripting-clojure</id>
<name>IntelliJ Scripting: Clojure</name>
<version>1.2</version>
<version>1.3</version>
<vendor email="[email protected]">Greg Shrago</vendor>
<idea-version since-build="222.0"/>

Expand Down
2 changes: 1 addition & 1 deletion resources-javascript/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin use-idea-classloader="true">
<id>org.jetbrains.intellij.scripting-javascript</id>
<name>IntelliJ Scripting: JavaScript</name>
<version>1.2</version>
<version>1.3</version>
<vendor email="[email protected]">Greg Shrago</vendor>
<idea-version since-build="222.0"/>

Expand Down
2 changes: 1 addition & 1 deletion resources-python/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin use-idea-classloader="true">
<id>org.jetbrains.intellij.scripting-python</id>
<name>IntelliJ Scripting: Python</name>
<version>1.2</version>
<version>1.3</version>
<vendor email="[email protected]">Greg Shrago</vendor>
<idea-version since-build="222.0"/>

Expand Down
2 changes: 1 addition & 1 deletion resources-ruby/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin use-idea-classloader="true">
<id>org.jetbrains.intellij.scripting-ruby</id>
<name>IntelliJ Scripting: Ruby</name>
<version>1.2</version>
<version>1.3</version>
<vendor email="[email protected]">Greg Shrago</vendor>
<idea-version since-build="222.0"/>

Expand Down

0 comments on commit cc5f619

Please sign in to comment.