CHANGES.txt in solutious-stella-0.5.5 vs CHANGES.txt in solutious-stella-0.6.0
- old
+ new
@@ -1,11 +1,48 @@
STELLA, CHANGES
+#### TODO
+* TODO: prepend instance variables with "stella_"
+* TODO: implement session handling
+* BUG: http://jira.codehaus.org/browse/JRUBY-2992
+* TODO: variable interpolation that happens at test time so instance variables can be grabbed from the calling space.
+#
+# get "/product/${token}" do
+# ## TODO: Override environment settings.
+# #protocol :https
+# response 200 do |headers, body|
+# data = YAML.load(body)
+# puts "ID: #{data[:id]}"
+# end
+# end
+
+
+
+#### 0.6.0 (2009-03-15) ###############################
+
+http://github.com/solutious/stella/tree/0.6
+
+* COMPLETE REWRITE!
+ * The commands and API from 0.5.x are no longer supported. This ain't your grandmother's Stella.
+* NEW: Tests are now defined using a DSL. See tryouts/dsl_tryout.rb for an example.
+* NEW: Tests are run with Ruby directly: ruby testplan.rb (for now)
+
+
+#### 0.5.6 (2009-02-04) ###############################
+
+* API Change: watch is replaced by pcap and proxy.
+ * "stella watch -C" is now "stella pcap"
+ * "stella watch -P" is now "stella proxy"
+* Fixed body printing bug for stella -v watch -C
+* Added adapter tests
+* Improved RDocs
+
+
#### 0.5.5 (2009-01-14) ###############################
-http://github.com/solutious/stella/tree/0.5.5
+http://github.com/solutious/stella/tree/stella-0.5.5
* Now has specs (33 specifications, 303 requirements)
* New dependency: test-spec (development copy only)
* Added delano/drydock to vendor (was delano/frylock).
* Improved argument handling for load tool adapters (httperf not complete)
@@ -16,10 +53,10 @@
* Fixed --agent error
#### 0.5.4-alpha (2009-01-07) #########################
-http://github.com/solutious/stella/tree/0.5.4-alpha
+http://github.com/solutious/stella/tree/stella-0.5.4-alpha
* New command: watch. Monitor HTTP traffic with Ruby-Pcap (unix only) or proxy. Pcap also supports DNS sniffing.
* Improved error handling for stats output
* Now runs on Ruby 1.9.1, JRuby
* Added Windows support for most features