Skip to content

Commit 9cc089c

Browse files
shaileshmishrashaileshmishra
shaileshmishra
authored and
shaileshmishra
committed
include_fallback
docs README.md testcase
1 parent 4e8d370 commit 9cc089c

File tree

4 files changed

+423
-123
lines changed

4 files changed

+423
-123
lines changed

.gitignore

+254-18
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,260 @@
1-
# Package Files #
2-
#*.jar
3-
*.ear
1+
### Code-Java ###
2+
# Language Support for Java(TM) by Red Hat extension for Visual Studio Code - https://marketplace.visualstudio.com/items?itemName=redhat.java
43

5-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
6-
hs_err_pid*
7-
!/src/main/java/Test.java
4+
.project
5+
.classpath
6+
factoryConfiguration.json
87

9-
# OS generated files #
10-
.DS_Store
11-
.DS_Store?
8+
### Eclipse ###
9+
.metadata
10+
bin/
11+
tmp/
12+
*.tmp
13+
*.bak
14+
*.swp
15+
*~.nib
16+
local.properties
17+
.settings/
18+
.loadpath
19+
.recommenders
20+
21+
# External tool builders
22+
.externalToolBuilders/
23+
24+
# Locally stored "Eclipse launch configurations"
25+
*.launch
26+
27+
# PyDev specific (Python IDE for Eclipse)
28+
*.pydevproject
29+
30+
# CDT-specific (C/C++ Development Tooling)
31+
.cproject
32+
33+
# CDT- autotools
34+
.autotools
35+
36+
# Java annotation processor (APT)
37+
.factorypath
38+
39+
# PDT-specific (PHP Development Tools)
40+
.buildpath
41+
42+
# sbteclipse plugin
43+
.target
44+
45+
# Tern plugin
46+
.tern-project
47+
48+
# TeXlipse plugin
49+
.texlipse
50+
51+
# STS (Spring Tool Suite)
52+
.springBeans
53+
54+
# Code Recommenders
55+
.recommenders/
56+
57+
# Annotation Processing
58+
.apt_generated/
59+
.apt_generated_test/
1260

61+
# Scala IDE specific (Scala & Java development for Eclipse)
62+
.cache-main
63+
.scala_dependencies
64+
.worksheet
1365

14-
# Compiled source files #
15-
*.iml
16-
/target/
17-
/out/
18-
/profiles.xml/
19-
*.class
66+
# Uncomment this line if you wish to ignore the project description file.
67+
# Typically, this file would be tracked if it contains build/dependency configurations:
68+
#.project
69+
70+
### Eclipse Patch ###
71+
# Spring Boot Tooling
72+
.sts4-cache/
73+
74+
### Intellij ###
75+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
76+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
77+
78+
# User-specific stuff
79+
.idea/**/workspace.xml
80+
.idea/**/tasks.xml
81+
.idea/**/usage.statistics.xml
82+
.idea/**/dictionaries
83+
.idea/**/shelf
84+
85+
# Generated files
86+
.idea/**/contentModel.xml
87+
88+
# Sensitive or high-churn files
89+
.idea/**/dataSources/
90+
.idea/**/dataSources.ids
91+
.idea/**/dataSources.local.xml
92+
.idea/**/sqlDataSources.xml
93+
.idea/**/dynamic.xml
94+
.idea/**/uiDesigner.xml
95+
.idea/**/dbnavigator.xml
96+
97+
# Gradle
98+
.idea/**/gradle.xml
99+
.idea/**/libraries
100+
101+
# Gradle and Maven with auto-import
102+
# When using Gradle or Maven with auto-import, you should exclude module files,
103+
# since they will be recreated, and may cause churn. Uncomment if using
104+
# auto-import.
105+
# .idea/artifacts
106+
# .idea/compiler.xml
107+
# .idea/jarRepositories.xml
108+
# .idea/modules.xml
109+
# .idea/*.iml
110+
# .idea/modules
111+
# *.iml
112+
# *.ipr
113+
114+
# CMake
115+
cmake-build-*/
116+
117+
# Mongo Explorer plugin
118+
.idea/**/mongoSettings.xml
119+
120+
# File-based project format
121+
*.iws
122+
123+
# IntelliJ
20124
out/
125+
126+
# mpeltonen/sbt-idea plugin
127+
.idea_modules/
128+
129+
# JIRA plugin
130+
atlassian-ide-plugin.xml
131+
132+
# Cursive Clojure plugin
133+
.idea/replstate.xml
134+
135+
# Crashlytics plugin (for Android Studio and IntelliJ)
136+
com_crashlytics_export_strings.xml
137+
crashlytics.properties
138+
crashlytics-build.properties
139+
fabric.properties
140+
141+
# Editor-based Rest Client
142+
.idea/httpRequests
143+
144+
# Android studio 3.1+ serialized cache file
145+
.idea/caches/build_file_checksums.ser
146+
147+
### Intellij Patch ###
148+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
149+
150+
# *.iml
151+
# modules.xml
152+
# .idea/misc.xml
153+
# *.ipr
154+
155+
# Sonarlint plugin
156+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
157+
.idea/**/sonarlint/
158+
159+
# SonarQube Plugin
160+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
161+
.idea/**/sonarIssues.xml
162+
163+
# Markdown Navigator plugin
164+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
165+
.idea/**/markdown-navigator.xml
166+
.idea/**/markdown-navigator-enh.xml
167+
.idea/**/markdown-navigator/
168+
169+
# Cache file creation bug
170+
# See https://youtrack.jetbrains.com/issue/JBR-2257
171+
.idea/$CACHE_FILE$
172+
173+
# CodeStream plugin
174+
# https://plugins.jetbrains.com/plugin/12206-codestream
175+
.idea/codestream.xml
176+
177+
### Java-Web ###
178+
## ignoring target file
179+
target/
180+
181+
### macOS ###
182+
# General
183+
.DS_Store
184+
.AppleDouble
185+
.LSOverride
186+
187+
# Icon must end with two \r
188+
Icon
189+
190+
# Thumbnails
191+
._*
192+
193+
# Files that might appear in the root of a volume
194+
.DocumentRevisions-V100
195+
.fseventsd
196+
.Spotlight-V100
197+
.TemporaryItems
198+
.Trashes
199+
.VolumeIcon.icns
200+
.com.apple.timemachine.donotpresent
201+
202+
# Directories potentially created on remote AFP share
203+
.AppleDB
204+
.AppleDesktop
205+
Network Trash Folder
206+
Temporary Items
207+
.apdisk
208+
209+
### Maven ###
210+
pom.xml.tag
211+
pom.xml.releaseBackup
212+
pom.xml.versionsBackup
213+
pom.xml.next
214+
release.properties
215+
dependency-reduced-pom.xml
216+
buildNumber.properties
217+
.mvn/timing.properties
218+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
219+
.mvn/wrapper/maven-wrapper.jar
220+
221+
### VisualStudioCode ###
222+
.vscode/*
223+
!.vscode/settings.json
224+
!.vscode/tasks.json
225+
!.vscode/launch.json
226+
!.vscode/extensions.json
227+
*.code-workspace
228+
229+
### VisualStudioCode Patch ###
230+
# Ignore all local history of files
231+
.history
232+
233+
### Gradle ###
234+
.gradle
21235
build/
22-
.idea/
23-
*.log
24-
CSLoggerLevel/
236+
237+
# Ignore Gradle GUI config
238+
gradle-app.setting
239+
240+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
241+
!gradle-wrapper.jar
242+
243+
# Cache of project
244+
.gradletasknamecache
245+
246+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
247+
# gradle/wrapper/gradle-wrapper.properties
248+
249+
### Gradle Patch ###
250+
**/build/
251+
252+
# End of https://www.toptal.com/developers/gitignore/api/macos,code-java,java-web,maven,gradle,intellij,visualstudiocode,eclipse
253+
.idea/compiler.xml
254+
.idea/encodings.xml
255+
.idea/jarRepositories.xml
256+
.idea/misc.xml
257+
.idea/modules.xml
258+
.idea/vcs.xml
259+
java.iml
260+
src/main/resources/

CHANGELOG.md

+32-24
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,91 @@
11

22
## CHANGELOG
33

4+
------------------------------------------------
5+
6+
## Version 1.5.4
7+
###### Date: 20-Oct-2020
8+
- **Asset** includeFallback support added
9+
- **AssetQuery** includeFallback support added
10+
- **Entry** includeFallback support added
11+
- **Query** includeFallback support added
412

513
------------------------------------------------
614

715
## Version 1.5.3
816
###### Date: 28-July-2020
9-
- [Build Issue] : Build update issue fixed
17+
- **Build Issue** Build update issue fixed
1018

1119
------------------------------------------------
1220

1321
## Version 1.5.2
1422
###### Date: 23-July-2020
15-
- [Bump Issue] : Bump Issue: log4j-core from 2.5 to 2.13.2
16-
- [Query] : Query.locale() documentation
17-
- [ CSHttpConnection ] : StandardCharsets.UTF_8 Support Added
23+
- **Bump Issue** : Bump Issue: log4j-core from 2.5 to 2.13.2
24+
- **Query** : Query.locale() documentation
25+
- **CSHttpConnection** : StandardCharsets.UTF_8 Support Added
1826

1927

2028
------------------------------------------------
2129

2230
## Version 1.5.1
2331
###### Date: 13-Jan-2020
24-
- [ dependency vulnerability ] : Java Github reported vulnerable issue on dependency logj
32+
- **Dependency Vulnerability** Java Github reported vulnerable issue on dependency logj
2533

2634
------------------------------------------------
2735

2836
## Version 1.5.0
2937
###### Date: 15-Nov-2019
30-
- [Stack]: Added support for function getContentType()
31-
- [ContentType]: updated function fetch()
32-
- [Query]: Updated support of whereIn(String KEY, Query queryObject)
33-
- [Query]: Updated support of whereNotIn(String KEY, Query queryObject)
38+
- **Stack**: Added support for function getContentType()
39+
- **ContentType**: updated function fetch()
40+
- **Query**: Updated support of whereIn(String KEY, Query queryObject)
41+
- **Query**: Updated support of whereNotIn(String KEY, Query queryObject)
3442

3543
------------------------------------------------
3644

3745
## Version 1.4.2
3846
###### Date: 03-Sept-2019
39-
- [Config] - Added support for Region in Config.
47+
- **Config** - Added support for Region in Config.
4048

4149
------------------------------------------------
4250

4351
## Version 1.4.1
4452
###### Date: 21-August-2019
45-
- [Query] - Added support for whereIn(String key) and whereNotIn(String key) methods
46-
- [CSAppConstants] - Removed google internet connection check from CSAppConstants
53+
- **Query** - Added support for whereIn(String key) and whereNotIn(String key) methods
54+
- **CSAppConstants** - Removed google internet connection check from CSAppConstants
4755

4856
------------------------------------------------
4957

5058

5159
## Version 1.4.0
5260
###### Date: 26-July-2019
53-
- [Entry] - Added support for includeReferenceContentTypeUid support in Entry.
54-
- [Query] - Added support for includeReferenceContentTypeUid support in Query.
55-
- [Entry] - setLanguage and getLanguage Deprecated in Entry.
56-
- [Query] - language deprecated in Query
57-
- [Entry] - Added method for getLocale and setLocale(String locale) in Entry
58-
- [Query] - Added method for locale in Query.
59-
- [Query] - Removed deprecated method for includeSchema in Query
61+
- **Entry** - Added support for includeReferenceContentTypeUid support in Entry.
62+
- **Query** - Added support for includeReferenceContentTypeUid support in Query.
63+
- **Entry** - setLanguage and getLanguage Deprecated in Entry.
64+
- **Query** - language deprecated in Query
65+
- **Entry** - Added method for getLocale and setLocale(String locale) in Entry
66+
- **Query** - Added method for locale in Query.
67+
- **Query** - Removed deprecated method for includeSchema in Query
6068

6169
------------------------------------------------
6270

6371

6472
## Version 1.3.3
6573
###### Date: 21-June-2019
66-
- Override response hot-fix
74+
- **HOTFIX**: Override response hot-fix
6775

6876
------------------------------------------------
6977

7078
## Version 1.3.2
7179
### Date: 13-May-2019
72-
- Removed println
73-
- Added support for Logger
80+
- **Code Improvement** Removed println
81+
- **Code Improvement** Added support for Logger
7482

7583
------------------------------------------------
7684

7785
## Version 1.3.1
7886
###### Date: May-02-2019
79-
- Change: include reference bug fixed
80-
- added testcase report for v1.3.1
87+
- **Change**: include reference bug fixed
88+
- **Added testcase** report for v1.3.1
8189

8290

8391
------------------------------------------------

pom.properties

-4
This file was deleted.

0 commit comments

Comments
 (0)