-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrading webcomponents version to 0.0.25 * Issue 20329 osgi not working java 8 (#20360) * Switch byte-buddy version depending on java used to run * Remove echo * Issue 19646 improvment memory space consumption (#20370) * #19646 Improvment heap scape consumption generating a bundle * #19646 Testing * Change ee version in dependencies.properties * Revert DotSubmitterchange and validate empty file * Rever dependencies.properties change * run-all * Bump up mysql connector version to be able to run in Java 11 (#20373) * Bump up mysql connector version to be able to run in Java 11 * run-all * #20358 earlier releases had a metadata column which isn't used anymore… (#20372) * #20358 earlier releases had a metadata column which isnt used anymore and it needs to be removed. * #20358 doc test * run-all * run-all * adding doc * run-all * #20336 Improving task performance (#20374) * #20336 Improving task performance * run-all * run-all * Removing semicolon in oracle script * run-all * run-all * Adding missing semicolon * run-all * run-oracle Co-authored-by: Nollymar Longa <> * #20312 Upserts (#20367) * #20312 Upserts * run-all * #20312 sql merge clean up * #20312 fixing typos * run-all * run-all * run-all * #20312 removing empty class * #20312 format code * run-all * #20312 removing trash file * #20312 log debug * run-all * #20312 safety measure to prevent constrint violation when removing data chunks * run-all * #20312 typo * run-oracle * run-all * #20364 xml is not longer allowed on content resource (#20381) * #20364 xml is not longer allowed on content resource * #20364 adding comments * #20364 minor refactor * run-all (#20375) * Avoid Out of Memory with huge file (#20392) * #20313 making es read only monitor less noisy (#20398) * Not use RestClient as a singleton (#20385) * Not use RestClient as a singleton * Removing this.restClient variable * Closing Rest Client * Issue 20386 index discrepancies metadata folder remove task (#20396) * #20386 fixing index discrepancies + metaData dir * #20386 relocating log * #20083 Update full starter with inline editing (#20409) * #20420 adding the none version to validation type on saml (#20421) * #19646 Log error nicely (#20419) * #19646 Log error nicely * remove import * Rename AddFileNotPossibleException to FileCreationException Co-authored-by: Nollymar Longa <> Co-authored-by: Daniel Silva <[email protected]> Co-authored-by: Freddy Rodriguez <[email protected]> Co-authored-by: fabrizzio-dotCMS <[email protected]> Co-authored-by: Fabrizzio Araya <[email protected]> Co-authored-by: Nollymar Longa <[email protected]> Co-authored-by: Jonathan <[email protected]> Co-authored-by: Victor Alfaro <[email protected]>
- Loading branch information
1 parent
a4c7585
commit a77ef64
Showing
34 changed files
with
958 additions
and
146 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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"info": { | ||
"_postman_id": "0773d5de-70a0-445f-862c-928bcdfa2dda", | ||
"_postman_id": "766b73d8-a8cb-4c5b-ac3f-d971f6712b6d", | ||
"name": "Content Resource", | ||
"description": "Content Resource test", | ||
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | ||
|
@@ -456,14 +456,137 @@ | |
} | ||
}, | ||
"url": { | ||
"raw": "{{serverURL}}/api/content/", | ||
"raw": "{{serverURL}}/api/content/save/1", | ||
"host": [ | ||
"{{serverURL}}" | ||
], | ||
"path": [ | ||
"api", | ||
"content", | ||
"" | ||
"save", | ||
"1" | ||
] | ||
} | ||
}, | ||
"response": [] | ||
}, | ||
{ | ||
"name": "XML is not allowed on Save", | ||
"event": [ | ||
{ | ||
"listen": "test", | ||
"script": { | ||
"exec": [ | ||
"pm.test(\"Status code should be 400\", function () {", | ||
" pm.response.to.have.status(400);", | ||
"});", | ||
"", | ||
"", | ||
"", | ||
"" | ||
], | ||
"type": "text/javascript" | ||
} | ||
} | ||
], | ||
"request": { | ||
"auth": { | ||
"type": "basic", | ||
"basic": [ | ||
{ | ||
"key": "password", | ||
"value": "admin", | ||
"type": "string" | ||
}, | ||
{ | ||
"key": "username", | ||
"value": "[email protected]", | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
"method": "POST", | ||
"header": [], | ||
"body": { | ||
"mode": "raw", | ||
"raw": "<content>\n <contentType>webPageContent</contentType>\n <languageId>1</languageId>\n <title>test content</title>\n <contentHost>demo.dotcms.com</contentHost>\n <body>test body</body>\n</content>", | ||
"options": { | ||
"raw": { | ||
"language": "xml" | ||
} | ||
} | ||
}, | ||
"url": { | ||
"raw": "{{serverURL}}/api/content/save/1", | ||
"host": [ | ||
"{{serverURL}}" | ||
], | ||
"path": [ | ||
"api", | ||
"content", | ||
"save", | ||
"1" | ||
] | ||
} | ||
}, | ||
"response": [] | ||
}, | ||
{ | ||
"name": "XML is not allowed on Publish", | ||
"event": [ | ||
{ | ||
"listen": "test", | ||
"script": { | ||
"exec": [ | ||
"pm.test(\"Status code should be 400\", function () {", | ||
" pm.response.to.have.status(400);", | ||
"});", | ||
"", | ||
"", | ||
"", | ||
"" | ||
], | ||
"type": "text/javascript" | ||
} | ||
} | ||
], | ||
"request": { | ||
"auth": { | ||
"type": "basic", | ||
"basic": [ | ||
{ | ||
"key": "password", | ||
"value": "admin", | ||
"type": "string" | ||
}, | ||
{ | ||
"key": "username", | ||
"value": "[email protected]", | ||
"type": "string" | ||
} | ||
] | ||
}, | ||
"method": "PUT", | ||
"header": [], | ||
"body": { | ||
"mode": "raw", | ||
"raw": "<java.util.PriorityQueue serialization=\"custom\">\n <unserializable-parents/>\n <java.util.PriorityQueue>\n <default>\n <size>2</size>\n <comparator class=\"org.apache.commons.beanutils.BeanComparator\">\n <property>databaseMetaData</property>\n <comparator class=\"java.util.Collections$ReverseComparator\"/>\n </comparator>\n </default>\n <int>3</int>\n <com.sun.rowset.JdbcRowSetImpl serialization=\"custom\">\n <javax.sql.rowset.BaseRowSet>\n <default>\n <concurrency>1008</concurrency>\n <escapeProcessing>true</escapeProcessing>\n <fetchDir>1000</fetchDir>\n <fetchSize>0</fetchSize>\n <isolation>2</isolation>\n <maxFieldSize>0</maxFieldSize>\n <maxRows>0</maxRows>\n <queryTimeout>0</queryTimeout>\n <readOnly>true</readOnly>\n <rowSetType>1004</rowSetType>\n <showDeleted>false</showDeleted>\n <dataSource>jdbc/dotCMSPool</dataSource>\n <params/>\n </default>\n </javax.sql.rowset.BaseRowSet>\n <com.sun.rowset.JdbcRowSetImpl>\n <default>\n <iMatchColumns>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n <int>-1</int>\n </iMatchColumns>\n <strMatchColumns>\n <string>foo</string>\n <null/>\n <null/>\n <null/>\n <null/>\n <null/>\n <null/>\n <null/>\n <null/>\n <null/>\n </strMatchColumns>\n </default>\n </com.sun.rowset.JdbcRowSetImpl>\n </com.sun.rowset.JdbcRowSetImpl>\n <com.sun.rowset.JdbcRowSetImpl reference=\"../com.sun.rowset.JdbcRowSetImpl\"/>\n </java.util.PriorityQueue>\n</java.util.PriorityQueue>", | ||
"options": { | ||
"raw": { | ||
"language": "xml" | ||
} | ||
} | ||
}, | ||
"url": { | ||
"raw": "{{serverURL}}/api/content/publish/1", | ||
"host": [ | ||
"{{serverURL}}" | ||
], | ||
"path": [ | ||
"api", | ||
"content", | ||
"publish", | ||
"1" | ||
] | ||
} | ||
}, | ||
|
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
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.