ruby-jss 3.2.0 → 3.2.1
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 +8 -1
- data/lib/jamf/api/classic/api_objects/patch_policy.rb +3 -1
- data/lib/jamf/api/classic/api_objects/policy.rb +3 -1
- 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: b2f3742a0ba9ae93dd57271364dffc81811821b394e9acf1c75a3b2caafb241c
|
|
4
|
+
data.tar.gz: f9925aa64e13c52608469d538d28f843a630341b6d70766574f6f1bc640d95db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cdada83cae25e2bf7384efb42cd0d84c51f628fc0da1a8c9343f37259a4d64623c15bcb1ac6836749a98f644c7011adcd2efba6b1399b911b07dd98f2e6403d3
|
|
7
|
+
data.tar.gz: 2158bea2fbb3aa1eba8fcb6891399c01e96d8ec829bba5e17b9de99c0d8fcedf73e321a18c114665235c79584e4b1d6e9d63ec54509dbf978e9743da9b1285e4
|
data/CHANGES.md
CHANGED
|
@@ -15,7 +15,14 @@ __Please update all installations of ruby-jss to at least v1.6.0.__
|
|
|
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
17
|
--------
|
|
18
|
-
## \[3.
|
|
18
|
+
## \[3.2.1] 2023-09-08
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Scopes are properly maintained when using #clone on Policy and PatchPolicy instances.
|
|
22
|
+
Note: the data loss issue in addressed is in the previous version still applies. If the original policy being cloned has any `jss_users` or `jss_user_groups` defined in the targets or exclusions. they will be lost when saving the clone.
|
|
23
|
+
|
|
24
|
+
--------
|
|
25
|
+
## \[3.2.0] 2023-09-05
|
|
19
26
|
|
|
20
27
|
### Added
|
|
21
28
|
- Several new attributes to Jamf::Computer instances:
|
|
@@ -624,7 +624,9 @@ module Jamf
|
|
|
624
624
|
general.add_element('allow_downgrade').text = allow_downgrade
|
|
625
625
|
general.add_element('patch_unknown').text = patch_unknown
|
|
626
626
|
|
|
627
|
-
|
|
627
|
+
# always include the scope if we have no id yet - we could be
|
|
628
|
+
# a clone of an existing object
|
|
629
|
+
obj << scope.scope_xml if scope.should_update? || @id.nil?
|
|
628
630
|
|
|
629
631
|
add_self_service_xml doc
|
|
630
632
|
|
|
@@ -2111,7 +2111,9 @@ module Jamf
|
|
|
2111
2111
|
activation = @server_side_limitations[:activation]
|
|
2112
2112
|
date_time_limitations.add_element('activation_date_epoch').text = activation.to_jss_epoch if activation
|
|
2113
2113
|
|
|
2114
|
-
|
|
2114
|
+
# always include the scope if we have no id yet - we could be
|
|
2115
|
+
# a clone of an existing object
|
|
2116
|
+
obj << @scope.scope_xml if @scope.should_update? || @id.nil?
|
|
2115
2117
|
|
|
2116
2118
|
reboot = obj.add_element 'reboot'
|
|
2117
2119
|
JSS.hash_to_rexml_array(@reboot_options).each { |elem| reboot << elem }
|
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.1
|
|
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-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: CFPropertyList
|