From c93391883df827d2cbae618f612bc2aa1bd87303 Mon Sep 17 00:00:00 2001 From: Scott Sundahl Date: Thu, 26 Dec 2024 14:37:27 -0700 Subject: [PATCH 1/6] node to version 20. created latest sdk file --- .github/workflows/node.js.yaml | 2 +- .../workflows/publish-package-to-npmjs.yml | 74 +++++++++++++------ .github/workflows/secureSignal-cd.yaml | 2 +- webpack.config.js | 8 ++ 4 files changed, 60 insertions(+), 26 deletions(-) diff --git a/.github/workflows/node.js.yaml b/.github/workflows/node.js.yaml index 2d67a2e..f8e2a3a 100644 --- a/.github/workflows/node.js.yaml +++ b/.github/workflows/node.js.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [18.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/.github/workflows/publish-package-to-npmjs.yml b/.github/workflows/publish-package-to-npmjs.yml index bce8434..23787c0 100644 --- a/.github/workflows/publish-package-to-npmjs.yml +++ b/.github/workflows/publish-package-to-npmjs.yml @@ -37,7 +37,7 @@ jobs: needs: [incrementVersionNumber] strategy: matrix: - node-version: [18.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ target: [development, production] steps: @@ -56,16 +56,26 @@ jobs: run: npm install - name: Build script run: npm run build -- --mode=${{ matrix.target }} + # - uses: actions/upload-artifact@v4 + # if: inputs.publish_to_cdn + # with: + # name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + # path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 if: inputs.publish_to_cdn with: - name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js + name: uid2SDK-${{ matrix.target }}-latest + path: ./dist/uid2-sdk-latest.js + # - uses: actions/upload-artifact@v4 + # if: inputs.publish_to_cdn + # with: + # name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + # path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 if: inputs.publish_to_cdn with: - name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js + name: euidSDK-${{ matrix.target }}-latest + path: ./dist/euid-sdk-latest.js outputs: sdkVersion: ${{ steps.version.outputs.package_version }} publish-package: @@ -78,26 +88,26 @@ jobs: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} - uses: actions/setup-node@v4 with: - node-version: '18.x' + node-version: '20.x' registry-url: 'https://registry.npmjs.org' scope: uid2 - run: npm ci - name: Build package run: npm run build-package - - name: Publish Latest package - if: ${{!github.event.inputs.with_tag}} - run: | - npm publish ./dist/uid2-npm --access public - npm publish ./dist/euid-npm --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - name: Publish Latest package with tag - if: ${{github.event.inputs.with_tag}} - run: | - npm publish ./dist/uid2-npm --tag ${{github.event.inputs.with_tag}} --access public - npm publish ./dist/euid-npm --tag ${{github.event.inputs.with_tag}} --access public - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + # - name: Publish Latest package + # if: ${{!github.event.inputs.with_tag}} + # run: | + # npm publish ./dist/uid2-npm --access public + # npm publish ./dist/euid-npm --access public + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + # - name: Publish Latest package with tag + # if: ${{github.event.inputs.with_tag}} + # run: | + # npm publish ./dist/uid2-npm --tag ${{github.event.inputs.with_tag}} --access public + # npm publish ./dist/euid-npm --tag ${{github.event.inputs.with_tag}} --access public + # env: + # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} cdn-deployment-uid2: if: inputs.publish_to_cdn needs: [build, incrementVersionNumber] @@ -112,11 +122,19 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} + # - uses: ./.github/actions/cdn_deployment_aws + # with: + # environment: ${{ matrix.environment }} + # artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + # invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' + # aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} + # aws_bucket_name: ${{ vars.S3_BUCKET }} + # aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws with: environment: ${{ matrix.environment }} - artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' + artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-latest + invalidate_paths: '/uid2-sdk-latest.js' aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} aws_bucket_name: ${{ vars.S3_BUCKET }} aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} @@ -134,11 +152,19 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} + # - uses: ./.github/actions/cdn_deployment_aws + # with: + # environment: ${{ matrix.environment }} + # artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + # invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' + # aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} + # aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} + # aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws with: environment: ${{ matrix.environment }} - artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' + artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-latest + invalidate_paths: '/euid-sdk-latest.js' aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} diff --git a/.github/workflows/secureSignal-cd.yaml b/.github/workflows/secureSignal-cd.yaml index b7c2c6d..50fa691 100644 --- a/.github/workflows/secureSignal-cd.yaml +++ b/.github/workflows/secureSignal-cd.yaml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ target: [development, production] diff --git a/webpack.config.js b/webpack.config.js index fe4d0eb..7577c62 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -31,10 +31,18 @@ module.exports = (env, argv) => { import: uid2Entrypoint, filename: `uid2-sdk-${process.env.npm_package_version}.js`, }, + 'uid2-sdk-latest': { + import: uid2Entrypoint, + filename: `uid2-sdk-latest.js`, + }, 'euid-sdk': { import: euidEntrypoint, filename: `euid-sdk-${process.env.npm_package_version}.js`, }, + 'euid-sdk-latest': { + import: euidEntrypoint, + filename: `euid-sdk-latest.js`, + }, ...getExampleOutputs(env), } : espOutput, From 8441f0e89905b5b717096e0a0347c160ffcadb38 Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Sat, 28 Dec 2024 17:10:18 +0000 Subject: [PATCH 2/6] [CI Pipeline] Released Snapshot version: 3.10.14-SNAPSHOT --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index bdd8eec..b8f3bf3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@uid2/uid2-sdk", - "version": "3.10.0", + "version": "3.10.14-SNAPSHOT", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@uid2/uid2-sdk", - "version": "3.10.0", + "version": "3.10.14-SNAPSHOT", "license": "Apache 2.0", "dependencies": { "axios": "^1.7.9", diff --git a/package.json b/package.json index bcc1b02..2f962d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@uid2/uid2-sdk", - "version": "3.10.0", + "version": "3.10.14-SNAPSHOT", "description": "UID2 Client SDK", "author": "The Trade Desk", "repository": { From 02b7f88d1c271ebf00d01968322b6e00f3406c7c Mon Sep 17 00:00:00 2001 From: Scott Sundahl Date: Sat, 28 Dec 2024 10:20:57 -0700 Subject: [PATCH 3/6] add versioned sdk deployment back to action after testing --- .../workflows/publish-package-to-npmjs.yml | 80 +++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/publish-package-to-npmjs.yml b/.github/workflows/publish-package-to-npmjs.yml index 23787c0..b0ff88c 100644 --- a/.github/workflows/publish-package-to-npmjs.yml +++ b/.github/workflows/publish-package-to-npmjs.yml @@ -56,21 +56,21 @@ jobs: run: npm install - name: Build script run: npm run build -- --mode=${{ matrix.target }} - # - uses: actions/upload-artifact@v4 - # if: inputs.publish_to_cdn - # with: - # name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - # path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js + - uses: actions/upload-artifact@v4 + if: inputs.publish_to_cdn + with: + name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 if: inputs.publish_to_cdn with: name: uid2SDK-${{ matrix.target }}-latest path: ./dist/uid2-sdk-latest.js - # - uses: actions/upload-artifact@v4 - # if: inputs.publish_to_cdn - # with: - # name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - # path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js + - uses: actions/upload-artifact@v4 + if: inputs.publish_to_cdn + with: + name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 if: inputs.publish_to_cdn with: @@ -94,20 +94,20 @@ jobs: - run: npm ci - name: Build package run: npm run build-package - # - name: Publish Latest package - # if: ${{!github.event.inputs.with_tag}} - # run: | - # npm publish ./dist/uid2-npm --access public - # npm publish ./dist/euid-npm --access public - # env: - # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # - name: Publish Latest package with tag - # if: ${{github.event.inputs.with_tag}} - # run: | - # npm publish ./dist/uid2-npm --tag ${{github.event.inputs.with_tag}} --access public - # npm publish ./dist/euid-npm --tag ${{github.event.inputs.with_tag}} --access public - # env: - # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Publish Latest package + if: ${{!github.event.inputs.with_tag}} + run: | + npm publish ./dist/uid2-npm --access public + npm publish ./dist/euid-npm --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Publish Latest package with tag + if: ${{github.event.inputs.with_tag}} + run: | + npm publish ./dist/uid2-npm --tag ${{github.event.inputs.with_tag}} --access public + npm publish ./dist/euid-npm --tag ${{github.event.inputs.with_tag}} --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} cdn-deployment-uid2: if: inputs.publish_to_cdn needs: [build, incrementVersionNumber] @@ -122,14 +122,14 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} - # - uses: ./.github/actions/cdn_deployment_aws - # with: - # environment: ${{ matrix.environment }} - # artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - # invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' - # aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} - # aws_bucket_name: ${{ vars.S3_BUCKET }} - # aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} + - uses: ./.github/actions/cdn_deployment_aws + with: + environment: ${{ matrix.environment }} + artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' + aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} + aws_bucket_name: ${{ vars.S3_BUCKET }} + aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws with: environment: ${{ matrix.environment }} @@ -152,14 +152,14 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} - # - uses: ./.github/actions/cdn_deployment_aws - # with: - # environment: ${{ matrix.environment }} - # artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - # invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' - # aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} - # aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} - # aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} + - uses: ./.github/actions/cdn_deployment_aws + with: + environment: ${{ matrix.environment }} + artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' + aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} + aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} + aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws with: environment: ${{ matrix.environment }} From 364798195ee9c058271a0e865ee86959fcab0336 Mon Sep 17 00:00:00 2001 From: Scott Sundahl Date: Sat, 28 Dec 2024 10:32:21 -0700 Subject: [PATCH 4/6] node to version 20.x in package.json --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index b8f3bf3..9612cbf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,7 +47,7 @@ "webpack-dev-server": "^5.1.0" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "node_modules/@ampproject/remapping": { diff --git a/package.json b/package.json index 2f962d8..0358dd3 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "localtest": "cd localtest && tsx server.ts" }, "engines": { - "node": ">=18" + "node": ">=20" }, "jest": { "preset": "ts-jest", From 2e02e859cc3f0361e84e160a6b00ea575c81aa2f Mon Sep 17 00:00:00 2001 From: Scott Sundahl Date: Sun, 29 Dec 2024 11:57:27 -0700 Subject: [PATCH 5/6] latest for major version --- .../workflows/publish-package-to-npmjs.yml | 75 ++++++++++--------- 1 file changed, 41 insertions(+), 34 deletions(-) diff --git a/.github/workflows/publish-package-to-npmjs.yml b/.github/workflows/publish-package-to-npmjs.yml index b0ff88c..a84308f 100644 --- a/.github/workflows/publish-package-to-npmjs.yml +++ b/.github/workflows/publish-package-to-npmjs.yml @@ -26,6 +26,11 @@ on: description: Publish package to CDN (In general, always release to both) required: false default: true + release_latest_version: + type: number + description: Release a latest major version (*-[majorVersion]-latest.js) + required: false + default: false jobs: incrementVersionNumber: uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-increase-version-number.yaml@v2 @@ -56,25 +61,25 @@ jobs: run: npm install - name: Build script run: npm run build -- --mode=${{ matrix.target }} + # - uses: actions/upload-artifact@v4 + # if: inputs.publish_to_cdn + # with: + # name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + # path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 - if: inputs.publish_to_cdn - with: - name: uid2SDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - path: ./dist/uid2-sdk-${{ steps.version.outputs.package_version }}.js - - uses: actions/upload-artifact@v4 - if: inputs.publish_to_cdn + if: inputs.release_latest_version with: - name: uid2SDK-${{ matrix.target }}-latest + name: uid2SDK-${{ matrix.target }}-v${{inputs.release_latest_version}}-latest path: ./dist/uid2-sdk-latest.js + # - uses: actions/upload-artifact@v4 + # if: inputs.publish_to_cdn + # with: + # name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} + # path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js - uses: actions/upload-artifact@v4 - if: inputs.publish_to_cdn - with: - name: euidSDK-${{ matrix.target }}-${{ steps.version.outputs.package_version }} - path: ./dist/euid-sdk-${{ steps.version.outputs.package_version }}.js - - uses: actions/upload-artifact@v4 - if: inputs.publish_to_cdn + if: inputs.release_latest_version with: - name: euidSDK-${{ matrix.target }}-latest + name: euidSDK-${{ matrix.target }}-v${{inputs.release_latest_version}}-latest path: ./dist/euid-sdk-latest.js outputs: sdkVersion: ${{ steps.version.outputs.package_version }} @@ -122,19 +127,20 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} + # - uses: ./.github/actions/cdn_deployment_aws + # with: + # environment: ${{ matrix.environment }} + # artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + # invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' + # aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} + # aws_bucket_name: ${{ vars.S3_BUCKET }} + # aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws + if: inputs.release_latest_version with: environment: ${{ matrix.environment }} - artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - invalidate_paths: '/uid2-sdk-${{ needs.build.outputs.sdkVersion}}.js' - aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} - aws_bucket_name: ${{ vars.S3_BUCKET }} - aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} - - uses: ./.github/actions/cdn_deployment_aws - with: - environment: ${{ matrix.environment }} - artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-latest - invalidate_paths: '/uid2-sdk-latest.js' + artifact: uid2SDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-v${{inputs.release_latest_version}}-latest + invalidate_paths: '/uid2-sdk-v${{inputs.release_latest_version}}-latest.js' aws_account_id: ${{ vars.AWS_ACCOUNT_ID }} aws_bucket_name: ${{ vars.S3_BUCKET }} aws_distribution_id: ${{ secrets.AWS_DISTRIBUTION_ID }} @@ -152,19 +158,20 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ needs.incrementVersionNumber.outputs.git_tag_or_hash }} + # - uses: ./.github/actions/cdn_deployment_aws + # with: + # environment: ${{ matrix.environment }} + # artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} + # invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' + # aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} + # aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} + # aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} - uses: ./.github/actions/cdn_deployment_aws + if: inputs.release_latest_version with: environment: ${{ matrix.environment }} - artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-${{ needs.build.outputs.sdkVersion}} - invalidate_paths: '/euid-sdk-${{ needs.build.outputs.sdkVersion}}.js' - aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} - aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} - aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} - - uses: ./.github/actions/cdn_deployment_aws - with: - environment: ${{ matrix.environment }} - artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-latest - invalidate_paths: '/euid-sdk-latest.js' + artifact: euidSDK-${{ (matrix.environment == 'integ' && 'development') || matrix.environment }}-v${{inputs.release_latest_version}}-latest + invalidate_paths: '/euid-sdk-v${{inputs.release_latest_version}}-latest.js' aws_account_id: ${{ vars.EUID_AWS_ACCOUNT_ID }} aws_bucket_name: ${{ vars.EUID_S3_BUCKET }} aws_distribution_id: ${{ secrets.EUID_AWS_DISTRIBUTION_ID }} From 88dbae3840407cfc58d863ab407e084e437f64ca Mon Sep 17 00:00:00 2001 From: Release Workflow Date: Sun, 29 Dec 2024 19:06:04 +0000 Subject: [PATCH 6/6] [CI Pipeline] Released Snapshot version: 3.10.19-SNAPSHOT --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9612cbf..5cd1042 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@uid2/uid2-sdk", - "version": "3.10.14-SNAPSHOT", + "version": "3.10.19-SNAPSHOT", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@uid2/uid2-sdk", - "version": "3.10.14-SNAPSHOT", + "version": "3.10.19-SNAPSHOT", "license": "Apache 2.0", "dependencies": { "axios": "^1.7.9", diff --git a/package.json b/package.json index 0358dd3..8f5f73d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@uid2/uid2-sdk", - "version": "3.10.14-SNAPSHOT", + "version": "3.10.19-SNAPSHOT", "description": "UID2 Client SDK", "author": "The Trade Desk", "repository": {