Skip to content

Commit 19c5eea

Browse files
authored
Merge pull request #2291 from MoveOnOrg/stage-main-13-0-1
Stage main 13.0.1
2 parents 4538f00 + d864249 commit 19c5eea

File tree

7 files changed

+20
-9
lines changed

7 files changed

+20
-9
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ DST_REFERENCE_TIMEZONE='US/Eastern'
5050
PASSPORT_STRATEGY=local
5151
TEXTER_SIDEBOXES=celebration-gif,default-dynamicassignment,default-releasecontacts,contact-reference,tag-contact,freshworks-widget,default-editinitial,take-conversations,hide-media,texter-feedback,contact-notes
5252
OWNER_CONFIGURABLE=ALL
53+
NGP_VAN_API_KEY=
54+
NGP_VAN_APP_NAME=
55+
NGP_VAN_WEBHOOK_BASE_URL=

.github/workflows/jest-tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
${{ runner.os }}-${{ matrix.node-version }}-yarn-
3838
- run: yarn
3939
- env:
40-
NODE_OPTIONS: "--max-old-space-size=4096"
40+
NODE_OPTIONS: "--max-old-space-size=8192"
4141
run: yarn test
4242
test-rediscache-contactcache:
4343
runs-on: ubuntu-latest
@@ -70,7 +70,7 @@ jobs:
7070
${{ runner.os }}-yarn-
7171
- run: yarn
7272
- env:
73-
NODE_OPTIONS: "--max-old-space-size=4096"
73+
NODE_OPTIONS: "--max-old-space-size=8192"
7474
run: yarn test-rediscache-contactcache
7575
test-rediscache:
7676
runs-on: ubuntu-latest
@@ -103,7 +103,7 @@ jobs:
103103
${{ runner.os }}-yarn-
104104
- run: yarn
105105
- env:
106-
NODE_OPTIONS: "--max-old-space-size=4096"
106+
NODE_OPTIONS: "--max-old-space-size=8192"
107107
run: yarn test-rediscache
108108
test-sqlite:
109109
runs-on: ubuntu-latest
@@ -127,5 +127,5 @@ jobs:
127127
${{ runner.os }}-yarn-
128128
- run: yarn
129129
- env:
130-
NODE_OPTIONS: "--max-old-space-size=4096"
130+
NODE_OPTIONS: "--max-old-space-size=8192"
131131
run: yarn test-sqlite

.keep

Whitespace-only changes.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG BUILDER_IMAGE=node:12.22
2-
ARG RUNTIME_IMAGE=node:12.22-alpine
1+
ARG BUILDER_IMAGE=node:16.18
2+
ARG RUNTIME_IMAGE=node:16.18-alpine
33
ARG PHONE_NUMBER_COUNTRY=US
44

55
FROM ${BUILDER_IMAGE} as builder

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Spoke is an open source text-distribution tool for organizations to mobilize sup
77

88
Spoke was created by Saikat Chakrabarti and Sheena Pakanati, and is now maintained by MoveOn.org.
99

10-
The latest version is [13.0](https://github.com/MoveOnOrg/Spoke/tree/13.0.0) (see [release notes](https://github.com/MoveOnOrg/Spoke/blob/main/docs/RELEASE_NOTES.md#v130))
10+
The latest version is [13.0.1](https://github.com/MoveOnOrg/Spoke/tree/13.0.1) (see [release notes](https://github.com/MoveOnOrg/Spoke/blob/main/docs/RELEASE_NOTES.md#v1301))
1111

1212

1313
## Setting up Spoke
@@ -24,7 +24,7 @@ Want to know more?
2424
### Quick Start with Heroku
2525
This version of Spoke suitable for testing and, potentially, for small campaigns. This won't cost any money and will not support production(aka large-scale) usage. It's a great way to practice deploying Spoke or see it in action.
2626

27-
<a href="https://heroku.com/deploy?template=https://github.com/MoveOnOrg/Spoke/tree/13.0.0">
27+
<a href="https://heroku.com/deploy?template=https://github.com/MoveOnOrg/Spoke/tree/13.0.1">
2828

2929
<img src="https://www.herokucdn.com/deploy/button.svg" alt="Deploy">
3030
</a>

docs/RELEASE_NOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release Notes
22

3+
## v13.0.1
4+
_September 2023_ Version 13.0.1
5+
6+
This is a patch release that has passing tests and updates docker file to node16.
7+
8+
### Appreciations
9+
[Arique Aguilar](https://github.com/Arique1104), [Kathy Nguyen](https://github.com/crayolakat)
10+
311
## v13.0
412
_February 2023:_ Version 13.0
513

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
verbose: true,
3-
testURL: "http://localhost/",
3+
testURL: "http://localhost:3000",
44
testEnvironment: "node",
55
globals: {
66
SUPPRESS_DATABASE_AUTOCREATE: "1",

0 commit comments

Comments
 (0)