Skip to content

docs: fix spelling in CHANGELOG and README #564

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ n### Added
- The property `OpcWorkRequestId` was removed from the response model `CreateVulnerabilityAuditResponse.cs` in the Application Dependency Management service
- The property `Gav` was changed from mandatory to optional in `ApplicationDependency` model
- The property `MaxObservedCvssV2Score`, `MaxObservedCvssV2ScoreWithIgnored` and `MaxObservedCvssV3ScoreWithIgnored` were changed from mandatory to optional in `VulnerabilityAudit` and `VulnerabilityAuditSummary` model
- The property `CvssV2Score` and `CvssV3Score` were changed from mantory to optional in Vulnerability model
- The property `CvssV2Score` and `CvssV3Score` were changed from mandatory to optional in Vulnerability model
- The property `OpcWorkRequestId` was changed from mandatory to optional in `CreateVulnerabilityAuditResponse` model


Expand Down Expand Up @@ -910,7 +910,7 @@ n### Added

### Breaking Changes
- The properties `DisplayName` and `RqsType` were removed in the `Parameter` model in the Logging Management service
- The enum members `EnumString` and `RqsFilter` were remoeved from the `mappingParameterTypeEnum` in the `Parameter` model in the Logging Management service
- The enum members `EnumString` and `RqsFilter` were removed from the `mappingParameterTypeEnum` in the `Parameter` model in the Logging Management service
- The property `ServiceStage` was removed in the `ListServicesRequest` model in the Logging Management service
- The models `TcpApplication` and `UdpApplication` were removed in the Network Firewall service
- The type `DecryptionProfileTypeEnum` was removed in the model `DecryptionProfile` in the Network Firewall service
Expand Down Expand Up @@ -1528,7 +1528,7 @@ n### Added
- Support for language custom models and language translation in the AI Language service

### Breaking Changes
- `TextClassificationDocument` and `KeyPhraseDocument` modles are removed from ailanguage service
- `TextClassificationDocument` and `KeyPhraseDocument` models are removed from ailanguage service
- Document parameter in `BatchDetectLanguage` related models changed to `TextDocument` type

## 65.23.0 - 2022-10-04
Expand Down Expand Up @@ -2345,7 +2345,7 @@ n### Added
- Support for getting the spark version of applications, and filtering applications by spark version, in the Data Flow service

### Breaking
- Propertry `FreeformTags` and `DefinedTags` were removed from the management_dashboard_export_details model in the Management Dashboard service
- Property `FreeformTags` and `DefinedTags` were removed from the management_dashboard_export_details model in the Management Dashboard service

## 41.2.0 - 2021-06-08
### Added
Expand Down Expand Up @@ -3726,7 +3726,7 @@ were changed to `CLUSTER_SPLIT` and `AbstractCommandDescriptorNameClusterSplit`
- Support for retrieving compartment name and user name as part of events in the Audit service

### Fixed
- CreateKubeconfig function should not close http reponse body [Github Issue 116](https://github.com/oracle/oci-go-sdk/issues/116)
- CreateKubeconfig function should not close http response body [Github Issue 116](https://github.com/oracle/oci-go-sdk/issues/116)

### Breaking changes
- Datatype changed from *int to *int64 for several request/response structs. Here is sample code that shows how to update your code to incorporate this change.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Are you a Developer using the OCI SDK? If so, please fill out our survey to help
## Versioning
- The breaking changes in service client APIs will no longer result in a major version bump (x+1.y.z relative to the last published version). Instead, we will bump the minor version of the SDK (x.y+1.z relative to the last published version).
- If there are no breaking changes in a release, we will bump the patch version of the SDK (x.y.z+1 relative to the last published version).
We will continue to announce any breaking changes in a new version under the Breaking Changes section in the release changelog and on the Github release page [https://github.com/oracle/oci-go-sdk/releases].
We will continue to announce any breaking changes in a new version under the Breaking Changes section in the release changelog and on the GitHub release page [https://github.com/oracle/oci-go-sdk/releases].
- However, breaking changes in the SDK's common module will continue to result in a major version bump (x+1.y.z relative to the last published version). That said, we'll continue to maintain backward compatibility as much as possible to minimize the effort involved in upgrading the SDK version used by your code.

## Installing
Expand All @@ -27,7 +27,7 @@ If you are using Go modules, you can install by running the following command wi
```
go get -d github.com/oracle/oci-go-sdk/v49@latest
```
The latest major version (for example `v49`) can be identified on the [Github releases page](https://github.com/oracle/oci-go-sdk/releases).
The latest major version (for example `v49`) can be identified on the [GitHub releases page](https://github.com/oracle/oci-go-sdk/releases).

Alternatively, you can install a specific version (supported from `v25.0.0` on):
```
Expand Down Expand Up @@ -118,7 +118,7 @@ export OCI_GOSDK_USING_EXPECT_HEADER=FALSE
```sh
export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE
```
- *Cicuit Breaker*: Circuit Breaker error message includes a set of previous failed responses. By default, the number of the failed responses is set to 5. It can be explicitly set using the env var:
- *Circuit Breaker*: Circuit Breaker error message includes a set of previous failed responses. By default, the number of the failed responses is set to 5. It can be explicitly set using the env var:
```sh
export OCI_SDK_CIRCUITBREAKER_NUM_HISTORY_RESPONSE=<int value>
```
Expand Down