Skip to content

Commit

Permalink
Merge branch 'release/1.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
mick352 committed Sep 5, 2019
2 parents 8b1c982 + e860e7d commit 32c6874
Show file tree
Hide file tree
Showing 7 changed files with 326 additions and 234 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ sudo: false
node_js:
- '8'
- '10'
- '12'
script:
- yarn test
before_install: yarn global add greenkeeper-lockfile@1
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.2.4, 2019-09-05

- Upgrade embetty-base, fix cloudflare error

## v1.2.3, 2019-06-11

- Upgraded dependencies.
Expand Down
2 changes: 1 addition & 1 deletion bin/www
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

const app = require('../')
const debug = require('debug')('embetty.web:server')
const debug = require('debug')('embetty-server:www')
const http = require('http')

const port = normalizePort(process.env.PORT || '3000')
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heise/embetty-server",
"version": "1.2.3",
"version": "1.2.4",
"main": "index.js",
"repository": "[email protected]:heiseonline/embetty-server.git",
"author": "Philipp Busse <[email protected]>",
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"@heise/embetty": "^1.1.0",
"@heise/embetty-base": "^1.0.0-beta.5",
"@heise/embetty-base": "^1.0.9",
"commander": "^2.15.1",
"cors": "^2.8.4",
"debug": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion routes/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { Forbidden } = require('../lib/exceptions')
const cors = require('cors')
const debug = require('debug')('embetty.web:server')
const debug = require('debug')('embetty-server:index')
const express = require('express')
const fs = require('fs')
const tweet = require('./tweet')
Expand Down
2 changes: 1 addition & 1 deletion test/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('CLI', () => {
const { stderr } = spawnSync(embettyBin, ['start', '--debug'], { timeout: 3000 })
const out = stderr.toString()
assert.ok(out.includes('express:router'))
assert.ok(out.includes('embetty.base'))
assert.ok(out.includes('embetty-base'))
})

it('embetty start --cache <cache>', () => {
Expand Down
545 changes: 316 additions & 229 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 32c6874

Please sign in to comment.