Skip to content

Commit

Permalink
Merge branch 'release/3.0.1' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jan 11, 2024
2 parents f4b6e37 + e7e811c commit 93f00e4
Show file tree
Hide file tree
Showing 27 changed files with 850 additions and 259 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Instant Analytics GA4 Changelog

## 3.0.1 - 2024.01.11
### Changed
* Updated the buildchain to use Vite 5

### Fixed
* Fixed an error where it was impossible to add a Commerce Product list impression without providing a list name. ([#25](https://github.com/nystudio107/craft-instantanalytics-ga4/issues/25))
* Fixed an error where it was impossible to send more than 25 GA4 events. ([#24](https://github.com/nystudio107/craft-instantanalytics-ga4/issues/24))
* Fixed an issue where a purchasable can be `null` if the product variant has been deleted in the backend while still being in basket ([#28](https://github.com/nystudio107/craft-instantanalytics-ga4/pull/28))

## 3.0.0 - 2023.10.31
### Added
* Add currency to all Commerce GA4 events, but better. ([#20](https://github.com/nystudio107/craft-instantanalytics-ga4/issues/20))
Expand Down
4 changes: 2 additions & 2 deletions buildchain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG TAG=18-alpine
ARG TAG=20-alpine
FROM node:$TAG

RUN npm install -g npm@^9.3.0
RUN npm install -g npm@^10.0.0

WORKDIR /app/buildchain/

Expand Down
4 changes: 2 additions & 2 deletions buildchain/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION?=4
TAG?=18-alpine
MAJOR_VERSION?=3
TAG?=20-alpine
CONTAINER?=$(shell basename $(dir $(CURDIR)))-v${MAJOR_VERSION}-buildchain
DEV_PORT?=300${MAJOR_VERSION}
IMAGE_INFO=$(shell docker image inspect $(CONTAINER):$(TAG))
Expand Down
Loading

0 comments on commit 93f00e4

Please sign in to comment.