Changelog History
Page 2
-
v3.0.3 Changes
January 24, 2021â Added
- Missing breaking change notice in the changelog of version 3.0.0 for those using a wildcard
Access-Control-Allow-Origin
header
đ Fixed
- Unknown sizes id when a size is zero (#217)
- Prevent unknown id errors like in #217 for other record properties
- âĄī¸ Updated ackee-tracker which re-added
ignoreOwnVisits
for those using a wildcardAccess-Control-Allow-Origin
header
- Missing breaking change notice in the changelog of version 3.0.0 for those using a wildcard
-
v3.0.2 Changes
January 21, 2021đ Fixed
- âĒ Temporary workaround for missing browser sizes (#217)
-
v3.0.1 Changes
January 21, 2021đ Fixed
- đģ UI showing the wrong version
- Server serving an outdated version of ackee-tracker
-
v3.0.0 Changes
January 21, 2021đģ Events, browser navigation and better referrers đ
Highlights
Events
đ Ackee can now [track events](docs/Events.md) like newsletter subscriptions, buttons clicks, checkout sums and more. It's the most requested feature and I'm happy that it's finally a part of Ackee.
đģ Browser navigation
You can now use the back and forward buttons to navigate between pages.
Referrers 2.0
đ You can now [specify a
source
parameter in URLs](docs/Enhancing%20referrers.md) (e.g.https://example.com?source=Newsletter
). Ackee will use the parameter instead of the referrer when available. This allows you the track links from newsletters and other platforms more precisely.Faster startup, smaller size
đ Ackee previously had to compile all source files before the server was ready. v3 now ships with all files Ackee needs and only builds those containing environment variables. This means running
yarn start
is way faster and the Docker container even smaller.đģ Oh, and we also reduced the JS file size of the UI by ~60%.
đĨ Breaking changes
Access-Control-Allow-Origin: "*"
not recommendedThis change is relevant for you when using a wildcard as the Access-Control-Allow-Origin.
đ Using a wildcard (
*
) for theAccess-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 theignoreOwnVisits
option in ackee-tracker if you're currently using a wildcard. The [SSL and HTTPS](docs/SSL%20and%20HTTPS.md) guide contains better alternatives.0ī¸âŖ
ignoreOwnVisits
is now enabled by default and won't work when using a wildcard.đ New
Access-Control-Allow-Credentials
headerThis change is relevant for everyone.
đ§ 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.ackee-tracker with new
.create
and.record
syntaxThis change is only relevant for you when using ackee-tracker in the Manually or Programmatic way.
âĄī¸ The changelog of ackee-tracker contains everything you need to know when updating to the newest version.
Referrers require
ReferrerType
in GraphQL APIThis change is relevant for you when using the GraphQL API.
A new parameter is required when requesting referrers via the GraphQL API. The parameter is called
ReferrerType
and can beWITH_SOURCE
,NO_SOURCE
orONLY_SOURCE
.Referrers can return non URL ids via GraphQL API
This change is relevant for you when using the GraphQL API.
đ 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 usingackee-tracker
).â Added
- đģ Browser navigation. It's now possible to navigate using the back and forward button in the browser.
- "Copied to clipboard" message when clicking on an input or textarea that copies to the clipboard (#166)
- Modals can be closed with the ESC key
- â Tests for permanent tokens, events and actions
source
field for records to track (thanks @BetaHuhn, #185)- Referrers will now show the
source
parameter when available (thanks @BetaHuhn, #185) - đ Use the
s
key to open the settings ando
to switch to the overview ([Keyboard shortcuts](docs/Keyboard%20shortcuts.md)) - Explanation why data is missing (#192)
đ Changed
- Compiled source files are now part of the repo
- đŗ Docker container size has been reduced (again)
- âĄī¸ Updated build tools allow us to use ~60% less JS in the UI
đ Fixed
- Close, delete and submit in modals could be triggered multiple times
-
v2.4.1 Changes
December 20, 2020đ Changed
- âĄī¸ Updated Dockerfile reduces the size of the Docker build by ~58% (#195, thanks @omBratteng)
đ Fixed
- đģ Errors from permanent tokens not showing up in the UI
- â Remove console logs from
apollo-server-plugin-http-headers
- đ˛ Log GraphQL error instead of
undefined
-
v2.4.0 Changes
November 15, 2020đ Ackee now ignores your own visits once you have logged into the dashboard. Make sure to enable the
ignoreOwnVisits
option in ackee-tracker to use this feature. It's currently opt-in, because it requires a newAccess-Control-Allow-Credentials
header, which wasn't previously required. It will be turned on by default in the next major release of Ackee.đą > âšī¸ Some browsers strictly block third-party cookies when Ackee runs on a different domain than the site you're visiting. Therefore, it may happen that your own visits still find their way into your statistics, even when the option
ignoreOwnVisits
is turned on.â Added
-
v2.3.0 Changes
November 04, 2020đ This release adds support for Vercel and updates the included
ackee-tracker
which now ignores bots.â Added
- đ Support for Vercel (#180, thanks @elliottsj)
- Contributing guide and issue templates (#184, thanks @BetaHuhn)
đ Changed
- âĄī¸
ackee-tracker
updated to version 4.1.0
-
v2.2.0 Changes
November 01, 2020đ New tools like ackee-report, ackee-bitbar and the Ackee iOS widget are build upon the powerful API of Ackee. This release makes it even easier to them by introducing permanent tokens. Permanent tokens never expire and are perfect for tools that run in the background. You can create them in the settings of Ackee and use them for authentication in Ackee-powered apps.
â Added
đ Fixed
- Serverless function CORS headers (#175)
-
v2.1.1 Changes
October 28, 2020đ Fixed
- đ Error while deploying to Netlify (#175)
-
v2.1.0 Changes
October 24, 2020đ This release introduces support for serverless functions. You can now deploy Ackee to Netlify đ It also reduces the memory usage and allows you to build all static files into
/dist
by runningyarn build
. Runyarn server
to start the server without building those files, again. This reduces the initial startup time.yarn start
combines both commands for convenience and is still the recommended way to run Ackee.â Added
- đ Support for serverless functions and Netlify (#155)
- â Added "Deploy to Netlify" to the Get Started guide
- đ Build all static files into
/dist
by runningyarn build
- Start the server without rebuilding static files using
yarn server
đ Changed
đ Fixed