Skip to content

Commit

Permalink
feat: add refreshTokenId to the session (#386)
Browse files Browse the repository at this point in the history
* feat: add `refreshTokenId` to the session object

* chore: update `pnpm-lock` to use v6

* bump pnpm version

* bump pnpm version in the Dockerfile

* feat: add null refreshTokenId to the /signin/pat endpoint
  • Loading branch information
szilarddoro committed May 16, 2023
1 parent 3b1fbce commit d412a93
Show file tree
Hide file tree
Showing 12 changed files with 2,189 additions and 2,065 deletions.
5 changes: 5 additions & 0 deletions .changeset/rare-bikes-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'hasura-auth': patch
---

feat: add `refreshTokenId` to session
2 changes: 1 addition & 1 deletion .github/actions/install-dependencies/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- uses: pnpm/[email protected]
with:
version: 7.9.1
version: 8.5.1
run_install: false
- name: Get pnpm cache directory
id: pnpm-cache-dir
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:16-alpine AS builder
WORKDIR /app
RUN npm i -g pnpm@7.30.2
RUN npm i -g pnpm@8.5.1
COPY package.json pnpm-lock.yaml tsconfig.json tsconfig.build.json ./
RUN pnpm install --frozen-lockfile
COPY src/ ./src/
Expand All @@ -12,7 +12,7 @@ ARG NODE_ENV=production
ENV NODE_ENV $NODE_ENV
ENV AUTH_PORT 4000
WORKDIR /app
RUN npm i -g pnpm@7.30.2
RUN npm i -g pnpm@8.5.1
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile --prod && pnpm store prune
COPY migrations/ ./migrations/
Expand Down
Loading

0 comments on commit d412a93

Please sign in to comment.