ruby-jss 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +7 -0
- data/README.md +2 -2
- data/lib/jamf/api/classic/api_objects/computer.rb +8 -5
- data/lib/jamf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 723328fc03b943e9453d8575edabd1a764582711f87c609dcbc439c147957ea6
|
|
4
|
+
data.tar.gz: 43f8c1cbde95f56e977678ba9a1573781761cae0635b9f89592ec5dab1b0aecf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d95f14055ae3668af94a9aa0b8932255dcc6adf93175318ec4218a510a0ce8fa95cf99ffd60a803245b87f4087e733a51872c2b05c543f1dc025d3b5dfaf876
|
|
7
|
+
data.tar.gz: 79ddfbe92115d2d1325b6de74c1d999bf6f439ea4f0cab95a6b52b1e8055016abac9078873d2b63c4351eaeb0d0a8aa19c71a9c47e2bd8734e3b8ca8f5130f02
|
data/CHANGES.md
CHANGED
|
@@ -14,6 +14,13 @@ __Please update all installations of ruby-jss to at least v1.6.0.__
|
|
|
14
14
|
|
|
15
15
|
Many many thanks to actae0n of Blacksun Hackers Club for reporting this issue and providing examples of how it could be exploited.
|
|
16
16
|
|
|
17
|
+
--------
|
|
18
|
+
## \[3.2.1] 2023-09-12
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Don't look at the management_status of unmanaged computers, it doesn't exist.
|
|
22
|
+
|
|
23
|
+
|
|
17
24
|
--------
|
|
18
25
|
## \[3.2.1] 2023-09-08
|
|
19
26
|
|
data/README.md
CHANGED
|
@@ -66,7 +66,7 @@ Many many thanks to actae0n of Blacksun Hackers Club for reporting this issue an
|
|
|
66
66
|
|
|
67
67
|
ruby-jss defines a Ruby module called `Jamf`, which is used for accessing the 'Classic' and
|
|
68
68
|
'Jamf Pro' APIs of a Jamf Pro server. Jamf Pro is an enterprise-level management tool for Apple
|
|
69
|
-
devices from [Jamf.com](http://www.jamf.com/).
|
|
69
|
+
devices from [Jamf.com](http://www.jamf.com/). ruby-jss is available as a [ruby gem](https://rubygems.org/gems/ruby-jss), and the
|
|
70
70
|
[source is on github](https://github.com/PixarAnimationStudios/ruby-jss).
|
|
71
71
|
|
|
72
72
|
The Jamf module maintains connections to both APIs simultaneously, and uses which ever is appropriate as needed.
|
|
@@ -75,7 +75,7 @@ which API are all handled under-the-hood.
|
|
|
75
75
|
|
|
76
76
|
The Jamf module abstracts many API resources as Ruby objects, and provides methods for interacting with those
|
|
77
77
|
resources. It also provides some features that aren't a part of the API itself, but come with other
|
|
78
|
-
Jamf-related tools, such as uploading {Jamf::Package} files to the
|
|
78
|
+
Jamf-related tools, such as uploading {Jamf::Package} files to the primary fileshare distribution
|
|
79
79
|
point, and the installation of those objects on client machines. (See [BEYOND THE API](#beyond-the-api))
|
|
80
80
|
|
|
81
81
|
The Jamf module is not a complete implementation of the Jamf Pro APIs. Only some objects are modeled,
|
|
@@ -923,7 +923,14 @@ module Jamf
|
|
|
923
923
|
@distribution_point = @init_data[:general][:distribution_point]
|
|
924
924
|
@initial_entry_date = JSS.epoch_to_time @init_data[:general][:initial_entry_date_epoch]
|
|
925
925
|
@last_enrolled = JSS.epoch_to_time @init_data[:general][:last_enrolled_date_epoch]
|
|
926
|
-
|
|
926
|
+
|
|
927
|
+
@management_status = @init_data[:general][:management_status]
|
|
928
|
+
if @management_status
|
|
929
|
+
@enrolled_via_dep = @management_status[:enrolled_via_dep]
|
|
930
|
+
@user_approved_enrollment = @management_status[:user_approved_enrollment]
|
|
931
|
+
@user_approved_mdm = @management_status[:user_approved_mdm]
|
|
932
|
+
end
|
|
933
|
+
|
|
927
934
|
@ip_address = @init_data[:general][:ip_address]
|
|
928
935
|
@reported_ip_address = @init_data[:general][:last_reported_ip]
|
|
929
936
|
@itunes_store_account_is_active = @init_data[:general][:itunes_store_account_is_active]
|
|
@@ -933,8 +940,6 @@ module Jamf
|
|
|
933
940
|
@mdm_capable = @init_data[:general][:mdm_capable]
|
|
934
941
|
@mdm_capable_users = @init_data[:general][:mdm_capable_users].values
|
|
935
942
|
@supervised = @init_data[:general][:supervised]
|
|
936
|
-
@user_approved_enrollment = @init_data[:general][:management_status][:user_approved_enrollment]
|
|
937
|
-
@user_approved_mdm = @init_data[:general][:management_status][:user_approved_mdm]
|
|
938
943
|
@mdm_profile_expiration = JSS.epoch_to_time @init_data[:general][:mdm_profile_expiration_epoch]
|
|
939
944
|
|
|
940
945
|
@netboot_server = @init_data[:general][:netboot_server]
|
|
@@ -946,8 +951,6 @@ module Jamf
|
|
|
946
951
|
|
|
947
952
|
@configuration_profiles = @init_data[:configuration_profiles]
|
|
948
953
|
|
|
949
|
-
@management_status = @init_data[:general][:management_status]
|
|
950
|
-
|
|
951
954
|
@groups_accounts = @init_data[:groups_accounts]
|
|
952
955
|
@hardware = @init_data[:hardware]
|
|
953
956
|
@peripherals = @init_data[:peripherals]
|
data/lib/jamf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-jss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Lasell
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-09-
|
|
13
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: CFPropertyList
|