All Versions
71
Latest Version
Avg Release Cycle
93 days
Latest Release
915 days ago
Changelog History
Page 7
Changelog History
Page 7
-
v1.6.0 Changes
March 19, 2012- โ adding URN (
javascript:
,mailto:
, ...) support - โ adding
.scheme()
as alias of.protocol()
- โ adding
.userinfo()
to comply with terminology of RFC 3986 - โ adding jQuery Plugin
src/jquery.URI.js
- ๐ fixing relative scheme URLs - (Issue #19 byroot)
- โ adding URN (
-
v1.5.0 Changes
February 19, 2012- โ adding Second Level Domain (SLD) Support - (Issue #17)
-
v1.4.3 Changes
January 28, 2012- ๐ fixing global scope leakage - (Issue #15 mark-rushakoff)
-
v1.4.2 Changes
January 25, 2012 -
v1.4.1 Changes
January 21, 2012- โ adding CommonJS compatibility - (Issue #11, Evangenieur)
-
v1.4.0 Changes
January 12, 2012- โ adding
URI.iso8859()
andURI.unicode()
to switch base charsets - (Issue #10, mortenn) - โ adding
.iso8859()
and.unicode()
to convert an URI's escape encoding
- โ adding
-
v1.3.1 Changes
January 03, 2011- โก๏ธ updating Punycode.js to version 0.3.0
- โ adding edge-case tests ("jim")
- ๐ fixing edge-cases in .protocol(), .port(), .subdomain(), .domain(), .tld(), .filename()
- ๐ fixing parsing of hostname in
.hostname()
-
v1.3.0 Changes
December 30, 2011- โ adding
.subdomain()
convenience accessor - ๐ improving internal deferred build handling
- ๐ fixing thrown Error for
URI("http://example.org").query(true)
- (Issue #6) - โ adding examples for extending URI.js for fragment abuse, see src/URI.fragmentQuery.js and src/URI.fragmentURI.js - (Issue #2)
- โ adding
-
v1.2.0 Changes
December 29, 2011- โ adding
.equals()
for URL comparison - ๐ fixing encoding/decoding for
.pathname()
,.directory()
,.filename()
and.suffix()
according to RFC 3986 3.3 - ๐ fixing escape spaces in query strings with
+
according to application/x-www-form-urlencoded - ๐ fixing to allow
URI.buildQuery()
to build duplicate key=value combinations - ๐ fixing
URI(string, string)
constructor to conform with the specification - โ adding
.readable()
for humanly readable representation of encoded URIs - ๐ fixing bug where @ in pathname would be parsed as part of the authority
- โ adding
-
v1.1.0 Changes
December 28, 2011- โ adding
URI.withinString()
- โ adding
.normalizeProtocol()
to lowercase protocols - ๐ fixing
.normalizeHostname()
to lowercase hostnames - ๐ fixing String.substr() to be replaced by String.substring() - (Issue #1)
- ๐ fixing parsing "?foo" to
{foo: null}
Algorithm for collecting URL parameters - ๐ fixing building
{foo: null, bar: ""}
to "?foo&bar=" Algorithm for serializing URL parameters - ๐ fixing RegExp escaping
- โ adding