-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from contentstack/next
bug: [CS-37173]-unexpected-newlines
- Loading branch information
Showing
19 changed files
with
196 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Publish package to the Maven Central Repository | ||
on: | ||
release: | ||
types: [ created ] | ||
jobs: | ||
publish-maven: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Maven Central Repository | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
server-id: ossrh | ||
server-username: ${{ secrets.OSSRH_USERNAME }} | ||
server-password: ${{ secrets.OSSRH_TOKEN }} | ||
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
- name: Publish package | ||
run: mvn --batch-mode deploy | ||
publish-github: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Java for publishing to GitHub Packages | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '8' | ||
distribution: 'adopt' | ||
server-id: github | ||
- name: Publish to GitHub Packages | ||
run: mvn --batch-mode deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Authors | ||
|
||
- [ishaileshmishra](shailesh.mishra@***REMOVED***) | ||
- [shaileshmishra](mshaileshr@***REMOVED***) | ||
- [admin](dev@***REMOVED***) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
# Changelog | ||
|
||
A brief description of what changes project contains | ||
|
||
|
||
## Jun 26, 2023 | ||
#### v1.2.1 | ||
##### Jun 26, 2023 | ||
New Line Issues while rendering Json object To HTML | ||
|
||
## Updated Jsoup vulnerable dependency | ||
#### v1.2.0 | ||
##### Oct 6, 2022 | ||
- Updated Jsoup vulnerable dependency | ||
- jsonToHTML function support added | ||
|
||
|
||
## Fixed compile Issue | ||
#### v1.1.2 | ||
##### Jun 16, 2022 | ||
Fixed compile Issue | ||
|
||
## Transitive dependencies updated | ||
#### v1.1.1 | ||
##### Apr-06-2021 | ||
Updated transitive dependencies to pom.xml | ||
|
||
|
||
## JSON RTE Feature Support | ||
#### v1.1.0 | ||
##### Jun 1, 2022 | ||
JSON RTE Feature Support | ||
|
||
## Introducing Release Of Java Utils SDK | ||
#### v1.0.0 | ||
##### Apr 6, 2021 | ||
Initial release for Utils SDK | ||
## Support | ||
|
||
For support, email fake@fake.com or join our Slack channel. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Security | ||
|
||
Contentstack takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations. | ||
|
||
If you believe you have found a security vulnerability in any Contentstack-owned repository, please report it to us as described below. | ||
|
||
## Reporting Security Issues | ||
|
||
**Please do not report security vulnerabilities through public GitHub issues.** | ||
|
||
Send email to [security@***REMOVED***](mailto:security@***REMOVED***). | ||
|
||
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. | ||
|
||
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: | ||
|
||
- Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) | ||
- Full paths of source file(s) related to the manifestation of the issue | ||
- The location of the affected source code (tag/branch/commit or direct URL) | ||
- Any special configuration required to reproduce the issue | ||
- Step-by-step instructions to reproduce the issue | ||
- Proof-of-concept or exploit code (if possible) | ||
- Impact of the issue, including how an attacker might exploit the issue | ||
|
||
This information will help us triage your report more quickly. | ||
|
||
[https://www.***REMOVED***/trust/](https://www.***REMOVED***/trust/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 8 additions & 10 deletions
18
src/main/java/com/contentstack/utils/embedded/StyleType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.