Skip to content

Commit 8b91031

Browse files
authored
Merge pull request #267 from okta/release_2_9_0
Release v2.9.1
2 parents e4b8f4d + 3afbffc commit 8b91031

51 files changed

Lines changed: 1711 additions & 91 deletions

Some content is hidden

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

CHANGELOG.md

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

4+
## v2.9.1
5+
6+
### New Types / Models
7+
- `AccessPolicy`
8+
- `AccessPolicyConstraint`
9+
- `AccessPolicyConstraints`
10+
- `AccessPolicyRule`
11+
- `AccessPolicyRuleActions`
12+
- `AccessPolicyRuleApplicationSignOn`
13+
- `AccessPolicyRuleConditions`
14+
- `AccessPolicyRuleCustomCondition`
15+
- `AuthenticatorProvider`
16+
- `AuthenticatorProviderConfiguration`
17+
- `AuthenticatorProviderConfigurationUserNamePlate`
18+
- `BrandResource`
19+
- `Brand`
20+
- `ChannelBinding`
21+
- `Compliance`
22+
- `DeviceAccessPolicyRuleCondition`
23+
- `EmailTemplateTouchPointVariant`
24+
- `EndUserDashboardTouchPointVariant`
25+
- `ErrorPageTouchPointVariant`
26+
- `FipsEnum`
27+
- `ImageUploadResponse`
28+
- `KnowledgeConstraint`
29+
- `PossessionConstraint`
30+
- `PreRegistrationInlineHook`
31+
- `ProfileEnrollmentPolicy`
32+
- `ProfileEnrollmentPolicyRule`
33+
- `ProfileEnrollmentPolicyRuleAction`
34+
- `ProfileEnrollmentPolicyRuleActions`
35+
- `ProfileEnrollmentPolicyRuleActivationRequirement`
36+
- `ProfileEnrollmentPolicyRuleProfileAttribute`
37+
- `RequiredEnum`
38+
- `SignInPageTouchPointVariant`
39+
- `ThemeResource`
40+
- `Theme`
41+
- `ThemeResponse`
42+
- `UserTypeCondition`
43+
- `UserVerificationEnum`
44+
- `VerificationMethod`
45+
46+
### New Methods
47+
- `AuthenticatorResource`
48+
- `GetAuthenticator`
49+
- `UpdateAuthenticator`
50+
- `ListAuthenticators`
51+
- `BrandResource`
52+
- `GetBrand`
53+
- `UpdateBrand`
54+
- `ListBrands`
55+
- `ListBrandThemes`
56+
- `GetBrandTheme`
57+
- `UpdateBrandTheme`
58+
- `DeleteBrandThemeBackgroundImage`
59+
- `UploadBrandThemeBackgroundImage`
60+
- `DeleteBrandThemeFavicon`
61+
- `UploadBrandThemeFavicon`
62+
- `DeleteBrandThemeLogo`
63+
- `UploadBrandThemeLogo`
64+
- `OrgSettingResource`
65+
- `UpdateOrgLogo`
66+
- `GetOrgPreferences`
67+
- `HideOktaUIFooter`
68+
- `ShowOktaUIFooter`
69+
- `OptInUsersToOktaCommunicationEmails`
70+
- `OptOutUsersFromOktaCommunicationEmails`
71+
- `GetOrgOktaSupportSettings`
72+
- `ExtendOktaSupport`
73+
- `GrantOktaSupport`
74+
- `RevokeOktaSupport`
75+
- `ThemeResource`
76+
- `GetBrandTheme`
77+
- `UpdateBrandTheme`
78+
79+
### Updates
80+
- Updated Authenticators integration tests
81+
- Integration tests on `IdentityProviderResource`
82+
483
## v2.8.0
584

685
### Updates

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,15 @@ clean-files:
3838

3939
generate-files:
4040
@echo "$(COLOR_OKTA)Generating SDK Files...$(COLOR_NONE)"
41-
cd openapi && npm install && yarn generator
41+
cd openapi && yarn generator
4242
@echo "$(COLOR_OK)Running goimports and gofumpt on generated files...$(COLOR_NONE)"
4343
@make import
4444
@make fmt
4545
@echo "$(COLOR_OKTA)Done!$(COLOR_NONE)"
4646

4747
pull-spec:
4848
@echo "$(COLOR_OKTA)Pulling in latest spec...$(COLOR_NONE)"
49+
cd openapi && npm install
4950
rm -f openapi/spec.json
5051
git clone --branch $(OPENAPI_SPEC_BRANCH) https://github.com/okta/okta-management-openapi-spec spec-raw
5152
cp spec-raw/dist/spec.json openapi/spec.json

okta/accessPolicy.go

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyConstraint.go

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyConstraints.go

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyRule.go

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyRuleActions.go

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyRuleApplicationSignOn.go

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyRuleConditions.go

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

okta/accessPolicyRuleCustomCondition.go

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)