Skip to content

Releases: crest-cassia/oacis

v3.6.2

14 Oct 23:19
Compare
Choose a tag to compare

Bug fixes

v3.6.1

08 Oct 06:02
Compare
Choose a tag to compare

Bug fixes

  • add gem 'irb', require: false. irb is not bundled to ruby 2.6.0 anymore, but used as a gem.

v3.6.0

11 Sep 23:20
62dd334
Compare
Choose a tag to compare

Feature Enhancements

  • support OpenSSH format (#639)

UI improvements

  • changed default values for host (#644)
  • Revision of the documentation (#645)

Bug fixes

  • fix encoding error when sending error message (#640)
  • upgrade bundler (#641)
  • fix a bug while cleaning up an empty directory (#642)
  • fix deprecation warning (#643)

v3.5.0

12 Jul 00:54
afdeca1
Compare
Choose a tag to compare

Enhancements

  • Upgraded rails from v5.1 to v5.2 (#636)

UI improvements

  • Improved error messages when registering a host (#633)
  • show error messages when "check scheduler status" fails (#634)

Bug fixes

  • Fixed a bug that the status is not updated by websocket when xsub fails. (#637)

v3.4.0

06 May 13:48
2f9f6b3
Compare
Choose a tag to compare

This release includes several bug fixes.

Bug fixes

  • worker raises an error when stderr contains an invalid character (#629)
  • replace "\r\n" with "\n" for shell scripts (#630)
  • fixes SSH hang problem (#631)

v3.3.0

29 Jan 06:29
15af66c
Compare
Choose a tag to compare

Feature Enhancements

  • Ruby 2.6 support was added. (#622)
  • CSV export was implemented (#624)
    image
  • an algorithm for generating random number seeds was improved (#621)
  • For Python and Ruby APIs, do_async was introduced as an alias of async. async method is deprecated and will be removed in a future release. (#623)

v3.2.1

21 Nov 07:22
Compare
Choose a tag to compare

A hot-fix release.

Bug fixes

  • Python API didn't work properly because of the upgrade of Mongoid 7.
    • Fixed 'rb_call' submodule.

v3.2.0

25 Sep 03:15
Compare
Choose a tag to compare

Feature Enhancements

  • support Mongo DB 4.0

v3.1.0

11 Jul 05:17
38c71ac
Compare
Choose a tag to compare

Feature Enhancements

  • improved the speed of submitting jobs and checking job status via SSH

Bug fixes

  • updated_at field in the list of Simulator, ParameterSets, Runs, and Analysis are not properly updated.
  • Improvements of the docs

v3.0.0

22 May 00:33
Compare
Choose a tag to compare

This is a major update including new UIs and many bug fixes.

UI improvements

  • An overall UI renovation including...
    • New tables that let you select multiple ParameterSet or Runs at once.
    • Real-time update of the job status.
    • Real-time monitoring of the worker logs.
    • A new filter for ParameterSets.

Feature Enhancements

  • The SSH setting becomes configurable using "~/.ssh/config" file.
  • significant performance improvement of downloading results
  • A new access level was introduced in addition to the normal mode and the read-only mode.

To upgrade to version 3

  • Install the following pre-requisites.
    • MongoDB 3.6
    • Redis 3.x
    • Ruby 2.5.1
  • Stop the running OACIS, update the source of OACIS, and then restart.
    bundle exec rake daemon:stop
    git pull origin master
    git pull origin master --tags
    bundle exec rake daemon:start
    
  • Prepare "~/.ssh/config" file.
    • From the settings of Host, hostname, user, port, and SSH key are removed. Instead, OACIS refers to ~/.ssh/config file.
  • refer to "Updating" section of the document for the detail.