Skip to content

Tags: boostorg/url

Tags

boost-1.87.0

Toggle boost-1.87.0's commit message
refactor(url_base): copy operation uses reference to underlying imple…

…mentation

The copy operation from a url_view_base should use the pointed implementation rather than the underlying implementation so that url_views that refer to other urls are accounted for.

fix #872

boost-1.87.0.beta1

Toggle boost-1.87.0.beta1's commit message
refactor(url_base): copy operation uses reference to underlying imple…

…mentation

The copy operation from a url_view_base should use the pointed implementation rather than the underlying implementation so that url_views that refer to other urls are accounted for.

fix #872

boost-1.86.0

Toggle boost-1.86.0's commit message
workaround for craypp crash

fix #839

boost-1.86.0.beta1

Toggle boost-1.86.0.beta1's commit message
workaround for craypp crash

fix #839

boost-1.85.0

Toggle boost-1.85.0's commit message
docs: mrdocs.yml file patterns

boost-1.85.0.beta1

Toggle boost-1.85.0.beta1's commit message
docs: mrdocs.yml file patterns

boost-1.84.0

Toggle boost-1.84.0's commit message
docs: sync README and documentation

Update the content to match the documentation and remove old information that is currently incorrect.

fix #780

boost-1.84.0.beta1

Toggle boost-1.84.0.beta1's commit message
docs: sync README and documentation

Update the content to match the documentation and remove old information that is currently incorrect.

fix #780

boost-1.83.0

Toggle boost-1.83.0's commit message
docs: refactor variable name in url::set_params

Renamed method parameter `s` to `ps` in `url::set_params` to ensure it matches the documentation copied from `url_base::set_params`.

boost-1.83.0.beta1

Toggle boost-1.83.0.beta1's commit message
fix: format_args zero serialization

Fixes #758

The parsing and measuring code didn't have explicit handling for integer
zero, and the while(v > 0) loop wouldn't execute.

Also add tests to cover both of these cases.