diff --git a/.github/workflows/node-create-package-file/action.yml b/.github/workflows/node-create-package-file/action.yml index a02a093b15..8787a70354 100644 --- a/.github/workflows/node-create-package-file/action.yml +++ b/.github/workflows/node-create-package-file/action.yml @@ -56,7 +56,7 @@ runs: # echo -musl if inputs.target is musl export MUSL_FLAG=`if [[ "${{ inputs.target }}" =~ .*"musl".* ]]; then echo "-musl"; fi` # set the package name - name="glide-for-redis" + name="valkey-glide" # derive the OS and architecture from the inputs export node_os="${{ inputs.named_os }}" export node_arch="${{ inputs.arch }}" diff --git a/.github/workflows/npm-cd.yml b/.github/workflows/npm-cd.yml index 0c477a50b3..43f7641f28 100644 --- a/.github/workflows/npm-cd.yml +++ b/.github/workflows/npm-cd.yml @@ -227,7 +227,7 @@ jobs: shell: bash working-directory: ./node/npm/glide run: | - export pkg_name=glide-for-redis + export pkg_name=valkey-glide echo "${GITHUB_REF:11}" export package_version=${GITHUB_REF:11} export scope=`if [ "$NPM_SCOPE" != '' ]; then echo "$NPM_SCOPE/"; fi` @@ -360,7 +360,7 @@ jobs: working-directory: ./utils/release-candidate-testing/node run: | npm install - npm install --no-save @aws/glide-for-redis@${{ env.NPM_TAG }} + npm install --no-save @valkey/valkey-glide@${{ env.NPM_TAG }} npm run test # Reset the repository to make sure we get the clean checkout of the action later in other actions. diff --git a/.github/workflows/ort.yml b/.github/workflows/ort.yml index 014db6da9b..210908444e 100644 --- a/.github/workflows/ort.yml +++ b/.github/workflows/ort.yml @@ -122,7 +122,7 @@ jobs: run: | # Remove the glide-rs dependency to avoid duplication sed -i '/ "glide-rs":/d' ../../package.json - export pkg_name=glide-for-redis-base + export pkg_name=valkey-glide-base export package_version="${{ env.RELEASE_VERSION }}" export scope=`if [ "$NPM_SCOPE" != '' ]; then echo "$NPM_SCOPE/"; fi` mv package.json package.json.tmpl @@ -203,7 +203,7 @@ jobs: run: | export BRANCH_NAME=`if [ "$EVENT_NAME" == 'schedule' ] || [ "$EVENT_NAME" == 'pull_request' ]; then echo 'scheduled-ort'; else echo "ort-v$INPUT_VERSION"; fi` echo "Creating pull request from branch ${BRANCH_NAME} to branch ${{ env.BASE_BRANCH }}" - git config --global user.email "glide-for-redis@amazon.com" + git config --global user.email "valkey-glide@lists.valkey.io" git config --global user.name "ort-bot" git checkout -b ${BRANCH_NAME} git add $PYTHON_ATTRIBUTIONS $NODE_ATTRIBUTIONS $RUST_ATTRIBUTIONS $JAVA_ATTRIBUTIONS diff --git a/benchmarks/node/package.json b/benchmarks/node/package.json index e1e2e27f7a..4ee1a76728 100644 --- a/benchmarks/node/package.json +++ b/benchmarks/node/package.json @@ -14,7 +14,7 @@ "@types/command-line-args": "^5.2.0", "@types/stats-lite": "^2.2.0", "command-line-args": "^5.2.1", - "glide-for-redis": "file:../../node", + "valkey-glide": "file:../../node", "ioredis": "5.3.2", "percentile": "^1.6.0", "redis": "4.6.13", diff --git a/examples/node/README.MD b/examples/node/README.MD index 9e666ff66f..adea1790ed 100644 --- a/examples/node/README.MD +++ b/examples/node/README.MD @@ -21,12 +21,12 @@ npm i -g npm@8 ## Build To build GLIDE's Node client, run (on unix based systems): ``` -cd glide-for-redis/node +cd valkey-glide/node git submodule update --init --recursive npm install rm -rf build-ts npm run build:release -cd glide-for-redis/examples/node +cd valkey-glide/examples/node npm install npx tsc ``` @@ -34,6 +34,6 @@ npx tsc ## Run To run the example: ``` -cd glide-for-redis/examples/node +cd valkey-glide/examples/node node index.js ``` diff --git a/examples/node/package.json b/examples/node/package.json index 456f09b467..1521a6d8c4 100644 --- a/examples/node/package.json +++ b/examples/node/package.json @@ -1,7 +1,7 @@ { "type": "module", "dependencies": { - "@aws/glide-for-redis": "^0.1.0", + "@valkey/valkey-glide": "^1.0.0", "@types/node": "^20.4.8" }, "devDependencies": { diff --git a/examples/python/requirements.txt b/examples/python/requirements.txt index 82e80dcc6b..cac8dc5db0 100644 --- a/examples/python/requirements.txt +++ b/examples/python/requirements.txt @@ -1 +1 @@ -glide-for-redis>=0.1 +valkey-glide diff --git a/python/Cargo.toml b/python/Cargo.toml index 589c0c28ee..605151cedb 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "glide-for-redis" +name = "valkey-glide" version = "255.255.255" edition = "2021" license = "Apache-2.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index 8bc6157045..b251d5ecd8 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ requires = ["maturin>=0.13,<0.14"] build-backend = "maturin" [project] -name = "glide-for-redis" +name = "valkey-glide" requires-python = ">=3.8" dependencies = [ "async-timeout>=4.0.2",