diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index c2561530..00000000 --- a/package-lock.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "codepathfinder", - "version": "0.0.33", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "codepathfinder", - "version": "0.0.33", - "hasInstallScript": true, - "license": "AGPL-3.0", - "dependencies": { - "@go-task/go-npm": "0.2.0" - } - }, - "node_modules/@go-task/go-npm": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@go-task/go-npm/-/go-npm-0.2.0.tgz", - "integrity": "sha512-vQbdtBvesHm8EUFHX8QKg4rbBodmu9VsAXH1ozpbiN5jdTMOYHTCMM31EurAYmY+rNNtxJQ4JGy6t383RPlqbw==", - "license": "Apache-2.0", - "bin": { - "go-npm": "bin/index.js" - } - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index 272f8b98..00000000 --- a/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "codepathfinder", - "version": "1.1.5", - "description": "DEPRECATED - Use 'pip install codepathfinder' instead. See https://codepathfinder.dev/install", - "deprecated": "This package is deprecated. Please use 'pip install codepathfinder' for the complete installation including both CLI and Python DSL.", - "goBinary": { - "name": "pathfinder", - "path": "./bin", - "url": "https://github.com/shivasurya/code-pathfinder/releases/download/v{{version}}/pathfinder-{{platform}}-{{arch}}{{archive_ext}}" - }, - "repository": { - "type": "git", - "url": "https://github.com/shivasurya/code-pathfinder.git" - }, - "keywords": [ - "sast", - "security-tools", - "structural-search", - "codeql-alternative", - "tree-sitter" - ], - "files": [ - "package.json", - "deprecation-notice.js", - "LICENSE", - "README.md" - ], - "author": "shivasurya", - "license": "AGPL-3.0", - "dependencies": { - "@go-task/go-npm": "0.2.0" - }, - "bugs": { - "url": "https://github.com/shivasurya/code-pathfinder/issues" - }, - "homepage": "https://codepathfinder.dev", - "scripts": { - "postinstall": "node deprecation-notice.js && go-npm install", - "preuninstall": "go-npm uninstall" - } -} \ No newline at end of file diff --git a/python-dsl/codepathfinder/__init__.py b/python-dsl/codepathfinder/__init__.py index 3d9d050b..a74ff9d4 100644 --- a/python-dsl/codepathfinder/__init__.py +++ b/python-dsl/codepathfinder/__init__.py @@ -22,7 +22,7 @@ ... ) """ -__version__ = "1.1.5" +__version__ = "1.1.6" from .matchers import calls, variable from .decorators import rule diff --git a/python-dsl/pyproject.toml b/python-dsl/pyproject.toml index db45f23e..34809180 100644 --- a/python-dsl/pyproject.toml +++ b/python-dsl/pyproject.toml @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta" [project] name = "codepathfinder" -version = "1.1.5" -description = "Python DSL for code-pathfinder security patterns" +version = "1.1.6" +description = "Python SDK for code-pathfinder static analysis for modern security teams" readme = "README.md" requires-python = ">=3.8" license = {text = "AGPL-3.0"} diff --git a/python-dsl/setup.py b/python-dsl/setup.py index 677b895c..ef906542 100644 --- a/python-dsl/setup.py +++ b/python-dsl/setup.py @@ -18,7 +18,7 @@ setup( name="codepathfinder", version=version.get("__version__", "1.0.0"), - description="Python DSL for code-pathfinder security pattern definitions", + description="Python SDK for code-pathfinder static analysis for modern security teams", long_description=readme, long_description_content_type="text/markdown", author="code-pathfinder contributors", diff --git a/sast-engine/VERSION b/sast-engine/VERSION index e25d8d9f..0664a8fd 100644 --- a/sast-engine/VERSION +++ b/sast-engine/VERSION @@ -1 +1 @@ -1.1.5 +1.1.6 diff --git a/sast-engine/build.gradle b/sast-engine/build.gradle index f456e70c..8baf4922 100644 --- a/sast-engine/build.gradle +++ b/sast-engine/build.gradle @@ -50,17 +50,6 @@ task bumpVersion { def newVersion = "${major}.${minor}.${patch}" versionFile.text = newVersion println "Version bumped to ${newVersion}" - - // Update package.json - def packageJsonFile = file("../package.json") - if (packageJsonFile.exists()) { - def packageJson = new groovy.json.JsonSlurper().parse(packageJsonFile) - packageJson.version = newVersion - packageJsonFile.text = groovy.json.JsonOutput.prettyPrint(groovy.json.JsonOutput.toJson(packageJson)) - println "Updated package.json version to ${newVersion}" - } else { - println "package.json not found in root directory" - } } }