Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cokoapps/server
  • jgutix/server
2 results
Show changes
Commits on Source (3)
......@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.14.0](https://gitlab.coko.foundation/cokoapps/server/compare/v1.13.0...v1.14.0) (2021-04-19)
### Features
* **server:** add uuid helper ([62a04de](https://gitlab.coko.foundation/cokoapps/server/commit/62a04de4c0fa569bf88ac4571ac55b858ba12532))
### Bug Fixes
* fix useTransaction base model import ([a06af0f](https://gitlab.coko.foundation/cokoapps/server/commit/a06af0fe85a65d2eee3dfa41950e3b3397bf838d))
## [1.13.0](https://gitlab.coko.foundation/cokoapps/server/compare/v1.12.2...v1.13.0) (2021-04-10)
......
{
"name": "@coko/server",
"version": "1.13.0",
"version": "1.14.0",
"description": "A tweaked version of pubsweet-server for use by Coko's projects",
"main": "src/index.js",
"scripts": {
......@@ -45,6 +45,7 @@
"passport": "^0.4.1",
"pubsweet": "^5.1.25",
"pubsweet-server": "^13.12.5",
"uuid": "^8.3.2",
"waait": "^1.0.5"
},
"devDependencies": {
......
const cron = require('node-cron')
const { v4: uuid } = require('uuid')
const BaseModel = require('@pubsweet/base-model')
const authentication = require('pubsweet-server/src/authentication')
......@@ -27,6 +28,7 @@ module.exports = {
useTransaction,
cron,
uuid,
boss,
connectToJobQueue,
......
const { BaseModel } = require('@pubsweet/base-model')
const BaseModel = require('@pubsweet/base-model')
const useTransaction = async (callback, options = {}) => {
const { passedTrxOnly = false, trx } = options
......
......@@ -6867,7 +6867,7 @@ promise-inflight@^1.0.1:
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
"prompt@github:flatiron/prompt#1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87":
prompt@flatiron/prompt#1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87:
version "1.0.0"
resolved "https://codeload.github.com/flatiron/prompt/tar.gz/1c95d1d8d333b5fbc13fa5f0619f3dcf0d514f87"
dependencies:
......