#15909 closed defect (bug) (fixed)
outdated jquery.form.js
Reported by: | bmb | Owned by: | azaozz |
---|---|---|---|
Milestone: | 3.2 | Priority: | normal |
Severity: | minor | Version: | 3.0.3 |
Component: | External Libraries | Keywords: | has-patch 3.2-early |
Focuses: | Cc: |
Description
the jquery form plugin version shipped with wp is from about 3 years old. Shouldn't it be updated?
Attachments (4)
Change History (10)
#2
@
14 years ago
- Keywords has-patch added; close removed
Still being maintained, last commit just a couple of weeks ago.
#4
@
14 years ago
- Milestone changed from Future Release to 3.2
Closed #17471 as duplicate. Latest version is now 2.73.
#5
@
14 years ago
- Owner set to azaozz
- Resolution set to fixed
- Status changed from new to closed
In [17944]:
#6
@
14 years ago
- Type changed from enhancement to defect (bug)
The script jquery.form.js
is not deprecated but it's use is deprecated in WordPress core. We used to use it long time ago as it was adding methods similar to .serialize()
and serializeArray()
. However these methods were added in jQuery 1.3 making the script redundant for core use.
Agree we needed to update it so we don't break plugins that use it but perhaps we can give a warning and remove it early in 3.3.
Note: See
TracTickets for help on using
tickets.
There's a note in the script-loader:
// deprecated, not used in core, most functionality is included in jQuery 1.3
.If it's not deprecated upstream, I don't see much issue updating it for plugins to use it and/or who are using it now, since we probably can't just remove it.