selenium-webdriver 2.32.0 → 2.32.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,12 @@
1
+ 2.33.0 (???)
2
+ ============
3
+
4
+ 2.32.1 (2013-04-11)
5
+ ===================
6
+
7
+ Safari:
8
+ * Fix typo when encoding the Safari server redirect URL (#5472)
9
+
1
10
  2.32.0 (2013-04-09)
2
11
  ===================
3
12
 
@@ -132,7 +132,7 @@ Server: safaridriver-ruby
132
132
 
133
133
  def encode_form_component(str)
134
134
  if URI.respond_to?(:encode_www_form_component) # >= 1.9
135
- URI.encode_form_component(str)
135
+ URI.encode_www_form_component(str)
136
136
  else
137
137
  # best effort for 1.8
138
138
  str.gsub(":", '%3A').gsub('/', '%2F')
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.32.0
5
+ version: 2.32.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jari Bakken
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2013-04-09 00:00:00 +02:00
13
+ date: 2013-04-11 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency