From 1a30492d839fb1c6a157a1abe7f8e53a1167aa20 Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Mon, 8 Sep 2025 22:22:23 +0530 Subject: [PATCH 1/3] Delete secrets-scan.yml --- .github/workflows/secrets-scan.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/secrets-scan.yml diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml deleted file mode 100644 index 049c02f..0000000 --- a/.github/workflows/secrets-scan.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Secrets Scan -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - security-secrets: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: '2' - ref: '${{ github.event.pull_request.head.ref }}' - - run: | - git reset --soft HEAD~1 - - name: Install Talisman - run: | - # Download Talisman - wget https://github.com/thoughtworks/talisman/releases/download/v1.37.0/talisman_linux_amd64 -O talisman - - # Checksum verification - checksum=$(sha256sum ./talisman | awk '{print $1}') - if [ "$checksum" != "8e0ae8bb7b160bf10c4fa1448beb04a32a35e63505b3dddff74a092bccaaa7e4" ]; then exit 1; fi - - # Make it executable - chmod +x talisman - - name: Run talisman - run: | - # Run Talisman with the pre-commit hook - ./talisman --githook pre-commit \ No newline at end of file From aa7c9b9cf3912bb911c6636b56142b9f812c69d5 Mon Sep 17 00:00:00 2001 From: Aravind Kumar Date: Mon, 8 Sep 2025 22:22:27 +0530 Subject: [PATCH 2/3] Updated codeowners --- CODEOWNERS | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 1be7e0d..0496bc6 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1,11 @@ -* @contentstack/security-admin +* @contentstack/devex-pr-reviewers + +.github/workflows/sca-scan.yml @contentstack/security-admin + +.github/workflows/codeql-anaylsis.yml @contentstack/security-admin + +**/.snyk @contentstack/security-admin + +.github/workflows/policy-scan.yml @contentstack/security-admin + +.github/workflows/issues-jira.yml @contentstack/security-admin From 28efed156fb759d3bff10055c51e6e6d682c3575 Mon Sep 17 00:00:00 2001 From: "harshitha.d" Date: Fri, 7 Nov 2025 17:57:09 +0530 Subject: [PATCH 3/3] version bump --- package-lock.json | 4 ++-- package.json | 2 +- typings/util/messages.d.ts | 10 ++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 typings/util/messages.d.ts diff --git a/package-lock.json b/package-lock.json index 8618bf5..bc7ece4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@contentstack/datasync-content-store-filesystem", - "version": "2.1.6", + "version": "2.1.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@contentstack/datasync-content-store-filesystem", - "version": "2.1.6", + "version": "2.1.7", "license": "MIT", "dependencies": { "debug": "^4.4.1", diff --git a/package.json b/package.json index cb55d09..4043589 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@contentstack/datasync-content-store-filesystem", - "version": "2.1.6", + "version": "2.1.7", "description": "Datasync content store library - saves data in filesystem", "main": "./dist", "types": "./typings", diff --git a/typings/util/messages.d.ts b/typings/util/messages.d.ts new file mode 100644 index 0000000..1989789 --- /dev/null +++ b/typings/util/messages.d.ts @@ -0,0 +1,10 @@ +/*! + * DataSync Content Store Filesystem - Messages + * Copyright (c) Contentstack LLC + * MIT Licensed + */ +export declare const LOG_MESSAGES: { + readonly PUBLISHING_ENTRY: (input: any) => string; +}; +export declare const ERROR_MESSAGES: {}; +export declare const INFO_MESSAGES: {};