v1.5.1 #2507
Replies: 5 comments 10 replies
-
When specifying the
RAM limits are not in place in this deployment, and the crashdump does not indicate troubles with OOM errors (~500MB used). When generating the city mappings manually through your package the result is the same as when using the prebuilt ones, but using the lite variant ( |
Beta Was this translation helpful? Give feedback.
-
If I use the (I know there was a conversation about this somewhere around the repo recently, but I can't seem to find it and check if that made it in...) |
Beta Was this translation helpful? Give feedback.
-
Invite_only doesnt seem to work |
Beta Was this translation helpful? Give feedback.
-
👋
|
Beta Was this translation helpful? Give feedback.
-
Hello,
The same issue upgrade from |
Beta Was this translation helpful? Give feedback.
-
The highlights of this release are:
New first launch
Admin user registration is now done through the UI instead of configuration variables. At first launch, users are presented with a registration page which will create the admin account. Admin account related configuration variables are ignored going forward. See below for details.
Admin user registration is required from 1.5 onwards. We are deprecating the
DISABLE_AUTH
option which allowed Plausible to be used without any user account at all.Users with existing admin accounts are not affected, but we recommend removing the unused configuration variables. A benefit of moving admin account management to the UI is that you can now change the admin email account through the UI. Previously, this was done by manual database changes and configuration change which required restarting the service.
Upgrading Plausible Analytics to v1.5
In your
docker-compose.yml
update the image used forplausible
tov1.5.1
Please make sure to not use
v1.5.0
release which had startup problems: #2491Restart the container
This will boot up the new version of the app.
City-level geolocation setup (Optional, requires more memory)
City level geolocation can be enabled by mounting a volume with the downloaded
geonames.csv
andgeolite2-city.mmdb
and settingGEONAMES_SOURCE_FILE
andIP_GEOLOCATION_DB
to point to them:docker-compose.yml
plausible-conf.env
Upgrading ClickHouse to 22.6 (Optional, but recommended)
In your
docker-compose.yml
update the image used forplausible_events_db
to a newer ClickHouse version:Restart the container
This will boot up the new version of ClickHouse.
Related PR: plausible/community-edition#45
Upgrading PostgreSQL to 14 (Optional, but recommended)
Upgrading PostgreSQL is a bit trickier, here's the upgrade guide.
Removing deprecated commands and environment variables (Optional, but recommended)
ADMIN_USER_EMAIL
,ADMIN_USER_NAME
,ADMIN_USER_PWD
,DISABLE_AUTH
environment variables are no longer supported and are ignored if set.Please remove them from
plausible-conf.env
:/entrypoint.sh db init-admin
command that was responsible for creating the admin user is also deprecated.Please remove it from
docker-compose.yml
:Changelog
Following changes have been made since
v1.4
:Added
tagged-events
script extension for out-of-the-box custom event tracking|
characters with\
in Stats API filter valueslimit
parameter in Stats APIexclusions
script extension now also takes adata-include
attribute tagfile-downloads
script extension for automatically tracking file downloads as custom eventsPUT /api/v1/sites/goals
with form paramssite_id
,event_name
and/orpage_path
, andgoal_type
with supported typesevent
andpage
DELETE /api/v1/sites/goals/:goal_id
with form paramssite_id
u
option can now be used in themanual
extension to specify a URL when triggering events.utm_content
andutm_term
Support for utm_term and utm_content #515LISTEN_IP
configuration parameter no pg_hba.conf entry for host when connecting to Postgres via Heroku #1189property=event:goal
returns custom goal properties (withinprops
)ECTO_IPV6
)contains
, available forpage
,entry_page
,exit_page
GET /api/v1/sites/:site_id
Fixed
script.exclusions.hash.js
.pages.csv
file now includes pageviews again plausible/analytics#1878Changed
script.file-downloads.outbound-links.js
only sends an outbound link event when an outbound download link is clickedentry_page
andexit_page
to be part of thePage
filter groupView all
link to the site-switcher dropdown in the dashboard.+ Add Site
link to the site-switcher dropdown in the dashboard.DISABLE_REGISTRATIONS
configuration parameter can now acceptinvite_only
to allow invited users to register an account while keeping regular registrations disabled Adds "invite_only" disable_registration config option #1841Security
Deprecated
DISABLE_AUTH
is no longer supportedRelease candidates
v1.5.0-rc.0
v1.5.0-rc.1
This discussion was created from the release v1.5.1.
Beta Was this translation helpful? Give feedback.
All reactions