aws-sdk-glue 1.252.0 → 1.253.0
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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +2 -2
- data/lib/aws-sdk-glue/types.rb +5 -5
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 776e10f8e14b3bc1565c331a0d59881ad3bc75f669c28f3ab0fa3400beef7aa0
|
|
4
|
+
data.tar.gz: 7bb17bb3590858f353b1f55b43858c0d4dba2b66d5564c7eb030344d61fb03ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac710cc719ada27328ce17439dceb07d06f219821558e29fa6697f4bb0656edc7dcec06866feb1a7e2cb14a423494294b2b2e9a636e7767baa7c9d575b8e0987
|
|
7
|
+
data.tar.gz: 16157f5e7e69218fa66e39b11a2f4b00b55c5ddd069650292aa4c6fd5b164f3d37789d85ceeae887240e360209ccdaaca5e60701ef56b50661c85c7fcc2618fd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.253.0 (2026-04-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Glue now defaults to Glue version 5.1 for newly created jobs if the Glue version is not specified in the request, and UpdateJob now preserves the existing Glue version of a job when the Glue version is not specified in the update request.
|
|
8
|
+
|
|
4
9
|
1.252.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.253.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -3375,7 +3375,7 @@ module Aws::Glue
|
|
|
3375
3375
|
# developer guide.
|
|
3376
3376
|
#
|
|
3377
3377
|
# Jobs that are created without specifying a Glue version default to
|
|
3378
|
-
# Glue
|
|
3378
|
+
# Glue 5.1.
|
|
3379
3379
|
#
|
|
3380
3380
|
#
|
|
3381
3381
|
#
|
|
@@ -19018,7 +19018,7 @@ module Aws::Glue
|
|
|
19018
19018
|
tracer: tracer
|
|
19019
19019
|
)
|
|
19020
19020
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19021
|
-
context[:gem_version] = '1.
|
|
19021
|
+
context[:gem_version] = '1.253.0'
|
|
19022
19022
|
Seahorse::Client::Request.new(handlers, context)
|
|
19023
19023
|
end
|
|
19024
19024
|
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -6620,7 +6620,7 @@ module Aws::Glue
|
|
|
6620
6620
|
# the developer guide.
|
|
6621
6621
|
#
|
|
6622
6622
|
# Jobs that are created without specifying a Glue version default to
|
|
6623
|
-
# Glue
|
|
6623
|
+
# Glue 5.1.
|
|
6624
6624
|
#
|
|
6625
6625
|
#
|
|
6626
6626
|
#
|
|
@@ -18210,7 +18210,7 @@ module Aws::Glue
|
|
|
18210
18210
|
# the developer guide.
|
|
18211
18211
|
#
|
|
18212
18212
|
# Jobs that are created without specifying a Glue version default to
|
|
18213
|
-
# Glue
|
|
18213
|
+
# Glue 5.1.
|
|
18214
18214
|
#
|
|
18215
18215
|
#
|
|
18216
18216
|
#
|
|
@@ -18678,7 +18678,7 @@ module Aws::Glue
|
|
|
18678
18678
|
# the developer guide.
|
|
18679
18679
|
#
|
|
18680
18680
|
# Jobs that are created without specifying a Glue version default to
|
|
18681
|
-
# Glue
|
|
18681
|
+
# Glue 5.1.
|
|
18682
18682
|
#
|
|
18683
18683
|
#
|
|
18684
18684
|
#
|
|
@@ -18984,8 +18984,8 @@ module Aws::Glue
|
|
|
18984
18984
|
# corresponding Spark and Python versions, see [Glue version][1] in
|
|
18985
18985
|
# the developer guide.
|
|
18986
18986
|
#
|
|
18987
|
-
#
|
|
18988
|
-
#
|
|
18987
|
+
# If not provided in the update request, the Glue version retains the
|
|
18988
|
+
# value from the existing job definition.
|
|
18989
18989
|
#
|
|
18990
18990
|
#
|
|
18991
18991
|
#
|
data/lib/aws-sdk-glue.rb
CHANGED