Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b86918e
Merge pull request #180 from contentstack/staging
harshithad0703 Aug 26, 2025
4c9f6fe
Add OAuth implementation for testing
reeshika-h Aug 26, 2025
b5ef724
fix: Generate state parameter in constructor for OAuth security
reeshika-h Aug 26, 2025
9544846
fix: Update OAuth implementation
reeshika-h Aug 28, 2025
c0d614d
fix: Update OAuth implementation 1
reeshika-h Aug 28, 2025
d283ea6
fix: Update OAuth implementation 2
reeshika-h Aug 28, 2025
9256fa0
fix: Update OAuth implementation 3
reeshika-h Aug 28, 2025
99ca31f
fix: Update OAuth implementation 4
reeshika-h Aug 28, 2025
4c89089
fix: Update OAuth implementation 5
reeshika-h Aug 28, 2025
258fa67
fix: Update OAuth implementation 6
reeshika-h Aug 29, 2025
b0c5f10
fix: Update OAuth implementation 7
reeshika-h Aug 29, 2025
a02f161
fix: Update OAuth implementation 8
reeshika-h Aug 29, 2025
2644266
fix: Update OAuth implementation 9
reeshika-h Aug 29, 2025
f688b3d
fix: Refactor OAuth handling and improve token management
reeshika-h Aug 29, 2025
f7ae51f
chore: Release version 1.8.0 with OAuth 2.0 support and code improvem…
reeshika-h Sep 3, 2025
10383cd
refactor: Move OAuth error messages to constants and clean up imports
reeshika-h Sep 3, 2025
96403b1
fix: Update OAuth host handling to support for regions
reeshika-h Sep 9, 2025
75a6b1e
feat: Implement token storage via TokenCallback interface
reeshika-h Sep 9, 2025
0c04e34
fix: Ensure default host is properly used in OAuth config
reeshika-h Sep 9, 2025
b5feb78
Merge pull request #181 from contentstack/feat/DX-3345-OAuth-impl
reeshika-h Sep 10, 2025
87317f0
refactor: Simplify OAuth configuration methods and enhance PKCE flow …
reeshika-h Sep 15, 2025
3d91e99
refactor: Update OAuth configuration methods to enhance clarity and s…
reeshika-h Sep 15, 2025
2353b18
Merge pull request #184 from contentstack/fix/oauth-impl
reeshika-h Sep 15, 2025
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
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.8.0

### Sep 15, 2025

- Feature : OAuth 2.0 support with PKCE flow
- Improved code organization and removed redundant methods

## v1.7.1

### Jul 21, 2025
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>cms</artifactId>
<packaging>jar</packaging>
<name>contentstack-management-java</name>
<version>1.7.1</version>
<version>1.8.0</version>
<description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
API-first approach
</description>
Expand Down Expand Up @@ -363,7 +363,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<version>${jococo-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down
Loading
Loading