contentstack 0.6.3.1 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/check-branch.yml +20 -0
  3. data/.github/workflows/codeql-analysis.yml +68 -68
  4. data/.github/workflows/jira.yml +28 -28
  5. data/.github/workflows/release-gem.yml +27 -31
  6. data/.github/workflows/sca-scan.yml +15 -15
  7. data/.gitignore +11 -11
  8. data/.yardopts +6 -6
  9. data/CHANGELOG.md +135 -114
  10. data/CODEOWNERS +1 -1
  11. data/CODE_OF_CONDUCT.md +73 -73
  12. data/Gemfile +2 -2
  13. data/Gemfile.lock +84 -76
  14. data/LICENSE.txt +21 -21
  15. data/README.md +197 -197
  16. data/SECURITY.md +27 -27
  17. data/contentstack.gemspec +29 -29
  18. data/lib/contentstack/api.rb +191 -191
  19. data/lib/contentstack/asset.rb +68 -68
  20. data/lib/contentstack/asset_collection.rb +27 -27
  21. data/lib/contentstack/client.rb +127 -92
  22. data/lib/contentstack/content_type.rb +53 -53
  23. data/lib/contentstack/entry.rb +235 -221
  24. data/lib/contentstack/entry_collection.rb +44 -44
  25. data/lib/contentstack/error.rb +6 -6
  26. data/lib/contentstack/query.rb +665 -653
  27. data/lib/contentstack/region.rb +15 -6
  28. data/lib/contentstack/sync_result.rb +29 -29
  29. data/lib/contentstack/version.rb +3 -3
  30. data/lib/contentstack.rb +31 -31
  31. data/lib/util.rb +110 -110
  32. data/rakefile.rb +3 -3
  33. data/spec/asset_collection_spec.rb +15 -15
  34. data/spec/asset_spec.rb +47 -47
  35. data/spec/content_type_spec.rb +80 -80
  36. data/spec/contentstack_spec.rb +69 -39
  37. data/spec/entry_collection_spec.rb +41 -41
  38. data/spec/entry_spec.rb +116 -101
  39. data/spec/fixtures/asset.json +1 -1
  40. data/spec/fixtures/asset_collection.json +1 -1
  41. data/spec/fixtures/category_content_type.json +1 -1
  42. data/spec/fixtures/category_entry.json +1 -1
  43. data/spec/fixtures/category_entry_collection.json +1 -1
  44. data/spec/fixtures/category_entry_collection_without_count.json +1 -1
  45. data/spec/fixtures/content_types.json +1 -1
  46. data/spec/fixtures/product_entry.json +1 -1
  47. data/spec/fixtures/product_entry_collection.json +1 -1
  48. data/spec/fixtures/sync_init.json +2974 -2974
  49. data/spec/query_spec.rb +210 -205
  50. data/spec/spec_helper.rb +180 -180
  51. data/spec/sync_spec.rb +26 -26
  52. metadata +7 -8
  53. data/.github/workflows/sast-scan.yml +0 -11
  54. data/.github/workflows/secrets-scan.yml +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f14695f1861ed1b07a85cfe6d23e722c2a6a33903728e2e06e4807838d730ff
4
- data.tar.gz: a86c8a4d86482aa468c1ac1e8358621e9088338f5e011d70e49b2558175a769b
3
+ metadata.gz: 79cfe8aeaad0941d21a637ef8f87713cbaaf4a51376bb1969b45c59565536302
4
+ data.tar.gz: bd4f522c7f22bafd7d0fa4b3aedd831545cf45be8d5ba66c13a02bd7e336cfb4
5
5
  SHA512:
6
- metadata.gz: bfef2767aa76ecc46237715014e9911b35d86e29213b44cb5a5a380a78bb36b356ac35cb1cc8150b0b0518e109b3656aa89a0a30a99f04246deae05070758f80
7
- data.tar.gz: 8f2ea750a2ba6aa291e53f578b3f7a41ae4018e7930215899bc3cbc5b6315d6c737df16430c943805143f5663b4d3acebf6fd4979e8dcfa54c3f7921061d8784
6
+ metadata.gz: bf719d78118b2c1d1ebf10e1cc7ae47bf9b548f158b4d4399e0f1d4813fd39636eb7f0c92e1614a102ce880ce901dd09939bcbd31dd22617b4c78501a8d0d9ab
7
+ data.tar.gz: 67262e37224ce8a9d0249b497a09caeefea1ed99a3ea5bcd63833fa78551774c824946f18a6b7a56916ba328db914dc7bbb4f7f05772ce2c2da7090a264b9947
@@ -0,0 +1,20 @@
1
+ name: 'Check Branch'
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ jobs:
7
+ check_branch:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Comment PR
11
+ if: github.base_ref == 'master' && github.head_ref != 'next'
12
+ uses: thollander/actions-comment-pull-request@v2
13
+ with:
14
+ message: |
15
+ We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the next branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch.
16
+ - name: Check branch
17
+ if: github.base_ref == 'master' && github.head_ref != 'next'
18
+ run: |
19
+ echo "ERROR: We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the next branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch."
20
+ exit 1
@@ -1,68 +1,68 @@
1
- # For most projects, this workflow file will not need changing; you simply need
2
- # to commit it to your repository.
3
- #
4
- # You may wish to alter this file to override the set of languages analyzed,
5
- # or to provide custom queries or build logic.
6
- #
7
- # ******** NOTE ********
8
- # We have attempted to detect the languages in your repository. Please check
9
- # the `language` matrix defined below to confirm you have the correct set of
10
- # supported CodeQL languages.
11
- #
12
- name: "CodeQL"
13
-
14
- on:
15
- pull_request:
16
- # The branches below must be a subset of the branches above
17
- branches: '*'
18
-
19
- jobs:
20
- analyze:
21
- name: Analyze
22
- runs-on: ubuntu-latest
23
- permissions:
24
- actions: read
25
- contents: read
26
- security-events: write
27
-
28
- strategy:
29
- fail-fast: false
30
- matrix:
31
- language: [ 'ruby' ]
32
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
33
- # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
34
-
35
- steps:
36
- - name: Checkout repository
37
- uses: actions/checkout@v3
38
-
39
- # Initializes the CodeQL tools for scanning.
40
- - name: Initialize CodeQL
41
- uses: github/codeql-action/init@v2
42
- with:
43
- languages: ${{ matrix.language }}
44
- # If you wish to specify custom queries, you can do so here or in a config file.
45
- # By default, queries listed here will override any specified in a config file.
46
- # Prefix the list here with "+" to use these queries and those in the config file.
47
-
48
- # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
49
- # queries: security-extended,security-and-quality
50
-
51
-
52
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
53
- # If this step fails, then you should remove it and run the build manually (see below)
54
- - name: Autobuild
55
- uses: github/codeql-action/autobuild@v2
56
-
57
- # ℹ️ Command-line programs to run using the OS shell.
58
- # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
59
-
60
- # If the Autobuild fails above, remove it and uncomment the following three lines.
61
- # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
62
-
63
- # - run: |
64
- # echo "Run, Build Application using script"
65
- # ./location_of_script_within_repo/buildscript.sh
66
-
67
- - name: Perform CodeQL Analysis
68
- uses: github/codeql-action/analyze@v2
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ pull_request:
16
+ # The branches below must be a subset of the branches above
17
+ branches: '*'
18
+
19
+ jobs:
20
+ analyze:
21
+ name: Analyze
22
+ runs-on: ubuntu-latest
23
+ permissions:
24
+ actions: read
25
+ contents: read
26
+ security-events: write
27
+
28
+ strategy:
29
+ fail-fast: false
30
+ matrix:
31
+ language: [ 'ruby' ]
32
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
33
+ # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
34
+
35
+ steps:
36
+ - name: Checkout repository
37
+ uses: actions/checkout@v3
38
+
39
+ # Initializes the CodeQL tools for scanning.
40
+ - name: Initialize CodeQL
41
+ uses: github/codeql-action/init@v2
42
+ with:
43
+ languages: ${{ matrix.language }}
44
+ # If you wish to specify custom queries, you can do so here or in a config file.
45
+ # By default, queries listed here will override any specified in a config file.
46
+ # Prefix the list here with "+" to use these queries and those in the config file.
47
+
48
+ # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
49
+ # queries: security-extended,security-and-quality
50
+
51
+
52
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
53
+ # If this step fails, then you should remove it and run the build manually (see below)
54
+ - name: Autobuild
55
+ uses: github/codeql-action/autobuild@v2
56
+
57
+ # ℹ️ Command-line programs to run using the OS shell.
58
+ # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
59
+
60
+ # If the Autobuild fails above, remove it and uncomment the following three lines.
61
+ # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
62
+
63
+ # - run: |
64
+ # echo "Run, Build Application using script"
65
+ # ./location_of_script_within_repo/buildscript.sh
66
+
67
+ - name: Perform CodeQL Analysis
68
+ uses: github/codeql-action/analyze@v2
@@ -1,28 +1,28 @@
1
- name: Create JIRA ISSUE
2
- on:
3
- pull_request:
4
- types: [opened]
5
- jobs:
6
- security:
7
- if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
8
- runs-on: ubuntu-latest
9
- steps:
10
- - uses: actions/checkout@v2
11
- - name: Login into JIRA
12
- uses: atlassian/gajira-login@master
13
- env:
14
- JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
15
- JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
16
- JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
17
- - name: Create a JIRA Issue
18
- id: create
19
- uses: atlassian/gajira-create@master
20
- with:
21
- project: ${{ secrets.JIRA_PROJECT }}
22
- issuetype: ${{ secrets.JIRA_ISSUE_TYPE }}
23
- summary: |
24
- ${{ github.event.pull_request.title }}
25
- description: |
26
- PR: ${{ github.event.pull_request.html_url }}
27
-
28
- fields: "${{ secrets.JIRA_FIELDS }}"
1
+ name: Create JIRA ISSUE
2
+ on:
3
+ pull_request:
4
+ types: [opened]
5
+ jobs:
6
+ security:
7
+ if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Login into JIRA
12
+ uses: atlassian/gajira-login@master
13
+ env:
14
+ JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
15
+ JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
16
+ JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
17
+ - name: Create a JIRA Issue
18
+ id: create
19
+ uses: atlassian/gajira-create@master
20
+ with:
21
+ project: ${{ secrets.JIRA_PROJECT }}
22
+ issuetype: ${{ secrets.JIRA_ISSUE_TYPE }}
23
+ summary: |
24
+ ${{ github.event.pull_request.title }}
25
+ description: |
26
+ PR: ${{ github.event.pull_request.html_url }}
27
+
28
+ fields: "${{ secrets.JIRA_FIELDS }}"
@@ -1,31 +1,27 @@
1
- name: Ruby Gem
2
-
3
- on:
4
- release:
5
- types: [created]
6
-
7
- jobs:
8
- build:
9
- name: Build + Publish
10
- runs-on: ubuntu-latest
11
- permissions:
12
- contents: read
13
- packages: write
14
-
15
- steps:
16
- - uses: actions/checkout@v3
17
- - name: Set up Ruby 2.6
18
- uses: actions/setup-ruby@v1
19
- with:
20
- ruby-version: 2.6.x
21
-
22
- - name: Publish to RubyGems
23
- run: |
24
- mkdir -p $HOME/.gem
25
- touch $HOME/.gem/credentials
26
- chmod 0600 $HOME/.gem/credentials
27
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
28
- gem build *.gemspec
29
- gem push *.gem
30
- env:
31
- GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
1
+ name: Ruby Gem
2
+
3
+ on:
4
+ release:
5
+ types: [created]
6
+
7
+ jobs:
8
+ build:
9
+ name: Build + Publish
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: read
13
+ packages: write
14
+
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: Set up Ruby 2.7
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: '2.7'
21
+
22
+ - name: Publish to RubyGems
23
+ run: |
24
+ gem build *.gemspec
25
+ gem push *.gem
26
+ env:
27
+ GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_AUTH_TOKEN }}
@@ -1,15 +1,15 @@
1
- name: Source Composition Analysis Scan
2
- on:
3
- pull_request:
4
- types: [opened, synchronize, reopened]
5
- jobs:
6
- security:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: actions/checkout@master
10
- - name: Run Snyk to check for vulnerabilities
11
- uses: snyk/actions/ruby@master
12
- env:
13
- SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
14
- with:
15
- args: --fail-on=all
1
+ name: Source Composition Analysis Scan
2
+ on:
3
+ pull_request:
4
+ types: [opened, synchronize, reopened]
5
+ jobs:
6
+ security:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@master
10
+ - name: Run Snyk to check for vulnerabilities
11
+ uses: snyk/actions/ruby@master
12
+ env:
13
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
14
+ with:
15
+ args: --fail-on=all
data/.gitignore CHANGED
@@ -1,12 +1,12 @@
1
- contentstack-*
2
- build_doc.sh
3
- test
4
- doc
5
- spec-integration
6
- coverage
7
- \.yardoc
8
- .DS_Store
9
- .bundle/
10
- **/rspec_results.html
11
- vendor/
1
+ contentstack-*
2
+ build_doc.sh
3
+ test
4
+ doc
5
+ spec-integration
6
+ coverage
7
+ \.yardoc
8
+ .DS_Store
9
+ .bundle/
10
+ **/rspec_results.html
11
+ vendor/
12
12
  .dccache
data/.yardopts CHANGED
@@ -1,6 +1,6 @@
1
- README.rdoc
2
- lib/contentstack/*
3
- lib/contentstack.rb
4
- --exclude lib/contentstack/util.rb
5
- --exclude lib/contentstack/api.rb
6
- --exclude lib/contentstack/version.rb
1
+ README.rdoc
2
+ lib/contentstack/*
3
+ lib/contentstack.rb
4
+ --exclude lib/contentstack/util.rb
5
+ --exclude lib/contentstack/api.rb
6
+ --exclude lib/contentstack/version.rb
data/CHANGELOG.md CHANGED
@@ -1,115 +1,136 @@
1
- ## CHANGELOG
2
-
3
- ## Version 0.6.3
4
- ### Date: 16th-Mar-2023
5
- ### Package Update
6
- - Dependency gem max version issue resolved.
7
-
8
- ------------------------------------------------
9
- ## Version 0.6.2
10
- ### Date: 27th-Feb-2023
11
- ### Package Update
12
- - Dependency gem update.
13
-
14
- ------------------------------------------------
15
- ## Version 0.6.1
16
- ### Date: 9th-Sept-2022
17
- ### Bug
18
- - Live Preview feature for entry with reference update.
19
-
20
- ------------------------------------------------
21
- ## Version 0.6.0
22
- ### Date: 17th-Aug-2022
23
- ### New Features
24
- - Proxy and Retry functionality support added.
25
-
26
- ------------------------------------------------
27
- ## Version 0.5.1
28
- ### Date: 21st-Apr-2022
29
- ### Package Update
30
- - API request with URI.OPEN issue resolved.
31
-
32
- ------------------------------------------------
33
- ## Version 0.5.0
34
- ### Date: 8th-Dec-2021
35
- ### New Feature
36
- - Live Preview feature support added.
37
-
38
- ------------------------------------------------
39
- ## Version 0.4.3
40
- ### Date: 17th-Sept-2021
41
- ### Dependency update
42
- - Issue for Monkey patching resolved. Implemented Refine to extend class within module scope.
43
-
44
- ------------------------------------------------
45
- ## Version 0.4.2
46
- ### Date: 2nd-Sept-2021
47
- ### Dependency update
48
- - Added URI open on open uri deprecation
49
-
50
- ------------------------------------------------
51
- ## Version 0.4.1
52
- ### Date: 2nd-Jun-2021
53
- ### Dependency update
54
- - Updated gemspec dependency
55
-
56
- ------------------------------------------------
57
-
58
- ## Version 0.4.0
59
- ### Date: 16th-Apr-2021
60
- ### New Features
61
- - Embedded feature Support added
62
-
63
- ------------------------------------------------
64
-
65
- ## Version 0.3.0
66
- ### Date: 17th-Mar-2021
67
- ### New Features
68
- - Sync API module support added
69
-
70
- ------------------------------------------------
71
- ## Version 0.2.0
72
-
73
- ### New Features
74
- - Entry
75
- - locale - function for passing locale is added
76
- - only - function for getting only specified field
77
- - except - function for getting field except specified field
78
- - include_reference - function for including reference in entry
79
- - include_schema - function for including schema along with entry added
80
- - include_content_type - function for including content type details along with entry added
81
- - include_owner - function for getting owner of entry
82
- - include_fallback - function for getting published fallback locale content, if specified locale content is not published
83
-
84
- - Query
85
- - include_fallback - function for getting published fallback locale content, if specified locale content is not published
86
-
87
-
88
- ------------------------------------------------
89
-
90
- ## Version 0.1.0
91
-
92
- ### Bug
93
- - Stack Tokens Moved to Headers
94
-
95
- ------------------------------------------------
96
-
97
- ## Version 0.0.4
98
-
99
- ### Enhancement
100
- - Region support added
101
-
102
- ------------------------------------------------
103
-
104
- ## Version 0.0.3
105
-
106
- ### Enhancement
107
- - Query - function for passing locale is added.
108
-
109
- ------------------------------------------------
110
-
111
- ## Version 0.0.1
112
-
113
- - Initial release
114
-
1
+ ## CHANGELOG
2
+
3
+ ## Version 0.8.0
4
+ ### Date: 14th-May-2024
5
+ ### Enhancement
6
+ - Region support for GCP-NA added
7
+
8
+ ------------------------------------------------
9
+ ## Version 0.7.0
10
+ ### Date: 17th-Apr-2023
11
+ ### Enhancement
12
+ - Include metadata support for Asset, Entry and Query,
13
+ - Region support for Azure-EU added
14
+
15
+ ------------------------------------------------
16
+
17
+ ## Version 0.6.3.1
18
+ ### Date: 17th-Mar-2023
19
+ ### Package Update
20
+ - Activesupport gem version limit removed (for supporting ruby v3.0 and above) .
21
+
22
+ ------------------------------------------------
23
+
24
+ ## Version 0.6.3
25
+ ### Date: 16th-Mar-2023
26
+ ### Package Update
27
+ - Dependency gem max version issue resolved.
28
+
29
+ ------------------------------------------------
30
+ ## Version 0.6.2
31
+ ### Date: 27th-Feb-2023
32
+ ### Package Update
33
+ - Dependency gem update.
34
+
35
+ ------------------------------------------------
36
+ ## Version 0.6.1
37
+ ### Date: 9th-Sept-2022
38
+ ### Bug
39
+ - Live Preview feature for entry with reference update.
40
+
41
+ ------------------------------------------------
42
+ ## Version 0.6.0
43
+ ### Date: 17th-Aug-2022
44
+ ### New Features
45
+ - Proxy and Retry functionality support added.
46
+
47
+ ------------------------------------------------
48
+ ## Version 0.5.1
49
+ ### Date: 21st-Apr-2022
50
+ ### Package Update
51
+ - API request with URI.OPEN issue resolved.
52
+
53
+ ------------------------------------------------
54
+ ## Version 0.5.0
55
+ ### Date: 8th-Dec-2021
56
+ ### New Feature
57
+ - Live Preview feature support added.
58
+
59
+ ------------------------------------------------
60
+ ## Version 0.4.3
61
+ ### Date: 17th-Sept-2021
62
+ ### Dependency update
63
+ - Issue for Monkey patching resolved. Implemented Refine to extend class within module scope.
64
+
65
+ ------------------------------------------------
66
+ ## Version 0.4.2
67
+ ### Date: 2nd-Sept-2021
68
+ ### Dependency update
69
+ - Added URI open on open uri deprecation
70
+
71
+ ------------------------------------------------
72
+ ## Version 0.4.1
73
+ ### Date: 2nd-Jun-2021
74
+ ### Dependency update
75
+ - Updated gemspec dependency
76
+
77
+ ------------------------------------------------
78
+
79
+ ## Version 0.4.0
80
+ ### Date: 16th-Apr-2021
81
+ ### New Features
82
+ - Embedded feature Support added
83
+
84
+ ------------------------------------------------
85
+
86
+ ## Version 0.3.0
87
+ ### Date: 17th-Mar-2021
88
+ ### New Features
89
+ - Sync API module support added
90
+
91
+ ------------------------------------------------
92
+ ## Version 0.2.0
93
+
94
+ ### New Features
95
+ - Entry
96
+ - locale - function for passing locale is added
97
+ - only - function for getting only specified field
98
+ - except - function for getting field except specified field
99
+ - include_reference - function for including reference in entry
100
+ - include_schema - function for including schema along with entry added
101
+ - include_content_type - function for including content type details along with entry added
102
+ - include_owner - function for getting owner of entry
103
+ - include_fallback - function for getting published fallback locale content, if specified locale content is not published
104
+
105
+ - Query
106
+ - include_fallback - function for getting published fallback locale content, if specified locale content is not published
107
+
108
+
109
+ ------------------------------------------------
110
+
111
+ ## Version 0.1.0
112
+
113
+ ### Bug
114
+ - Stack Tokens Moved to Headers
115
+
116
+ ------------------------------------------------
117
+
118
+ ## Version 0.0.4
119
+
120
+ ### Enhancement
121
+ - Region support added
122
+
123
+ ------------------------------------------------
124
+
125
+ ## Version 0.0.3
126
+
127
+ ### Enhancement
128
+ - Query - function for passing locale is added.
129
+
130
+ ------------------------------------------------
131
+
132
+ ## Version 0.0.1
133
+
134
+ - Initial release
135
+
115
136
  ------------------------------------------------
data/CODEOWNERS CHANGED
@@ -1 +1 @@
1
- * @contentstack/security-admin @contentstack/sdk-admin
1
+ * @contentstack/security-admin