Compare commits

...

4 commits

Author SHA1 Message Date
James Long 97081d46c4 Fix reference to Timestamp; version 22.12.09 2022-12-08 17:38:26 -05:00
James Long 60f83b334e 22.12.08 2022-12-08 16:00:20 -05:00
James Long 340ac869ce Bump API to working version 2022-12-08 16:00:01 -05:00
Trevor Farlow b2b6ba4921 Docker workflow: Drop major.minor tagging 2022-12-08 14:53:48 -05:00
4 changed files with 7 additions and 8 deletions

View file

@ -25,7 +25,6 @@ env:
TAGS: |
type=edge,value=edge
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
jobs:

View file

@ -1,6 +1,6 @@
{
"name": "actual-sync",
"version": "22.12.03",
"version": "22.12.09",
"license": "MIT",
"description": "actual syncing server",
"main": "index.js",
@ -12,7 +12,7 @@
"verify": "yarn -s lint && yarn types"
},
"dependencies": {
"@actual-app/api": "4.1.3",
"@actual-app/api": "4.1.5",
"@actual-app/web": "22.12.3",
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.5.0",

View file

@ -6,7 +6,7 @@ let { getPathForGroupFile } = require('./util/paths');
let actual = require('@actual-app/api');
let merkle = actual.internal.merkle;
let SyncPb = actual.internal.SyncProtoBuf;
let Timestamp = actual.internal.timestamp.default;
let Timestamp = actual.internal.timestamp.Timestamp;
function getGroupDb(groupId) {
let path = getPathForGroupFile(groupId);

View file

@ -2,10 +2,10 @@
# yarn lockfile v1
"@actual-app/api@4.1.3":
version "4.1.3"
resolved "https://registry.yarnpkg.com/@actual-app/api/-/api-4.1.3.tgz#8f2602f2d8a89c443e5d027be6fc896c492d6762"
integrity sha512-0ANB9Ag5AMiRWrFpJRsIp2a3B7wwoF5kufWp0zos/tV3g4OgeqrUtEfvftyvYQq/qS3Q9RM3Wy37Wgvo+/3ERw==
"@actual-app/api@4.1.5":
version "4.1.5"
resolved "https://registry.yarnpkg.com/@actual-app/api/-/api-4.1.5.tgz#727f7e2233dd29204d2b7e244a671b3b88d0683a"
integrity sha512-rI4xqaHt9UNxovSPo8tukjluuESlxscMXUkImyYV4gYzAETsSFET3k0708Zw0EZsXCVanqAtfv+v84SNEBqn0A==
dependencies:
better-sqlite3 "^7.5.0"
node-fetch "^1.6.3"