Skip to content

Commit d3d2def

Browse files
authored
Update tags for 2.1 release (#175)
1 parent b15481c commit d3d2def

3 files changed

Lines changed: 33 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
# Changelog
22
Running changelog of releases since `2.0.0-rc.4`
33

4+
## v2.1.0
5+
### New Structs
6+
- `AcsEndpoint`
7+
- `CatalogApplication`
8+
- `CatalogApplicationStatus`
9+
- `CustomHotpUserFactor`
10+
- `CustomHotpUserFactorProfile`
11+
- `InlineHookStatus`
12+
- `InlineHookType`
13+
- `WebAuthnUserFactor`
14+
- `WebAuthnUserFactorProfile`
15+
16+
### Bug Fixes
17+
- Updates `okta/config.go` to use `github.com/okta/okta-sdk-golang/v2/okta/cache` (#167, Resolves #149)
18+
- Updates `okta/config.go` to use `int64` for `ConnectionTimeout` and `RequestTimeout` (#166)
19+
- `ListApplicationTargetsForApplicationAdministratorRoleForGroup` now returns correct `[]CatalogApplication`
20+
- `ListApplicationTargetsForApplicationAdministratorRoleForUser` now returns correct `[]CatalogApplication`
21+
- `JsonWebKey.ExpiresAt` changed to correctly use `*time.Time`
22+
- `verifyUserFactorResponse.ExpiresAt` changed to correctly use `*time.Time`
23+
- Correctly reads `.okta.yaml` from project root directory
24+
- Updated typo in `PasswordCredentialHash` struct and changed `WorkerFactor` to the correct `WorkFactor`
25+
26+
### Updates
27+
- Updates to @okta/openapi 2.1.1 (And associated Generator Updates)
28+
- Added `UserId` to `OAuth2ScopeConsentGrant` struct
29+
- **Now Returns error instead of panic from config in `okta.go`** (Resolves #122)
30+
- `RequestExecutor` returns error if `privPem` is null when using PrivateKey authentication
31+
- Added `AcsEndpoints` and `AllowMultipleAcsEndpoints` properties to `SamlApplicationSettingsSignOn`
32+
- Added `FilterType` and `FilterValue` to `SamlAttributeStatement` (Resolves #76)
33+
- Generated file header in line with Go standard (Resolves #118)
34+
435
## v2.0.0
536
- Official Release of v2 Okta Golang SDK (June 4, 2020)
637
- `CSR` Model has been renamed to `Csr`

okta/okta.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/generator/templates/okta.go.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/kelseyhightower/envconfig"
1818
)
1919

20-
const Version = "2.0.0"
20+
const Version = "2.1.0"
2121

2222
type Client struct {
2323
config *config

0 commit comments

Comments
 (0)