Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
* Bug: HipChat API changed (#59).
Browse files Browse the repository at this point in the history
* Bug: Faulty 0.9.1 release that included EMMA instrumented code (#56,
#57, #58).
  • Loading branch information
parautenbach committed Sep 13, 2015
1 parent e68d54a commit 1fdd36c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/packtag-3.8.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/patches-impl.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/processesTerminator.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/quartz-1.6.0.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/quartz-1.6.1.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/remote-api-impl.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/resources_en.jar"/>
<classpathentry kind="var" path="TEAMCITY_HOME/webapps/ROOT/WEB-INF/lib/runtime-util.jar"/>
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Version 0.9.2
* Bug: HipChat API changed (#59).
* Bug: Faulty 0.9.1 release that included EMMA instrumented code (#56, #57, #58).

Version 0.9.1
*WARNING: This release was pulled because of a faulty archive that included EMMA instrumented code. If this version is your only option,
take the EMMA JAR file from the matching release's tag and put it on the classpath.*

* Bug: Update by Atlassian of the HipChat API broke the retrieval of emoticons (#53).

Version 0.9.0
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ directory (as explained by [Jetbrains](http://www.jetbrains.com/teamcity/plugins
[Visit](http://www.whatsthatlight.com/index.php/projects/teamcity-hipchat-plugin/) my website for more detailled instructions and information.

Compatibility:
* Release v0.9.2 was tested against TeamCity 9.1.1.
* Release v0.9.1 was tested against TeamCity 9.0.2, but was pulled because of a faulty archive that included EMMA instrumented code.
* Release v0.9.0 was tested against TeamCity 9.0.2.
* Releases v0.8.0 and above was tested against TeamCity 8.1.5.
* Releases v0.4.4 to v0.7.2 was tested against TeamCity 8.1.1.
Expand Down Expand Up @@ -53,7 +55,14 @@ For debugging, add the snippets in [`teamcity-server-log4j.xml`](https://github.

# Change log

## Version 0.9.2
* Bug: HipChat API changed (#59).
* Bug: Faulty 0.9.1 release that included EMMA instrumented code (#56, #57, #58).

## Version 0.9.1
*WARNING: This release was pulled because of a faulty archive that included EMMA instrumented code. If this version is your only option,
take the EMMA JAR file from the matching release's tag and put it on the classpath.*

* Bug: Update by Atlassian of the HipChat API broke the retrieval of emoticons (#53).

## Version 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<property name="reports" location="reports"/>
<property name="main-class" value="HipChatNotifier"/>
<!-- Default to 0.0.0.0 if no version specified -->
<condition property="version" value="${env.BUILD_NUMBER}" else="0.9.0">
<condition property="version" value="${env.BUILD_NUMBER}" else="0.9.2">
<and>
<isset property="env.BUILD_NUMBER"/>
<not>
Expand Down
5 changes: 5 additions & 0 deletions src/com/whatsthatlight/teamcity/hipchat/HipChatRoom.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package com.whatsthatlight.teamcity.hipchat;

import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class HipChatRoom {

@JsonProperty("id")
Expand All @@ -29,6 +31,9 @@ public class HipChatRoom {
@JsonProperty("name")
public String name;

@JsonProperty("version")
public String version;

public HipChatRoom() {
// Intentionally left empty
}
Expand Down
2 changes: 1 addition & 1 deletion teamcity-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>HipChat Notifier</name>
<display-name>HipChat Notifier</display-name>
<!-- <description>Some description goes here</description> -->
<version>0.9.0</version>
<version>0.9.2</version>
<vendor>
<name>What's That Light?</name>
<url>http://www.whatsthatlight.com/</url>
Expand Down

0 comments on commit 1fdd36c

Please sign in to comment.