Skip to content

Releases: umami-software/umami

v1.40.0

26 Jan 04:47
cc2be9f
Compare
Choose a tag to compare

News

Hi everyone, this will probably be the last release in the v1 series before we release v2. If you haven't seen it, we published a public roadmap for v2 features here, https://trello.com/b/LIIz6ypc/umami-2023-roadmap.

Also, we are still running a public beta of our upcoming cloud service, which is already running on the v2 stack. You can sign up for free at https://umami.is/beta.

Fixes

  • Fixed issue with share token giving access to app pages (user could not perform any changes, only view)
  • Fixed issue with mobile menu showing incorrectly
  • Fixed share URL not saving correctly
  • Fixed calendar not showing all days on certain months

Updates

  • Added additional checks for API request parameters
  • Added Sinhala language!
  • Language translation updates: Croatian, Thai, Lithuanian
  • Added caching to CORS preflight requests
  • Upgrade Prisma to 4.9.0 (fixes OpenSSL issue when deploying to Railway)

A huge thanks to all the contributors on this release! @emilvirkki @kiprasmel @lnxd @SamAsEnd @mbos2

v1.39.5

14 Nov 02:02
9ee6fb9
Compare
Choose a tag to compare

Updates

  • Added Croatian language! 🥳 🥇
  • The check for bots now returns 200 instead of 401
  • Some language updates

A huge thanks to all the contributors on this release! @ariaieboy @Maxime-J @ShizuMilof

v1.39.4

01 Nov 15:13
0d897e9
Compare
Choose a tag to compare

Fixes

This release fixes the following:

  • Fixed issue with assigning owner to website, #1614
  • Fixed issue with deleting accounts, #1624

Updates

  • Updated Nextjs to v12.3.2
  • Language translation updates

A huge thanks to all the contributors on this release! @aidanm1999 @RikoDEV @enricopaulini @briancao

v1.39.3

26 Oct 23:10
ab4a60f
Compare
Choose a tag to compare

Fixes

This release fixes the following:

  • Fixed issue with editing website, #1603

v1.39.2

26 Oct 01:36
aceb904
Compare
Choose a tag to compare

Fixes

This release fixes the following:

  • Fixed migration issue for some PostgreSQL users, #1583
  • Fixed real-time page not showing logs correctly, #1585
  • Fixed issue with changing passwords, #1592
  • Fixed issue with accessing user dashboards, #1590
  • Fixed issue with editing dashboards, #1597

v1.39.1

25 Oct 03:06
94dc915
Compare
Choose a tag to compare

Minor update

This release fixes an issue where share pages don't render.

v1.39.0

25 Oct 01:56
80f2231
Compare
Choose a tag to compare

Features

In this release we focused mainly on internal changes to improve security, performance and database support. We've also introduced a new UI that allows you to query your event data. In the events section, you will see a new button called Event Data.

image

From there you'll be able to query your JSON data by selecting columns and applying filters.

image

News

This will probably be one of the last v1 releases we do as we gear up for v2 of Umami. In v2 we'll be making changes in that will enable lots of new features, such as:

  • Advanced user/role/group based permissions so you can share access to website with your team
  • Completely customizable dashboard that will let you show data however you want
  • A/B testing
  • Visitor funnels
  • Session recording

and much more!

A reminder, if you are interested in joining our free beta program before we launch, you can sign up at https://umami.is/beta.

Fixes

  • Fixed wrong dot color on real-time page
  • Language translation updates

Updates

  • Upgraded Next to 12.3.1
  • Upgraded Prisma to 4.5.0

A huge thanks to all the contributors on this release! @rebron1900 @franciscao633 @ariaieboy @userdehghani @mikusaa @briancao @bilguun0203 @AliMickey @roywangdev @sergiomensing @SeesawLiu

v1.38.0

06 Sep 02:26
9916265
Compare
Choose a tag to compare

News

We have made lots of updates to how database migrations work. Hopefully this will provide a much smoother process going forward. We've moved the check-db script which performs migrations to the build step. Now when you deploy to a host like Vercel or Netlify, your database will be upgraded before the app ever starts. This should cut down on a lot of the migration related bugs people have been running into.

For Docker users, the check-db can't be run during build because the images are pre-built. It will run before starting the application just like before.

We have also made major database changes to get ready for our hosted cloud offering, adding support for Clickhouse, Kafka and Redis. Any changes we make will of course be open-sourced so you will get the same performance benefits we gain. If you are interested in joining our free beta program before we launch, you can sign up at https://umami.is/pricing.

Features

  • Added Yesterday option to the date picker
  • You can now default the theme and locale using query parameters.
    • For the theme you can use ?theme=dark or ?theme=light.
    • For locale you can use ?locale=en-US.
  • Admins can now reassign websites to other users
  • Removed cascading deletes from the database. We now run all commands in a transaction.

Fixes

  • Fixed issue with Edit Dashboard not working when a website is deleted
  • Fixed deployment issue with Netlify
  • Fixed country lookup returning Unknown in some cases
  • Fixed issue with + sign disappearing in the metrics display

Updates

  • Updated Next to 12.2.5
  • Updated Prisma to 4.3.1
  • Language translation updates

A huge thanks to all the contributors on this release! @zx900930 @the-lazy-fox @guigrpa @aidanm1999 @wangyang0210 @Dhravya @Maxime-J @briancao @franciscao633 @AkashRajpurohit

v1.37.0

10 Aug 03:23
2f24a87
Compare
Choose a tag to compare

Important

This release includes a new database migration. In this update we are making some changes to Events. Now instead of event_type and event_value columns, there is going to be a single renamed column, event_name. Having the two separate columns caused a lot of confusion regarding what to store in each field. There is now a new table called event_data which is used to store event related data. In the future you will be able to run reports against your events and event data.

Now to track events, you simply choose an event name, like button-click and optionally send some JSON data along with it.

umami.trackEvent('button-click', { userId: 123, buttonName: 'Newsletter signup' });

When you start the app for the first time, the database changes will be automatically applied. Your data however will not be automatically migrated because we can't determine what event_name you will want to use. Your old event table has been renamed to _event_old, which you can use to manually move data to the new table. If you've never used events, feel free to delete the _event_old table.

Features

  • New model for Events ☝️
  • New languages: Thai and Bengali! 🐯 🥳
  • Edit dashboard feature. You can now sort websites on the dashboard

umami2

  • UTM parameters section is now Query parameters. This now captures all the URL query parameters, not just UTM
    image
  • Refactored handling of environment variables. Before, some environment variables had to be defined at built-time versus run-time, which caused a lot of issues for Docker users. With this change we can now access all environment variables at runtime. No need to rebuild the application or Docker image.

Fixes

  • Updated Docker build to work with COLLECT_API_ENDPOINT
  • Removed DISABLE_LOGIN check from middleware due to Vercel issues.
  • Fixed issue with Heroku deploy

Updates

  • Upgraded Next.js to 12.2.4
  • Upgraded Prisma to 4.1.1
  • Language translation updates.

A huge thanks to all the contributors on this release! @cywio @briancao @wangyang0210 @biqette @umarhadi @H0rn0chse

v1.36.1

25 Jul 05:41
Compare
Choose a tag to compare

Minor update

  • Fixed issue with sessions being loaded incorrectly
  • Language translation updates

A huge thanks to all the contributors on this release! @Lemonawa @RikoDEV @KevinVR