I released some changes to the net.oauth Java library:

* OAuthProblemException.toString returns more diagnostic information.
* Characters in OAuth parameters are correctly encoded using UTF-8 or
ISO-8859-1 (not the default encoding).
* Removed the deprecated enum OAuthClient.ParameterStyle.  The
replacement is net.oauth.ParameterStyle.
* Removed the deprecated method OAuthMessage.toHttpRequest.  The
replacement is HttpMessage.newRequest.
* Removed the deprecated method OAuthMessage.validateMessage.  The
replacement is OAuthValidator.validateMessage.
* Moved several classes from oauth.jar to oauth-consumer.jar and oauth-
provider.jar.

This release is number 20100527.  The new .jar files are:

http://oauth.googlecode.com/svn/code/maven/net/oauth/core/oauth/20100527/oauth-20100527.jar
http://oauth.googlecode.com/svn/code/maven/net/oauth/core/oauth-consumer/20100527/oauth-consumer-20100527.jar
http://oauth.googlecode.com/svn/code/maven/net/oauth/core/oauth-provider/20100527/oauth-provider-20100527.jar

Maven users can get the new software by putting this into pom.xml:

  <dependencies>
    <dependency>
      <groupId>net.oauth.core</groupId>
      <artifactId>oauth</artifactId>
      <version>20100527</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.oauth.core</groupId>
      <artifactId>oauth-consumer</artifactId>
      <version>20100527</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.oauth.core</groupId>
      <artifactId>oauth-provider</artifactId>
      <version>20100527</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>oauth</id>
      <name>OAuth Repository</name>
      <url>http://oauth.googlecode.com/svn/code/maven</url>
    </repository>
  </repositories>

-- 
You received this message because you are subscribed to the Google Groups 
"OAuth" group.
To post to this group, send email to oa...@googlegroups.com.
To unsubscribe from this group, send email to 
oauth+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/oauth?hl=en.

Reply via email to