django-planet

What's new in Django community blogs?

Django News - Django security releases issued: 5.0.3, 4.2.11, and 3.2.25 - Mar 8th 2024

March 8, 2024 » Django News » [Archived Version]

News Django security releases issued: 5.0.3, 4.2.11, and 3.2.25 A new security release addressing a potential regular expression denial-of-service. As always, the best security measure is to stay up-to-date with the latest version of Django. djangoproject.com Google Summer of Code 2024 Django is once again part of Google's Summer of Code. This long-running program has resulted in many key contributions to Django over the years. w…

Read More

Do It Live - Building SaaS with Python and Django #185

March 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we deployed all our user setup and Stripe configuration change to the live site and tested the new flows end to end. Along the way, we found a bug in djstripe as well as some final bugs in the JourneyInbox configuration that prevented things from working. This is why you test!

Read More

Do It Live - Building SaaS #185

March 8, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we deployed all our user setup and Stripe configuration change to the live site and tested the new flows end to end. Along the way, we found a bug in djstripe as well as some final bugs in the JourneyInbox configuration that prevented things from working. This is why you test!

Read More

Final Pre-live Features - Building SaaS with Python and Django #184

March 7, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we completed the final features needed to get the site open for others to sign up. This included some dynamic limiting of the number of people allowed to sign up. We also had to add the template styling for the login page.

Read More

Final Pre-live Features - Building SaaS #184

March 7, 2024 » Django on Matt Layman » [Archived Version]

In this episode, we completed the final features needed to get the site open for others to sign up. This included some dynamic limiting of the number of people allowed to sign up. We also had to add the template styling for the login page.

Read More

Thoughts on Code Reviews

March 6, 2024 » Anže’s Blog » [Archived Version]

My thoughts on code reviews.

Read More

Deploying Django Apps in Kubernetes

March 5, 2024 » The PyCharm Blog » [Archived Version]

As an open-source container orchestration platform that automates deployment, scaling, and load balancing, Kubernetes offers unparalleled resilience and flexibility in the management of your Django applications. Whether you’re launching a small-scale project or managing a complex application, Kubernetes provides a robust environment to enhance your Django application, ensuring it’s ready to meet the demands of […]

Read More

Speed up Django’s collectstatic command with Collectfasta

March 4, 2024 » JasonGi » [Archived Version]

Django’s collectstatic command (added in Django 1.3 – March 23, 2011) was designed for storage backends where file retrieval was cheap because it was on your local disk. In Django 1.4 (March 23, 2012) Django introduced CachedStaticFilesStorage which would append md5 hashes to the end of files so that you could have multiple versions of … Continue reading "Speed up Django’s collectstatic command with Collectfasta" The post Speed up Django’s collectstatic command wit…

Read More

Django security releases issued: 5.0.3, 4.2.11, and 3.2.25

March 4, 2024 » The Django weblog » [Archived Version]

In accordance with our security release policy, the Django team is issuing Django 5.0.3, Django 4.2.11, and Django 3.2.25. These releases addresses the security issue detailed below. We encourage all users of Django to upgrade as soon as possible. CVE-2024-27351: Potential regular expression denial-of-service in django.utils.text.Truncator.words() django.utils.text.Truncator.words() method (with html=True) and truncatewords_html template filter were subject to a potential regular expression de…

Read More

What if you don’t use Homebrew?

March 3, 2024 » Carlton's latest posts. » [Archived Version]

I use a 2021 MacBook Pro. When I got it, I decided not to use a system package manager, specifically Homebrew, but I wasn’t in the market for MacPorts or anything else either. I keep my Macs for a long time. The previous was a 2013 model. I used Homebrew, I think, for its whole life, and I’d had enough of decisions it makes, and makes for me. I lost count of the number of times I’d go to try a new tool, and find it updating seemingly every installed package, at great loss of time, and subtle b…

Read More