Skip to content

Commit c3ffa92

Browse files
Merge pull request #589 from oracle/release_2022-09-20
Releasing version 3.17.0
2 parents 6ffe3da + fd8479f commit c3ffa92

File tree

57 files changed

+12228
-492
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+12228
-492
lines changed

CHANGELOG.rst

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,94 @@ All notable changes to this project will be documented in this file.
66

77
The format is based on `Keep a Changelog <http://keepachangelog.com/>`__.
88

9+
3.17.0 - 2022-09-20
10+
--------------------
11+
12+
Added
13+
~~~~~
14+
15+
* Support for the Cloud Migrations service
16+
17+
* ``oci cloud-migrations``
18+
19+
* Support for the Cloud Bridge service
20+
21+
* ``oci cloud-bridge``
22+
23+
* Support for listing summary messages, trail files, and trail file sequences for a deployment in the Golden Gate service
24+
25+
* ``oci goldengate message-summary list-messages``
26+
* ``oci goldengate trail-file-summary list-trail-files``
27+
* ``oci goldengate trail-sequence-summary list-trail-sequences``
28+
29+
* Threat Intelligence service
30+
31+
* Support for new command
32+
33+
* ``oci threat-intelligence indicator summarize``
34+
35+
* Support for new optional parameters
36+
37+
* ``oci threat-intelligence indicator-summaries list-indicators --time-created-after --time-created-before --time-last-seen-after --time-last-seen-before --time-updated-before``
38+
39+
* Log Analytics service
40+
41+
* Support for new commands
42+
43+
* ``oci log-analytics ingest-time-rule``
44+
* ``oci log-analytics rule list``
45+
46+
* Support for new optional parameters
47+
48+
* ``oci log-analytics object-collection-rule create --log-set --log-set-ext-regex --log-set-key --timezone``
49+
* ``oci log-analytics object-collection-rule update --log-set --log-set-ext-regex --log-set-key --timezone``
50+
* ``oci log-analytics storage recall-archived-data --log-sets --query-string``
51+
52+
* Support for new commands in the DevOps service
53+
54+
* ``oci devops connection create-vbs-connection``
55+
* ``oci devops connection update-vbs-connection``
56+
* ``oci devops trigger create-vbs-trigger``
57+
* ``oci devops trigger update-vbs-trigger``
58+
59+
* Support for new optional parameters in the Usage service
60+
61+
* ``oci usage-api schedule create --output-file-format --saved-report-id --description``
62+
* ``oci usage-api schedule update --output-file-format --result-location --description``
63+
64+
* Data integration service
65+
66+
* Support for new commands
67+
68+
* ``oci data-integration runtime-operator get``
69+
* ``oci data-integration runtime-operators list-runtime-operators``
70+
* ``oci data-integration runtime-pipeline get``
71+
* ``oci data-integration runtime-pipelines list-runtime-pipelines``
72+
* ``oci data-integration task-run-lineage list-task-run-lineages``
73+
* ``oci data-integration task-run-lineage list_taskrun_lineages``
74+
75+
* Support for new optional parameters
76+
77+
* ``oci data-integration data-entity list --include-types``
78+
* ``oci data-integration data-flow-validation create --target-field-map-summary --typed-object-map``
79+
* ``oci data-integration dis-application create --compartment-id``
80+
* ``oci data-integration schema list --include-types``
81+
* ``oci data-integration workspace create --endpoint-compartment-id --endpoint-id --endpoint-name --registry-compartment-id --registry-id --registry-name``
82+
83+
Changed
84+
~~~~~~~
85+
* [BREAKING] oci governance-rules-control-plane work-request work-request-log list renamed in the Governance Rules Control Plane service
86+
87+
* ``oci governance-rules-control-plane work-request work-request-log-entry list-work-request-logs``
88+
89+
* [BREAKING] --previous-deployment-id is now a required parameter in the DevOps service
90+
91+
* ``oci devops deployment create-pipeline-redeployment --previous-deployment-id``
92+
93+
* The parameter --query-properties is now optional in the Usage service
94+
95+
* ``oci usage-api schedule create``
96+
997
3.16.1 - 2022-09-13
1098
--------------------
1199

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Jinja2==3.0.3
1414
jmespath==0.10.0
1515
ndg-httpsclient==0.4.2
1616
mock==2.0.0
17-
oci==2.82.0
17+
oci==2.83.0
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.10.0

scripts/install/install.ps1

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
Run the script accepting all default options. This will suppress all prompts for user input.
99
.PARAMETER OfflineInstall
1010
Install CLI in the offline mode. This should be part of CLI Offline package.
11+
.PARAMETER DependencyDir
12+
When input is specified, CLI install will process dependencies from input relative path
1113
.PARAMETER PythonInstallLocation
1214
Optionally specifies where to install python on systems where it is not present. This must be an absolute path and
1315
it will be created if it does not exist.
@@ -26,9 +28,8 @@
2628
completion of CLI commands is enabled.
2729
.PARAMETER OciCliVersion
2830
The version of CLI to install, e.g. 2.5.12. The default is the latest from pypi.
29-
3031
.PARAMETER VerifyCheckSum
31-
This input parameter verifies the checksum for install.py script. the checksum should be provided as a value of this parameter.
32+
This input parameter verifies the checksum for install.py script. the checksum should be provided as a value of this parameter.
3233
3334
.NOTES
3435
The order of precedence in which this scripts applies input parameters is as follows:
@@ -46,6 +47,7 @@
4647
Param(
4748
[Parameter(Mandatory=$false)][switch]$AcceptAllDefaults,
4849
[Parameter(Mandatory=$false)][switch]$OfflineInstall,
50+
[Parameter(Mandatory=$false)][string]$DependencyDir,
4951
[Parameter(Mandatory=$false)][string]$PythonInstallLocation,
5052
[Parameter(Mandatory=$false)][string]$OptionalFeatures,
5153
[Parameter(Mandatory=$false)][string]$InstallDir,
@@ -422,6 +424,9 @@ Try {
422424
if ($OfflineInstall) {
423425
$ArgumentList = "$ArgumentList --offline-install"
424426
}
427+
if ($DependencyDir) {
428+
$ArgumentList = "$ArgumentList --dependency-dir $DependencyDir"
429+
}
425430
if ($InstallDir) {
426431
$ArgumentList = "$ArgumentList --install-dir $InstallDir"
427432
}
@@ -440,7 +445,7 @@ Try {
440445
if ($OciCliVersion) {
441446
$ArgumentList = "$ArgumentList --oci-cli-version $OciCliVersion"
442447
}
443-
LogOutput "$PythonInstallLocation $AcceptAllDefaults $InstallDir $ExecDir $ScriptDir $UpdatePathAndEnableTabCompletion"
448+
LogOutput "$PythonInstallLocation $AcceptAllDefaults $DependencyDir $InstallDir $ExecDir $ScriptDir $UpdatePathAndEnableTabCompletion"
444449
LogOutput "Using Python executable: $PythonExecutable to run install script..."
445450
LogOutput "Arguments to python script: $ArgumentList"
446451

0 commit comments

Comments
 (0)