comet_backup_ruby_sdk 2.12.0 → 2.13.0

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: 3e58708772fc811caf320d5e37daead88298a9ef573d721055a3970bcf31d3bc
4
- data.tar.gz: 70167999c8a0622c11845204871ef6c36679f73b506dc1b260fd0006a71a07ae
3
+ metadata.gz: dd580d387bff734854661ad2a96745a0687538a2fc1597ca3fa193a37451bc1c
4
+ data.tar.gz: d64c702fbd3f7aabd58a4653f6753374b1e54faad802eb184b5e9804bc59c54d
5
5
  SHA512:
6
- metadata.gz: 9c13573fc5191bcba1631a35a0a6b55ab1d8543cbe14c3260eda4991c5432c23a3613d7af77ecee2fe6e789c91b08d949cd61fe924f7521b9ac9778d14b62a07
7
- data.tar.gz: 2a59d690d766d51a456d6cbf833287483c58630967f120433d1990afa7eeafb331e027ea7f0ae8b1e3ccd5572e7c3af5b0dd8d5d52a76e2c097c9d9900ca1814
6
+ metadata.gz: e1a4cb81494020fb4fba9c5c0d524ec22f01afe605eb87568a0f6d4b91b9c7327e79ac8b8970cde56c70f6ee2bb343e3c7cfea325b88ec92db5c3c6c6fa94817
7
+ data.tar.gz: d76d0ce3aa82f4d986271ef1568271937edb3e397bd289e7e206c559dd8007a62eff01d073e91aad83d8d357c3bd63e4b56d037e21bea72c745cf7e8ce097789
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2023-08-29 v2.13.0
4
+
5
+ - Based on Comet 23.8.0
6
+ - Improve documentation of JobStatus constants
7
+
3
8
  ## 2023-08-09 v2.12.0
4
9
 
5
10
  - Based on Comet 23.6.9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comet_backup_ruby_sdk (2.12.0)
4
+ comet_backup_ruby_sdk (2.13.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -12,7 +12,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
12
12
 
13
13
  Gem::Specification.new do |spec|
14
14
  spec.name = 'comet_backup_ruby_sdk'
15
- spec.version = '2.12.0'
15
+ spec.version = '2.13.0'
16
16
  spec.authors = ['Comet Licensing Ltd.']
17
17
  spec.email = ['hello@cometbackup.com']
18
18
 
@@ -7,13 +7,13 @@
7
7
 
8
8
  module Comet
9
9
 
10
- APPLICATION_VERSION = '23.6.9'
10
+ APPLICATION_VERSION = '23.8.0'
11
11
 
12
12
  APPLICATION_VERSION_MAJOR = 23
13
13
 
14
- APPLICATION_VERSION_MINOR = 6
14
+ APPLICATION_VERSION_MINOR = 8
15
15
 
16
- APPLICATION_VERSION_REVISION = 9
16
+ APPLICATION_VERSION_REVISION = 0
17
17
 
18
18
  # AutoRetentionLevel: The system will automatically choose how often to run an automatic Retention Pass after each backup job.
19
19
  BACKUPJOBAUTORETENTION_AUTOMATIC = 0
@@ -264,7 +264,7 @@ module Comet
264
264
  # JobStatus: If the BackupJobDetail.Status field is a 5xxx code, the job has stopped for a successful reason.
265
265
  JOB_STATUS_STOP_SUCCESS__MIN = 5000
266
266
 
267
- # JobStatus
267
+ # JobStatus: The job is complete and was successful.
268
268
  JOB_STATUS_STOP_SUCCESS = 5000
269
269
 
270
270
  # JobStatus
@@ -276,10 +276,10 @@ module Comet
276
276
  # JobStatus: Unused
277
277
  JOB_STATUS_RUNNING_INDETERMINATE = 6000
278
278
 
279
- # JobStatus
279
+ # JobStatus: The last information the server received from the device is that the job is currently running.
280
280
  JOB_STATUS_RUNNING_ACTIVE = 6001
281
281
 
282
- # JobStatus: A backup job that was marked as stopped or abandoned, but has somehow continued to run
282
+ # JobStatus: The job was thought to have been in an Abandoned state but updated the Comet Server with a running status.
283
283
  JOB_STATUS_RUNNING_REVIVED = 6002
284
284
 
285
285
  # JobStatus
@@ -291,25 +291,25 @@ module Comet
291
291
  # JobStatus
292
292
  JOB_STATUS_FAILED_TIMEOUT = 7000
293
293
 
294
- # JobStatus
294
+ # JobStatus: The job is complete but there was a problem that may have resulted in issues with the expected result.
295
295
  JOB_STATUS_FAILED_WARNING = 7001
296
296
 
297
- # JobStatus
297
+ # JobStatus: There was an error during the job and it did not fully complete.
298
298
  JOB_STATUS_FAILED_ERROR = 7002
299
299
 
300
- # JobStatus
300
+ # JobStatus: During a backup job either the "All protected items" quota or "Storage Vault" quota was exceeded.
301
301
  JOB_STATUS_FAILED_QUOTA = 7003
302
302
 
303
- # JobStatus
303
+ # JobStatus: The job did not start at its scheduled time.
304
304
  JOB_STATUS_FAILED_SCHEDULEMISSED = 7004
305
305
 
306
- # JobStatus
306
+ # JobStatus: The job was cancelled manually, a device shutdown was detected, or the backup time limit was reached.
307
307
  JOB_STATUS_FAILED_CANCELLED = 7005
308
308
 
309
- # JobStatus
309
+ # JobStatus: The backup job was skipped as there was already a backup running and the "Skip if already running" option was enabled.
310
310
  JOB_STATUS_FAILED_SKIPALREADYRUNNING = 7006
311
311
 
312
- # JobStatus
312
+ # JobStatus: The job has stopped unexpectedly or has been manually marked as abandoned by an admin.
313
313
  JOB_STATUS_FAILED_ABANDONED = 7007
314
314
 
315
315
  # JobStatus
@@ -407,7 +407,7 @@ module Comet
407
407
  # PSAType
408
408
  PSA_TYPE_GRADIENT = 1
409
409
 
410
- RELEASE_CODENAME = 'Voyager'
410
+ RELEASE_CODENAME = 'Adrastea'
411
411
 
412
412
  # RemoteServerType
413
413
  REMOTESERVER_COMET = 'comet'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comet_backup_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.12.0
4
+ version: 2.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Comet Licensing Ltd.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-09 00:00:00.000000000 Z
11
+ date: 2023-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler