Compare commits

...

3 Commits

Author SHA1 Message Date
standardci
eb30692f6a chore(release): publish
- @standardnotes/scheduler-server@1.1.0-alpha.7
2022-06-22 08:23:25 +00:00
Karol Sójko
143b215ddc Merge branch 'develop' of github.com:standardnotes/server into develop 2022-06-22 10:22:36 +02:00
Karol Sójko
2a1b9a6679 fix: update node version to latest lts 2022-06-22 10:21:23 +02:00
4 changed files with 10 additions and 4 deletions

2
.nvmrc
View File

@@ -1 +1 @@
16.11.1
16.15.1

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.1.0-alpha.7](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.1.0-alpha.6...@standardnotes/scheduler-server@1.1.0-alpha.7) (2022-06-22)
### Bug Fixes
* update node version to latest lts ([2a1b9a6](https://github.com/standardnotes/server/commit/2a1b9a66797b046565b63183cb17e4b335de492f))
# [1.1.0-alpha.6](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.1.0-alpha.5...@standardnotes/scheduler-server@1.1.0-alpha.6) (2022-06-22)
### Bug Fixes

View File

@@ -1,4 +1,4 @@
FROM node:16.13.1-alpine AS builder
FROM node:16.15.1-alpine AS builder
# Install dependencies for building native libraries
RUN apk add --update git openssh-client python3 alpine-sdk
@@ -10,7 +10,7 @@ COPY manifests ./
RUN yarn install --immutable
FROM node:16.13.1-alpine
FROM node:16.15.1-alpine
WORKDIR /workspace

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/scheduler-server",
"version": "1.1.0-alpha.6",
"version": "1.1.0-alpha.7",
"engines": {
"node": ">=16.0.0 <17.0.0"
},