ood_core 0.23.3 → 0.23.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5eeeaa19f116b7edd7e4169b49e0ca74f0e43355d756ef3b3eb14edaf1f9de00
4
- data.tar.gz: aaa6d9a8ef9a2e1a2e1f7396c27eb101faba8c639cf8b088f5a1e62adbe6e97b
3
+ metadata.gz: aaa540da7d8afffa45674650d11ef7bf260e55ff44e32244950d233e1d4d145a
4
+ data.tar.gz: ff4e1fbe8c59309f36fc45c634cb27752d71e3e66e847496ab3678f556a90e8b
5
5
  SHA512:
6
- metadata.gz: f36e3835a742b19e04c699e2913ec09c601c2dd912300615cad119c2ccc71482552690a0050b626f8cf024c13f40510430fb8747942c2bf37e3fa9a5040123d4
7
- data.tar.gz: 29dfedd6a597f8b794fc5105e74bd0f4a2933ec423a7ad026a5c3ee6f3f531a9cb2b24956140c4afd0606897df22fd34771fbeb6d10fae63e8ba3b778317c6a0
6
+ metadata.gz: bc0fecb3a8eae6db9c5d6c40d62d4568f930fc197a153ec28a0942ec2d2bc8da0e488e6fe86d906ce03ca2ae53d911c43804623e7b185335281d23b1cef7af41
7
+ data.tar.gz: 56eae7c8a31c5f4b625b06b33b84def3d80a0652bd883f39f656a276c63e7224b88cb9ed801ef4482e62d1eeee6aeff366787414d21c52daf03cc4eb2265d83a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.23.4] - 03-06-2023
11
+
12
+ ### Fixed
13
+
14
+ - [800](https://github.com/OSC/ood_core/pull/800) fixed some Fujitsu bugs.
15
+
16
+ ## [0.23.3] - 02-17-2023
17
+
18
+ ### Added
19
+
20
+ - ACLs now respond to `allowlist` and `blocklist` in [795](https://github.com/OSC/ood_core/pull/795).
21
+ - Sites can now use `OOD_SSH_PORT` to use a nonstandard port in [797](https://github.com/OSC/ood_core/pull/797).
22
+
10
23
  ## [0.23.2] - 02-02-2023
11
24
 
12
25
  ### Fixed
@@ -486,7 +499,9 @@ Functionally the same as [0.17.3] but with some CI updates.
486
499
  ### Added
487
500
  - Initial release!
488
501
 
489
- [Unreleased]: https://github.com/OSC/ood_core/compare/v0.23.2...HEAD
502
+ [Unreleased]: https://github.com/OSC/ood_core/compare/v0.23.4...HEAD
503
+ [0.23.4]: https://github.com/OSC/ood_core/compare/v0.23.4...v0.23.3
504
+ [0.23.3]: https://github.com/OSC/ood_core/compare/v0.23.3...v0.23.2
490
505
  [0.23.2]: https://github.com/OSC/ood_core/compare/v0.23.1...v0.23.2
491
506
  [0.23.1]: https://github.com/OSC/ood_core/compare/v0.23.0...v0.23.1
492
507
  [0.23.0]: https://github.com/OSC/ood_core/compare/v0.22.0...v0.23.0
@@ -221,10 +221,12 @@ module OodCore
221
221
  else
222
222
  args.concat ["-e", script.error_path]
223
223
  end
224
- args.concat ["--rscgrp", script.queue_name] unless script.queue_name.nil?
224
+ args.concat ["-L rscgrp=" + script.queue_name] unless script.queue_name.nil?
225
225
  args.concat ["-p", script.priority] unless script.priority.nil?
226
- args.concat ["--at", script.start_time.localtime.strftime("%C%y-%m-%dT%H:%M:%S")] unless script.start_time.nil?
227
- args.concat ["-L \"elapse=" + seconds_to_duration(script.wall_time) + "\""] unless script.wall_time.nil?
226
+
227
+ # start_time: <%= Time.local(2023,11,22,13,4).to_i %> in form.yml.erb
228
+ args.concat ["--at", script.start_time.localtime.strftime("%C%y%m%d%H%M")] unless script.start_time.nil?
229
+ args.concat ["-L elapse=" + seconds_to_duration(script.wall_time)] unless script.wall_time.nil?
228
230
  args.concat ["--bulk", "--sparam", script.job_array_request] unless script.job_array_request.nil?
229
231
 
230
232
  # Set environment variables
@@ -1,4 +1,4 @@
1
1
  module OodCore
2
2
  # The current version of {OodCore}
3
- VERSION = "0.23.3"
3
+ VERSION = "0.23.4"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.3
4
+ version: 0.23.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Franz
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-02-17 00:00:00.000000000 Z
13
+ date: 2023-03-06 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ood_support