Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: canonical/canonicalwebteam.flask-base
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.3.0
Choose a base ref
...
head repository: canonical/canonicalwebteam.flask-base
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.4.0
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 21, 2025

  1. Fix Werkzeug version limit

    goulinkh committed Mar 21, 2025
    Copy the full SHA
    99611e6 View commit details
  2. Merge pull request #83 from canonical/fix-version-limit

    Fix Werkzeug version limit
    Dampolo03 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9dd6b33 View commit details
  3. chore: bump version to 2.4.0

    goulinkh committed Mar 21, 2025
    Copy the full SHA
    9602fdd View commit details
  4. Merge pull request #84 from canonical/bump-version

    chore: bump version to 2.4.0
    Dampolo03 authored Mar 21, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f2bb31a View commit details
Showing with 11 additions and 2 deletions.
  1. +8 −0 CHANGELOG.md
  2. +3 −2 setup.py
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 2.4.0 (2025-03-21)

Fix Werkzeug version limit to work with current Flask `2.3.3`.

# 2.3.0 (2025-02-28)

Add response content compression using Gzip

# 2.2.2 (2025-02-17)

Fix forwarded IP header to use `X-Original-Forwarded-For` in priority over `X-Forwarded-For`.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

setup(
name="canonicalwebteam.flask-base",
version="2.3.0",
version="2.4.0",
description=(
"Flask extension that applies common configurations"
"to all of webteam's flask apps."
@@ -29,7 +29,8 @@
install_requires=[
"canonicalwebteam.yaml-responses[flask] (>=1,<2)",
"talisker[gunicorn,gevent,flask,prometheus,raven] >= 0.21.4",
"Werkzeug >= 2.3.7",
# TODO: Remove this once Flask is updated to 3.x.x
"Werkzeug < 3.0.0",
# Use latest version of Flask once Talisker supports werkzeug >=3
"flask==2.3.3",
"flask-compress==1.17",