<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gorankusu/gorankusu.go, branch dev</title>
<subtitle>The Go library for load testing HTTP and WebSocket endpoints.</subtitle>
<id>http://git.kilabit.info/gorankusu/atom?h=dev</id>
<link rel='self' href='http://git.kilabit.info/gorankusu/atom?h=dev'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/'/>
<updated>2025-12-27T07:12:06Z</updated>
<entry>
<title>Release gorankusu v0.8.1 (2025-12-27)</title>
<updated>2025-12-27T07:12:06Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-12-27T07:11:52Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=34cb54fc8fc68dededfe57e42ba8ae50d0d91fda'/>
<id>urn:sha1:34cb54fc8fc68dededfe57e42ba8ae50d0d91fda</id>
<content type='text'>
[CHORE]
Update README for broken link in example.
While at it, break the links that point to localhost and email.

[CHORE]
Run eslint from node_modules/.bin directory directly.
Using npx does not guarantee works on system installed nodejs.

[CHORE]
go.mod: set minimum Go version to 1.24.0 and update all dependencies.

</content>
</entry>
<entry>
<title>Release gorankusu v0.8.0 (2025-02-03)</title>
<updated>2025-02-03T13:50:43Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-03T13:50:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=9de29dcba4b24a04742e456104c8d7a1ef584814'/>
<id>urn:sha1:9de29dcba4b24a04742e456104c8d7a1ef584814</id>
<content type='text'>
[BREAKING CHANGES]
The git submodule in "_www/wui" has been renamed to "_www/pakakeh_ts".
If you have cloned this project before, you need to rename the sub directory
manually and re-init it.
----
$ mv _www/wui _www/pakakeh_ts
$ git submodule update --init
----

[CHORE]
The linter has been replaced many times, from revive to "go vet", and from
using binary form of fieldalignment and shadow; to use internal command
gocheck that do the same things, which simplify our setup.

[CHORE]
Split the CSS into separate file.
This is allow modifying the CSS without touching the index.html, and may be
used by other HTML files later.

[CHORE]
Fix some broken links in the documentation pages, including link to
Changelog, README, and SPEC.
</content>
</entry>
<entry>
<title>all: replace external linters with internal</title>
<updated>2025-02-03T13:11:07Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2025-02-03T11:28:15Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=a6d3b0944f80f7b84ac91f1904d23a312fbee098'/>
<id>urn:sha1:a6d3b0944f80f7b84ac91f1904d23a312fbee098</id>
<content type='text'>
The fieldalignment and shadow is linter from golang.org/x/tools.
This linters actually have an API that can be combined into a program,
which provided by package "pakakeh.go/lib/goanalysis".

</content>
</entry>
<entry>
<title>Release gorankusu v0.7.0 (2024-09-07)</title>
<updated>2024-09-07T11:38:11Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-09-07T11:38:11Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=15b2c9ae3921c73ba5d605b6318a600675a02e9e'/>
<id>urn:sha1:15b2c9ae3921c73ba5d605b6318a600675a02e9e</id>
<content type='text'>
=== Breaking changes

* all: refactoring form input for multipart form-data

  This changes replace handling type for storing multipart form-data
  from "map[string][]byte" to [*multipart.Form] based on changes on
  module "pakakeh.go".

=== Enhancements

* all: make HTTP Target Params works along with WithRawBody

  Previously, if WithRawBody is true, the Params will not be rendered
  and parsed during Run. This changes makes the Params works along with
  WithRawBody. If Params are set it will be rendered along with text area
  for raw body.

* _www: support HTTP target with content type "text/html"

  In the Target form, user can select to send body as "text/html".

* all: add git.sr.ht APIs into example

  The APIs is created using https://man.sr.ht/git.sr.ht/api.md as
  reference. We also needs the API to create webhook since no other way
  to create it in current sourcehut web.

=== Bug fixes

* _www: fix save on null Headers and Vars

  If the user does not define the Headers, clicking Run on any HTTP
  Target will result in error when "save" function executed before it.

* _www: fix form input type file where content is binary

  If the file in FormInput is binary, the conversion to
  "FormInput.value" will fail with an error like "invalid characters in
  String".

* all: use [route.Path] to generate parameters

  Using [route.String] does not works if the parameter can be empty,
  while [route.Path] replace all keys and return the path as is.

=== Chores

* all: add task to initialize the repository and tools

  The task "init" include initializing git submodule, installing third
  party tools for linters, and installing node packages.
</content>
</entry>
<entry>
<title>Release gorankusu v0.6.1 (2024-04-06)</title>
<updated>2024-04-05T19:52:36Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-04-05T19:51:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=084bc28cf0a781d171bb2cb17f939e2384c120b0'/>
<id>urn:sha1:084bc28cf0a781d171bb2cb17f939e2384c120b0</id>
<content type='text'>
This release replace "share" module with "pakakeh.go".
The "share" module repository has been moved to SourceHut with new name
"pakakeh.go". For more information about the changes see pakakeh.go
project at https://sr.ht/~shulhan/pakakeh.go.
</content>
</entry>
<entry>
<title>all: replace module "share" with "pakakeh.go"</title>
<updated>2024-03-05T11:15:35Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-03-05T09:36:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=cb9e9ecf8466386621954acdafc460ecd0c3f82f'/>
<id>urn:sha1:cb9e9ecf8466386621954acdafc460ecd0c3f82f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Release gorankusu v0.6.0 (2024-03-05)</title>
<updated>2024-03-05T09:14:11Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-03-05T09:10:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=20e45fe125803bc7fd0fd079f30bf4c099c8320a'/>
<id>urn:sha1:20e45fe125803bc7fd0fd079f30bf4c099c8320a</id>
<content type='text'>
=== Breaking changes

* target: changes Opts to non-pointer

  Previously, we use pointer to indicated that the Target can be
  attacked or not. Since HTTPTarget now have AllowAttack, this options
  can be changes to non-pointer.

* all: change the signature of default request/response dumper

  Instead of function that use the signature of HTTPRequestDumper/
  HTTPResponseDumper; change it to function that return HTTPRequestDumper/
  HTTPResponseDumper. In this way, the documentation can show the clear
  relation between function and its type.

=== New features

* all: add global HTTP headers for Target

  The Headers field on Target define the global headers that will be
  send along with all HTTPTarget or WebSocketTarget. The same header can
  also be defined on HTTPTarget that override the value of Target.

* all: add default HTTPRunHandler

  Previously, the default HTTPRunHandler is hidden, called dynamically
  based on Run is nil or not. This changes make it exported as function
  that return HTTPRunHandler to show how define and create a custom
  HTTPRunHandler.

* all: add default HTTPParamsConverter for [HTTPTarget.ParamsConverter]

  The DefaultParamsConverter define default function to convert
  [HTTPTarget.Params] to its equivalent parameters in HTTP, either as
  query in URL or as bytes in body.

  This changes introduce breaking changes in HTTPTarget where field
  ConvertParams renamed to ParamsConverter.

* all: set default HTTPTarget Attack if its not set

  Previously, the function for Attack need to be coded manually.

  This changes introduce new function DefaultHTTPAttack that generate
  HTTPAttackHandler based on the HTTPTarget method, request type, and
  Params; if AllowAttack is true and Attack is nil.

=== Bug fixes

* all: fix null navigation links

  If the navLinks fields is empty, the HTTP API will return "null" and
  cause the rendering error. This changes fix this issue by allocating
  the slice navLinks with one capabilities to make JSON always return
  "[]" if its empty.
</content>
</entry>
<entry>
<title>all: move reading GORANKUSU_DEV environment to [Environment.IsDevelopment]</title>
<updated>2024-02-20T18:51:34Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-20T18:51:22Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=f08f1c15ff863d2829af8be8ddf392e9241d0f89'/>
<id>urn:sha1:f08f1c15ff863d2829af8be8ddf392e9241d0f89</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: move constants declaration closer to its usage</title>
<updated>2024-02-20T18:45:56Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-20T18:45:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=e8d3716995e9229a61a32894689c379e22475420'/>
<id>urn:sha1:e8d3716995e9229a61a32894689c379e22475420</id>
<content type='text'>
</content>
</entry>
<entry>
<title>all: fix null navigation links</title>
<updated>2024-02-19T06:56:42Z</updated>
<author>
<name>Shulhan</name>
<email>ms@kilabit.info</email>
</author>
<published>2024-02-19T06:56:42Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/gorankusu/commit/?id=99999635f67931e1a6deb608f13b2dc2ecd9df73'/>
<id>urn:sha1:99999635f67931e1a6deb608f13b2dc2ecd9df73</id>
<content type='text'>
If the navLinks fields is empty, the HTTP API will return "null" and make
the rendering error.
This changes fix this issue by allocating the slice navLinks with one
capabilities to make JSON always return "[]" if its empty.
</content>
</entry>
</feed>
