From c960fd8c2fb597f4142f66ddd85c9d66e9e9b4e9 Mon Sep 17 00:00:00 2001 From: Saurav Date: Thu, 16 Apr 2026 09:57:53 -0400 Subject: [PATCH 1/4] add trusted publishing support --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 60d973a4..7426cf14 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -79,14 +79,14 @@ jobs: npm-publish: docker: - - image: cimg/node:22.14 + - image: cimg/node:23 steps: - setup-npm-project - run: name: Publish npm package command: | cd docs-snippets-npm - npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN + export NPM_ID_TOKEN=$(circleci run oidc get --claims '{"aud": "npm:registry.npmjs.org"}') npm publish --access=public circle-all: From b7d8cf8bb765db6e797fc1b31e8a0d638da4e08d Mon Sep 17 00:00:00 2001 From: svc-autorelease Date: Thu, 16 Apr 2026 15:44:37 +0000 Subject: [PATCH 2/4] Release 1.82.0-rc1 [skip ci] From a2126f7050e1b036488aa0d55b5cf63eca7a18eb Mon Sep 17 00:00:00 2001 From: Saurav Date: Thu, 16 Apr 2026 11:56:27 -0400 Subject: [PATCH 3/4] fix npm version used --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7426cf14..3619ba6a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,9 @@ palantir_aliases: version: 2.1 +orbs: + node: circleci/node@7.2.1 + commands: setup-npm-project: description: "Setup npm project - checkout code, set version, install dependencies and build" @@ -79,9 +82,11 @@ jobs: npm-publish: docker: - - image: cimg/node:23 + - image: cimg/node:22.14 steps: - setup-npm-project + - node/install: + node-version: '25.8.1' - run: name: Publish npm package command: | From f3b106375e9a8a0dda5d7d686e09b7db6697fbee Mon Sep 17 00:00:00 2001 From: svc-autorelease Date: Thu, 16 Apr 2026 16:32:11 +0000 Subject: [PATCH 4/4] Release 1.82.0-rc2 [skip ci]