Skip to content

Commit 6156938

Browse files
committed
Merge branch 'release/3.3.0'
2 parents 6c23dc2 + f8ffe9d commit 6156938

File tree

6 files changed

+1252
-1389
lines changed

6 files changed

+1252
-1389
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [3.3.0] - 2021-12-04
8+
9+
### Added
10+
11+
- Docker support for linux/arm64 and linux/arm/v7 (#298)
12+
713
## [3.2.0] - 2021-09-18
814

915
### Changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /srv/app/
66
# Add dependencies first so that Docker can use the cache as long as the dependencies stay unchanged
77

88
COPY package.json yarn.lock /srv/app/
9-
RUN yarn install --production --frozen-lockfile
9+
RUN yarn install --production --frozen-lockfile --network-timeout 120000
1010

1111
# Copy source after the dependency step as it's more likely that the source changes
1212

dist/index.js

Lines changed: 96 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Upgrade guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
> This change is relevant for you when using a wildcard as the Access-Control-Allow-Origin.
88
9-
Using a wildcard (`*`) for the `Access-Control-Allow-Origin` header was never recommended as it's neither a secure solution nor does it allow Ackee to ignore your own visits. Please disable the `ignoreOwnVisits` option in ackee-tracker if you're currently using a wildcard. The [SSL and HTTPS](docs/SSL%20and%20HTTPS.md) guide contains better alternatives.
9+
Using a wildcard (`*`) for the `Access-Control-Allow-Origin` header was never recommended as it's neither a secure solution nor does it allow Ackee to ignore your own visits. Please disable the `ignoreOwnVisits` option in ackee-tracker if you're currently using a wildcard. The [SSL and HTTPS](SSL%20and%20HTTPS.md) guide contains better alternatives.
1010

1111
`ignoreOwnVisits` is now enabled by default and won't work when using a wildcard.
1212

1313
### New `Access-Control-Allow-Credentials` header
1414

1515
> This change is relevant for everyone.
1616
17-
Ackee requires [a new `Access-Control-Allow-Credentials` header](docs/CORS%20headers.md#credentials) which was previously optional. Make sure to add this header in your server or reverse proxy configuration.
17+
Ackee requires [a new `Access-Control-Allow-Credentials` header](CORS%20headers.md#credentials) which was previously optional. Make sure to add this header in your server or reverse proxy configuration.
1818

1919
### ackee-tracker with new `.create` and `.record` syntax
2020

@@ -32,4 +32,4 @@ A new parameter is required when requesting referrers via the GraphQL API. The p
3232

3333
> This change is relevant for you when using the GraphQL API.
3434
35-
The `id` of requested referrers was always a URL, but has been changed to a string. That's because [referrers can now include parameters](docs/Enhancing%20referrers.md) (e.g. `source` when using `ackee-tracker`).
35+
The `id` of requested referrers was always a URL, but has been changed to a string. That's because [referrers can now include parameters](Enhancing%20referrers.md) (e.g. `source` when using `ackee-tracker`).

package.json

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ackee",
33
"private": true,
4-
"version": "3.2.0",
4+
"version": "3.3.0",
55
"authors": [
66
"Tobias Reich <tobias@electerious.com>"
77
],
@@ -58,30 +58,24 @@
5858
},
5959
"devDependencies": {
6060
"@apollo/client": "^3.4.12",
61-
"@electerious/eslint-config": "^2.0.5",
61+
"@electerious/eslint-config": "^3.0.0",
6262
"ava": "3.15.0",
6363
"classnames": "^2.3.1",
6464
"coveralls": "^3.1.1",
65-
"eslint": "^7.32.0",
66-
"eslint-plugin-ava": "^12.0.0",
67-
"eslint-plugin-import": "^2.24.2",
68-
"eslint-plugin-react": "^7.25.2",
69-
"eslint-plugin-react-hooks": "^4.2.0",
70-
"eslint-plugin-unicorn": "^36.0.0",
7165
"formbase": "^12.0.2",
72-
"history": "^5.0.1",
66+
"history": "^5.1.0",
7367
"human-number": "^1.0.6",
7468
"mocked-env": "^1.3.5",
75-
"mongodb-memory-server": "^7.4.0",
76-
"nodemon": "^2.0.12",
69+
"mongodb-memory-server": "^8.0.4",
70+
"nodemon": "^2.0.15",
7771
"normalize.css": "^8.0.1",
7872
"nyc": "^15.1.0",
7973
"prop-types": "^15.7.2",
8074
"react": "^17.0.2",
8175
"react-apollo-network-status": "^5.0.1",
8276
"react-dom": "^17.0.2",
8377
"react-fast-compare": "^3.2.0",
84-
"react-hotkeys-hook": "^3.4.0",
78+
"react-hotkeys-hook": "^3.4.4",
8579
"react-use": "^17.3.1",
8680
"rosid-handler-js-next": "^1.0.1",
8781
"rosid-handler-sass": "^8.0.0",

0 commit comments

Comments
 (0)