Skip to content

Commit 2b12413

Browse files
committed
Merge branch 'beta' into stable
2 parents a65e957 + 594df4c commit 2b12413

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1363
-1755
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
POSTGRES_USER: postgres
6161
POSTGRES_PASSWORD: postgres
6262
POSTGRES_DB: bookbrainz_test
63+
POSTGRES_HOST: localhost
6364

6465
- name: Set up node
6566
uses: actions/setup-node@v1

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
/config/config.json
1010
/config/config.local.json
1111

12+
# Directory designated to store local compose overrides and related files
13+
/local/
14+
1215
# react-hot-loader files
1316
/static/hot
1417
*.hot-update.js

DEPENDENCIES_MANUAL_INSTALL.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ARG BB_ROOT=/home/bookbrainz/bookbrainz-site
4242
WORKDIR $BB_ROOT
4343
RUN chown bookbrainz:bookbrainz $BB_ROOT
4444

45-
RUN echo $GIT_COMMIT_SHA > .git-version
45+
ENV GIT_COMMIT_SHA=$GIT_COMMIT_SHA
4646

4747
# Files necessary to complete the JavaScript build
4848
COPY --chown=bookbrainz scripts/ scripts/

INSTALLATION_TROUBLESHOOTING.md

Lines changed: 0 additions & 139 deletions
This file was deleted.

NODEJS_SETUP.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@fortawesome/free-solid-svg-icons": "^6.1.1",
3737
"@fortawesome/react-fontawesome": "^0.1.11",
3838
"array-move": "^3.0.1",
39-
"bookbrainz-data": "3.0.0",
39+
"bookbrainz-data": "4.0.0",
4040
"chart.js": "^2.9.4",
4141
"chartjs-adapter-date-fns": "^1.0.0",
4242
"classnames": "^2.3.2",
@@ -103,7 +103,7 @@
103103
"@babel/register": "^7.17.0",
104104
"@faker-js/faker": "^7.2.0",
105105
"@types/express": "^4.17.15",
106-
"@types/lodash": "^4.14.164",
106+
"@types/lodash": "^4.14.191",
107107
"@types/react-select": "^4.0.18",
108108
"@typescript-eslint/eslint-plugin": "^4.28.3",
109109
"@typescript-eslint/parser": "^4.6.1",
@@ -131,18 +131,18 @@
131131
"file-loader": "^6.2.0",
132132
"jsdom": "20.0.0",
133133
"jsdom-global": "3.0.2",
134-
"mini-css-extract-plugin": "^2.5.3",
134+
"mini-css-extract-plugin": "^2.7.4",
135135
"mocha": "^9.1.3",
136136
"nodemon": "^2.0.2",
137137
"redux-mock-store": "^1.5.4",
138138
"resolve-url-loader": "^5.0.0",
139139
"rewire": "^5.0.0",
140-
"sass": "^1.49.0",
140+
"sass": "^1.59.2",
141141
"sass-loader": "^13.2.0",
142142
"sinon": "^14.0.0",
143143
"typescript": "^4.0.5",
144144
"uuid": "^8.3.2",
145-
"webpack": "^5.69.1",
145+
"webpack": "^5.76.0",
146146
"webpack-bundle-analyzer": "^4.3.0",
147147
"webpack-cli": "^4.10.0",
148148
"webpack-dev-middleware": "^5.3.1",

scripts/create-test-db.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

33
# set up variables with defaults
4-
: "${POSTGRES_USER:=postgres}"
4+
: "${POSTGRES_USER:=bookbrainz}"
55
: "${POSTGRES_PASSWORD:=}"
66
: "${POSTGRES_DB:=bookbrainz_test}"
7-
: "${POSTGRES_HOST:=localhost}"
7+
: "${POSTGRES_HOST:=postgres}"
88

99
export PGPASSWORD=$POSTGRES_PASSWORD
1010

0 commit comments

Comments
 (0)