Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
8280841: Update SQLite to 3.37.2
Backport-of: 6b7b463cd2286658ad7d236824ded9b1020329e7
- Loading branch information
Showing
5 changed files
with
19,305 additions
and
11,247 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
modules/javafx.web/src/main/native/Source/ThirdParty/sqlite/UPDATING.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Updating SQLite in OpenJFX: | ||
|
||
1. Find the current version of the SQLite used in JavaFX from VERSION.txt | ||
|
||
2. Check if there are any JavaFX specific changes in SQLite source: | ||
- Compare the SQLite source files from JavaFX workspace with the source files | ||
corresponding to same version on https://www.sqlite.org/index.html | ||
- Currently there are no JavaFX specific changes made in SQLite source. | ||
In case you find any changes make sure to retain them with update. | ||
|
||
3. Get the source code of required release version of SQLite. | ||
- Download the amalgamation code for the release from https://www.sqlite.org | ||
- For example, the SQLite 3.37.2 amalgamation is named as "sqlite-amalgamation-3370200.zip". | ||
- FYI about amalgamation: | ||
- The amalgamation contains everything a library may need to include SQLite. | ||
- Over 100 separate source files are concatenated into a single large C file | ||
named "sqlite3.c" and referred as "the amalgamation". | ||
|
||
4. Update the SQLite source files in JavaFX from the downloaded amalgamation source. | ||
- Retain JavaFX changes, if any. | ||
|
||
5. Update the new version in VERSION.txt. | ||
|
||
6. Perform build and sanity testing. | ||
|
||
7. Expand tabs and remove trailing white spaces from source files. |
2 changes: 1 addition & 1 deletion
2
modules/javafx.web/src/main/native/Source/ThirdParty/sqlite/VERSION.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.32.3 | ||
3.37.2 |
Oops, something went wrong.
e05362c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues