Skip to content

Commit

Permalink
Merge pull request #2856 from metomi/2.4.x-sync
Browse files Browse the repository at this point in the history
🤖 Merge 2.4.x-sync into master
  • Loading branch information
oliver-sanders authored Feb 25, 2025
2 parents 7b8898e + 8eeb9b7 commit dc5d6c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ creating a new release entry be sure to copy & paste the span tag with the
updated. Only the first match gets replaced, so it's fine to leave the old
ones in. -->

## 2.4.1 (<span actions:bind='release-date'>Pending</span>)

[#2855](https://github.com/metomi/rose/pull/2855) -
Make Rose compatible with sqlite3 versions 3.46.0+.

## 2.4.0 (<span actions:bind='release-date'>Released 2025-01-08</span>)

No significant changes. Released for consistency with Cylc release cycle.
Expand Down
2 changes: 1 addition & 1 deletion metomi/rose/config_processors/fileinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ def create(self):
"""Create the database file if it does not exist."""
conn = self.get_conn()
cur = conn.execute(
"""SELECT name FROM sqlite_master WHERE type="table"
"""SELECT name FROM sqlite_master WHERE type='table'
ORDER BY name"""
)
names = [str(row[0]) for row in cur.fetchall()]
Expand Down

0 comments on commit dc5d6c7

Please sign in to comment.