From 32b4f8aa03ea27d6c4fe50b346a8472d0ee2c54a Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Tue, 30 Jun 2026 20:28:12 +0530 Subject: [PATCH 1/3] Delete issues-jira.yml --- .github/workflows/issues-jira.yml | 118 ------------------------------ 1 file changed, 118 deletions(-) delete mode 100644 .github/workflows/issues-jira.yml diff --git a/.github/workflows/issues-jira.yml b/.github/workflows/issues-jira.yml deleted file mode 100644 index 5f65d0b6..00000000 --- a/.github/workflows/issues-jira.yml +++ /dev/null @@ -1,118 +0,0 @@ -name: Create Jira Ticket for Github Issue - -on: - issues: - types: [opened, reopened] - -jobs: - issue-jira: - runs-on: ubuntu-latest - steps: - - name: Create Jira Issue - id: create_jira - uses: actions/github-script@v9 - with: - script: | - const baseUrl = process.env.JIRA_BASE_URL; - const userEmail = process.env.JIRA_USER_EMAIL; - const jiraToken = process.env.JIRA_API_TOKEN; - const jiraProject = process.env.JIRA_PROJECT; - const jiraIssueType = process.env.JIRA_ISSUE_TYPE; - const jiraFields = JSON.parse(process.env.ISSUES_JIRA_FIELDS); - - let requestBody = JSON.stringify({ - fields: { - ...jiraFields, - "project": { - "key": jiraProject - }, - "issuetype": { - "name": jiraIssueType - }, - "summary": "Github | Issue | ${{ github.event.repository.name }} | ${{ github.event.issue.title }}", - "description": { - "version": 1, - "type": "doc", - "content": [ - { - "type": "paragraph", - "content": [ - { - "type": "text", - "text": "Github Issue", - "marks": [ - { - "type": "strong" - } - ] - }, - { - "type": "text", - "text": ": " - }, - { - "type": "text", - "text": "${{ github.event.issue.html_url }}", - "marks": [ - { - "type": "link", - "attrs": { - "href": "${{ github.event.issue.html_url }}" - } - } - ] - } - ] - }, - { - "type": "paragraph", - "content": [ - { - "type": "text", - "text": "Description", - "marks": [ - { - "type": "strong" - } - ] - }, - { - "type": "text", - "text": ":" - } - ] - }, - { - "type": "codeBlock", - "content": [ - { - "type": "text", - "text": `${{ github.event.issue.body }}` - } - ] - } - ] - } - } - }); - - const response = await fetch(`${baseUrl}/rest/api/3/issue`, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - 'Authorization': `Basic ${btoa(userEmail + ":" + jiraToken)}` - }, - body: requestBody - }); - if (!response.ok) { - throw new Error(`JIRA API error! Status: ${response.status}`); - } - const data = await response.json(); - console.log('Jira Issue Created:', data.key); - env: - JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} - JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} - JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} - JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }} - JIRA_ISSUE_TYPE: ${{ secrets.JIRA_ISSUE_TYPE }} - ISSUES_JIRA_FIELDS: "${{ secrets.ISSUES_JIRA_FIELDS }}" From ab3dbd46e7a4ea91026ff9b0070bc20be37c2c7b Mon Sep 17 00:00:00 2001 From: Netraj Patel Date: Tue, 14 Jul 2026 17:25:31 +0530 Subject: [PATCH 2/3] chore: bump @contentstack/utils to 1.9.1 Updates the internal @contentstack/utils dependency from 1.8.0 to 1.9.1 and releases SDK v3.27.1. Refs DX-9661, DX-8610 Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 5 +++++ package-lock.json | 12 ++++++------ package.json | 4 ++-- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d10f1fc8..37c09a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Change log +### Version: 3.27.1 +#### Date: Jul-14-2026 +##### Fix: + - Update the internal dependency of @contentstack/utils from 1.8.0 to 1.9.1 + ### Version: 3.27.0 #### Date: Mar-23-2026 ##### Fix: diff --git a/package-lock.json b/package-lock.json index c04f00bc..85838748 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "contentstack", - "version": "3.27.0", + "version": "3.27.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "contentstack", - "version": "3.27.0", + "version": "3.27.1", "license": "MIT", "dependencies": { - "@contentstack/utils": "^1.4.1", + "@contentstack/utils": "^1.9.1", "es6-promise": "^4.2.8", "husky": "^9.1.7", "localStorage": "1.0.4" @@ -1834,9 +1834,9 @@ "license": "MIT" }, "node_modules/@contentstack/utils": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@contentstack/utils/-/utils-1.8.0.tgz", - "integrity": "sha512-pqCFbn2dynSCW6LUD2AH74LIy32dxxe52OL+HpUxNVXV5doFyClkFjP9toqdAZ81VbCEaOc4WK+VS/RdtMpxDA==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@contentstack/utils/-/utils-1.9.1.tgz", + "integrity": "sha512-THZM0rNuq0uOSKkKnvzp8lsPDvvdKIvJIcMa9JBv4foL9rC8RWkWffa2yMyb+9m/5HZrdAmpEWdubkGwARa8WQ==", "license": "MIT" }, "node_modules/@csstools/color-helpers": { diff --git a/package.json b/package.json index 767d2818..e2b93bba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "contentstack", - "version": "3.27.0", + "version": "3.27.1", "description": "Contentstack Javascript SDK", "homepage": "https://www.contentstack.com/", "author": { @@ -99,7 +99,7 @@ "webpack-node-externals": "^3.0.0" }, "dependencies": { - "@contentstack/utils": "^1.4.1", + "@contentstack/utils": "^1.9.1", "es6-promise": "^4.2.8", "husky": "^9.1.7", "localStorage": "1.0.4" From 1dba4dcf754f05b7ff00ffc570fb4b3e8d36cfb1 Mon Sep 17 00:00:00 2001 From: Netraj Patel Date: Tue, 14 Jul 2026 17:31:57 +0530 Subject: [PATCH 3/3] fix: correct CHANGELOG heading format and dependency bump wording Matches the ## [x.y.z](...) heading format required by the check-version-bump CI workflow, and corrects the bullet to describe the actual package.json range change rather than the lockfile-resolved version. Co-Authored-By: Claude Sonnet 5 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c09a0f..e07279df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ ## Change log -### Version: 3.27.1 +## [3.27.1](https://github.com/contentstack/contentstack-javascript/compare/v3.27.0...v3.27.1) #### Date: Jul-14-2026 ##### Fix: - - Update the internal dependency of @contentstack/utils from 1.8.0 to 1.9.1 + - Bump @contentstack/utils dependency from ^1.4.1 to ^1.9.1 ### Version: 3.27.0 #### Date: Mar-23-2026