contentstack 0.6.3.1 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
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 +30 -30
  6. data/.github/workflows/sast-scan.yml +10 -10
  7. data/.github/workflows/sca-scan.yml +15 -15
  8. data/.github/workflows/secrets-scan.yml +10 -10
  9. data/.gitignore +11 -11
  10. data/.yardopts +6 -6
  11. data/CHANGELOG.md +129 -114
  12. data/CODEOWNERS +1 -1
  13. data/CODE_OF_CONDUCT.md +73 -73
  14. data/Gemfile +2 -2
  15. data/Gemfile.lock +79 -76
  16. data/LICENSE.txt +21 -21
  17. data/README.md +197 -197
  18. data/SECURITY.md +27 -27
  19. data/contentstack.gemspec +29 -29
  20. data/lib/contentstack/api.rb +191 -191
  21. data/lib/contentstack/asset.rb +68 -68
  22. data/lib/contentstack/asset_collection.rb +27 -27
  23. data/lib/contentstack/client.rb +122 -91
  24. data/lib/contentstack/content_type.rb +53 -53
  25. data/lib/contentstack/entry.rb +235 -221
  26. data/lib/contentstack/entry_collection.rb +44 -44
  27. data/lib/contentstack/error.rb +6 -6
  28. data/lib/contentstack/query.rb +665 -653
  29. data/lib/contentstack/region.rb +13 -5
  30. data/lib/contentstack/sync_result.rb +29 -29
  31. data/lib/contentstack/version.rb +2 -2
  32. data/lib/contentstack.rb +31 -31
  33. data/lib/util.rb +110 -110
  34. data/rakefile.rb +3 -3
  35. data/spec/asset_collection_spec.rb +15 -15
  36. data/spec/asset_spec.rb +47 -47
  37. data/spec/content_type_spec.rb +80 -80
  38. data/spec/contentstack_spec.rb +63 -38
  39. data/spec/entry_collection_spec.rb +41 -41
  40. data/spec/entry_spec.rb +116 -101
  41. data/spec/fixtures/asset.json +1 -1
  42. data/spec/fixtures/asset_collection.json +1 -1
  43. data/spec/fixtures/category_content_type.json +1 -1
  44. data/spec/fixtures/category_entry.json +1 -1
  45. data/spec/fixtures/category_entry_collection.json +1 -1
  46. data/spec/fixtures/category_entry_collection_without_count.json +1 -1
  47. data/spec/fixtures/content_types.json +1 -1
  48. data/spec/fixtures/product_entry.json +1 -1
  49. data/spec/fixtures/product_entry_collection.json +1 -1
  50. data/spec/fixtures/sync_init.json +2974 -2974
  51. data/spec/query_spec.rb +210 -205
  52. data/spec/spec_helper.rb +180 -180
  53. data/spec/sync_spec.rb +26 -26
  54. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f14695f1861ed1b07a85cfe6d23e722c2a6a33903728e2e06e4807838d730ff
4
- data.tar.gz: a86c8a4d86482aa468c1ac1e8358621e9088338f5e011d70e49b2558175a769b
3
+ metadata.gz: 151e081a79919a89260f63ea374d5c4ab54428d07468efbcf0ba4c5316d4ca4f
4
+ data.tar.gz: 82cd520466c27d4e1bc23d07695fedfeefef9931385eb8607f283ce37b065143
5
5
  SHA512:
6
- metadata.gz: bfef2767aa76ecc46237715014e9911b35d86e29213b44cb5a5a380a78bb36b356ac35cb1cc8150b0b0518e109b3656aa89a0a30a99f04246deae05070758f80
7
- data.tar.gz: 8f2ea750a2ba6aa291e53f578b3f7a41ae4018e7930215899bc3cbc5b6315d6c737df16430c943805143f5663b4d3acebf6fd4979e8dcfa54c3f7921061d8784
6
+ metadata.gz: 2d3b5c78d18430d184ef95694570b6af0c8574ef697f7861733797c05ef9ae5fa969d79b7e14533c4730fb10d9eab491484ca634941c3c67606927c7a9b764a1
7
+ data.tar.gz: 72d63d5c25715a236e007f46b5e0fe92663d33eaf994ab5bfb8669c43c77aa7f48b972f1b535e30c5acaeba20aa1e6b2134149dc5c7edae9dba546e2a985534a
@@ -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,31 @@
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:
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: actions/setup-ruby@v1
19
+ with:
20
+ ruby-version: 2.7.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
31
  GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
@@ -1,11 +1,11 @@
1
- name: SAST 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@v2
10
- - name: Horusec Scan
1
+ name: SAST 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@v2
10
+ - name: Horusec Scan
11
11
  run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd)
@@ -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
@@ -1,11 +1,11 @@
1
- name: Secrets 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@v2
10
- - name: Gittyleaks
1
+ name: Secrets 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@v2
10
+ - name: Gittyleaks
11
11
  uses: gupy-io/gittyleaks-action@v0.1
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,130 @@
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.6.4
4
+ ### Date: 17th-Apr-2023
5
+ ### Enhancement
6
+ - Include metadata support for Asset, Entry and Query,
7
+ - Region support for Azure-EU added
8
+
9
+ ------------------------------------------------
10
+
11
+ ## Version 0.6.3.1
12
+ ### Date: 17th-Mar-2023
13
+ ### Package Update
14
+ - Activesupport gem version limit removed (for supporting ruby v3.0 and above) .
15
+
16
+ ------------------------------------------------
17
+
18
+ ## Version 0.6.3
19
+ ### Date: 16th-Mar-2023
20
+ ### Package Update
21
+ - Dependency gem max version issue resolved.
22
+
23
+ ------------------------------------------------
24
+ ## Version 0.6.2
25
+ ### Date: 27th-Feb-2023
26
+ ### Package Update
27
+ - Dependency gem update.
28
+
29
+ ------------------------------------------------
30
+ ## Version 0.6.1
31
+ ### Date: 9th-Sept-2022
32
+ ### Bug
33
+ - Live Preview feature for entry with reference update.
34
+
35
+ ------------------------------------------------
36
+ ## Version 0.6.0
37
+ ### Date: 17th-Aug-2022
38
+ ### New Features
39
+ - Proxy and Retry functionality support added.
40
+
41
+ ------------------------------------------------
42
+ ## Version 0.5.1
43
+ ### Date: 21st-Apr-2022
44
+ ### Package Update
45
+ - API request with URI.OPEN issue resolved.
46
+
47
+ ------------------------------------------------
48
+ ## Version 0.5.0
49
+ ### Date: 8th-Dec-2021
50
+ ### New Feature
51
+ - Live Preview feature support added.
52
+
53
+ ------------------------------------------------
54
+ ## Version 0.4.3
55
+ ### Date: 17th-Sept-2021
56
+ ### Dependency update
57
+ - Issue for Monkey patching resolved. Implemented Refine to extend class within module scope.
58
+
59
+ ------------------------------------------------
60
+ ## Version 0.4.2
61
+ ### Date: 2nd-Sept-2021
62
+ ### Dependency update
63
+ - Added URI open on open uri deprecation
64
+
65
+ ------------------------------------------------
66
+ ## Version 0.4.1
67
+ ### Date: 2nd-Jun-2021
68
+ ### Dependency update
69
+ - Updated gemspec dependency
70
+
71
+ ------------------------------------------------
72
+
73
+ ## Version 0.4.0
74
+ ### Date: 16th-Apr-2021
75
+ ### New Features
76
+ - Embedded feature Support added
77
+
78
+ ------------------------------------------------
79
+
80
+ ## Version 0.3.0
81
+ ### Date: 17th-Mar-2021
82
+ ### New Features
83
+ - Sync API module support added
84
+
85
+ ------------------------------------------------
86
+ ## Version 0.2.0
87
+
88
+ ### New Features
89
+ - Entry
90
+ - locale - function for passing locale is added
91
+ - only - function for getting only specified field
92
+ - except - function for getting field except specified field
93
+ - include_reference - function for including reference in entry
94
+ - include_schema - function for including schema along with entry added
95
+ - include_content_type - function for including content type details along with entry added
96
+ - include_owner - function for getting owner of entry
97
+ - include_fallback - function for getting published fallback locale content, if specified locale content is not published
98
+
99
+ - Query
100
+ - include_fallback - function for getting published fallback locale content, if specified locale content is not published
101
+
102
+
103
+ ------------------------------------------------
104
+
105
+ ## Version 0.1.0
106
+
107
+ ### Bug
108
+ - Stack Tokens Moved to Headers
109
+
110
+ ------------------------------------------------
111
+
112
+ ## Version 0.0.4
113
+
114
+ ### Enhancement
115
+ - Region support added
116
+
117
+ ------------------------------------------------
118
+
119
+ ## Version 0.0.3
120
+
121
+ ### Enhancement
122
+ - Query - function for passing locale is added.
123
+
124
+ ------------------------------------------------
125
+
126
+ ## Version 0.0.1
127
+
128
+ - Initial release
129
+
115
130
  ------------------------------------------------
data/CODEOWNERS CHANGED
@@ -1 +1 @@
1
- * @contentstack/security-admin @contentstack/sdk-admin
1
+ * @contentstack/security-admin @contentstack/sdk-admin