Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.0#1839

Merged
0xERR0R merged 1 commit intomainfrom
dependabot/go_modules/github.com/onsi/ginkgo/v2-2.25.0
Aug 21, 2025
Merged

build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.0#1839
0xERR0R merged 1 commit intomainfrom
dependabot/go_modules/github.com/onsi/ginkgo/v2-2.25.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Aug 21, 2025

Bumps github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.0.

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.25.0

2.25.0

AroundNode

This release introduces a new decorator to support more complex spec setup usecases.

AroundNode registers a function that runs before each individual node. This is considered a more advanced decorator.

Please read the docs for more information and some examples.

Allowed signatures:

  • AroundNode(func()) - func will be called before the node is run.
  • AroundNode(func(ctx context.Context) context.Context) - func can wrap the passed in context and return a new one which will be passed on to the node.
  • AroundNode(func(ctx context.Context, body func(ctx context.Context))) - ctx is the context for the node and body is a function that must be called to run the node. This gives you complete control over what runs before and after the node.

Multiple AroundNode decorators can be applied to a single node and they will run in the order they are applied.

Unlike setup nodes like BeforeEach and DeferCleanup, AroundNode is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call runtime.LockOSThread() in the AroundNode to ensure that the node runs on a single thread).

Since AroundNode allows you to modify the context you can also use AroundNode to implement shared setup that attaches values to the context.

If applied to a container, AroundNode will run before every node in the container. Including setup nodes like BeforeEach and DeferCleanup.

AroundNode can also be applied to RunSpecs to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.

v2.24.0

2.24.0

Features

Specs can now be decorated with (e.g.) SemVerConstraint("2.1.0") and ginkgo --sem-ver-filter="2.1.1" will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @​Icarus9913 for the PR.

Fixes

  • remove -o from run command [3f5d379]. fixes #1582

Maintenance

Numerous dependency bumps and documentation fixes

Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.25.0

AroundNode

This release introduces a new decorator to support more complex spec setup usecases.

AroundNode registers a function that runs before each individual node. This is considered a more advanced decorator.

Please read the docs for more information and some examples.

Allowed signatures:

  • AroundNode(func()) - func will be called before the node is run.
  • AroundNode(func(ctx context.Context) context.Context) - func can wrap the passed in context and return a new one which will be passed on to the node.
  • AroundNode(func(ctx context.Context, body func(ctx context.Context))) - ctx is the context for the node and body is a function that must be called to run the node. This gives you complete control over what runs before and after the node.

Multiple AroundNode decorators can be applied to a single node and they will run in the order they are applied.

Unlike setup nodes like BeforeEach and DeferCleanup, AroundNode is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call runtime.LockOSThread() in the AroundNode to ensure that the node runs on a single thread).

Since AroundNode allows you to modify the context you can also use AroundNode to implement shared setup that attaches values to the context.

If applied to a container, AroundNode will run before every node in the container. Including setup nodes like BeforeEach and DeferCleanup.

AroundNode can also be applied to RunSpecs to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.

2.24.0

Features

Specs can now be decorated with (e.g.) SemVerConstraint("2.1.0") and ginkgo --sem-ver-filter="2.1.1" will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @​Icarus9913 for the PR.

Fixes

  • remove -o from run command [3f5d379]. fixes #1582

Maintenance

Numerous dependency bumps and documentation fixes

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.23.4 to 2.25.0.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.23.4...v2.25.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 21, 2025
@0xERR0R 0xERR0R enabled auto-merge (squash) August 21, 2025 07:50
@0xERR0R 0xERR0R merged commit 859e729 into main Aug 21, 2025
16 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/onsi/ginkgo/v2-2.25.0 branch August 21, 2025 07:50
alexlebens pushed a commit to alexlebens/infrastructure that referenced this pull request Oct 11, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/0xerr0r/blocky](https://github.com/0xERR0R/blocky) | minor | `v0.26.2` -> `v0.27.0` |

---

### Release Notes

<details>
<summary>0xERR0R/blocky (ghcr.io/0xerr0r/blocky)</summary>

### [`v0.27.0`](https://github.com/0xERR0R/blocky/releases/tag/v0.27.0)

[Compare Source](0xERR0R/blocky@v0.26.2...v0.27.0)

##### Changelog

- [`e99f1bd`](0xERR0R/blocky@e99f1bd): build(deps): bump actions/checkout from 4 to 5 ([#&#8203;1836](0xERR0R/blocky#1836)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`8ef51ee`](0xERR0R/blocky@8ef51ee): build(deps): bump actions/download-artifact from 4 to 5 ([#&#8203;1830](0xERR0R/blocky#1830)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`92ee006`](0xERR0R/blocky@92ee006): build(deps): bump actions/setup-go from 5 to 6 ([#&#8203;1857](0xERR0R/blocky#1857)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`26aaf7b`](0xERR0R/blocky@26aaf7b): build(deps): bump actions/setup-python from 5 to 6 ([#&#8203;1859](0xERR0R/blocky#1859)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`b249c5c`](0xERR0R/blocky@b249c5c): build(deps): bump actions/stale from 9 to 10 ([#&#8203;1858](0xERR0R/blocky#1858)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6e69dbf`](0xERR0R/blocky@6e69dbf): build(deps): bump github.com/alicebob/miniredis/v2 from 2.34.0 to 2.35.0 ([#&#8203;1789](0xERR0R/blocky#1789)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`2575a36`](0xERR0R/blocky@2575a36): build(deps): bump github.com/breml/rootcerts from 0.2.21 to 0.2.22 ([#&#8203;1795](0xERR0R/blocky#1795)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4958089`](0xERR0R/blocky@4958089): build(deps): bump github.com/breml/rootcerts from 0.2.22 to 0.3.0 ([#&#8203;1800](0xERR0R/blocky#1800)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ac5d872`](0xERR0R/blocky@ac5d872): build(deps): bump github.com/breml/rootcerts from 0.3.0 to 0.3.1 ([#&#8203;1815](0xERR0R/blocky#1815)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`cd79244`](0xERR0R/blocky@cd79244): build(deps): bump github.com/docker/docker ([#&#8203;1785](0xERR0R/blocky#1785)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ad473dd`](0xERR0R/blocky@ad473dd): build(deps): bump github.com/docker/docker ([#&#8203;1801](0xERR0R/blocky#1801)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`375614e`](0xERR0R/blocky@375614e): build(deps): bump github.com/docker/docker ([#&#8203;1805](0xERR0R/blocky#1805)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`c5ed579`](0xERR0R/blocky@c5ed579): build(deps): bump github.com/docker/docker ([#&#8203;1807](0xERR0R/blocky#1807)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`b088ba0`](0xERR0R/blocky@b088ba0): build(deps): bump github.com/docker/docker ([#&#8203;1821](0xERR0R/blocky#1821)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`604e0ca`](0xERR0R/blocky@604e0ca): build(deps): bump github.com/docker/docker ([#&#8203;1853](0xERR0R/blocky#1853)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`c0284bb`](0xERR0R/blocky@c0284bb): build(deps): bump github.com/docker/docker ([#&#8203;1877](0xERR0R/blocky#1877)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6da2742`](0xERR0R/blocky@6da2742): build(deps): bump github.com/docker/docker ([#&#8203;1883](0xERR0R/blocky#1883)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`984a07e`](0xERR0R/blocky@984a07e): build(deps): bump github.com/docker/go-connections from 0.5.0 to 0.6.0 ([#&#8203;1832](0xERR0R/blocky#1832)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`7c8fe37`](0xERR0R/blocky@7c8fe37): build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 ([#&#8203;1799](0xERR0R/blocky#1799)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`59d24ef`](0xERR0R/blocky@59d24ef): build(deps): bump github.com/go-chi/chi/v5 from 5.2.2 to 5.2.3 ([#&#8203;1848](0xERR0R/blocky#1848)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`62610f6`](0xERR0R/blocky@62610f6): build(deps): bump github.com/go-chi/cors from 1.2.1 to 1.2.2 ([#&#8203;1804](0xERR0R/blocky#1804)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`9a1b6a6`](0xERR0R/blocky@9a1b6a6): build(deps): bump github.com/miekg/dns from 1.1.67 to 1.1.68 ([#&#8203;1824](0xERR0R/blocky#1824)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`45141a7`](0xERR0R/blocky@45141a7): build(deps): bump github.com/oapi-codegen/runtime from 1.1.1 to 1.1.2 ([#&#8203;1810](0xERR0R/blocky#1810)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`859e729`](0xERR0R/blocky@859e729): build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.4 to 2.25.0 ([#&#8203;1839](0xERR0R/blocky#1839)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`c003d21`](0xERR0R/blocky@c003d21): build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.0 to 2.25.1 ([#&#8203;1840](0xERR0R/blocky#1840)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`3dda82e`](0xERR0R/blocky@3dda82e): build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.1 to 2.25.2 ([#&#8203;1850](0xERR0R/blocky#1850)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`1bbfe6a`](0xERR0R/blocky@1bbfe6a): build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.2 to 2.25.3 ([#&#8203;1856](0xERR0R/blocky#1856)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`1df69da`](0xERR0R/blocky@1df69da): build(deps): bump github.com/onsi/ginkgo/v2 from 2.25.3 to 2.26.0 ([#&#8203;1878](0xERR0R/blocky#1878)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`3015bc3`](0xERR0R/blocky@3015bc3): build(deps): bump github.com/onsi/gomega from 1.37.0 to 1.38.0 ([#&#8203;1816](0xERR0R/blocky#1816)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`7a4a4e3`](0xERR0R/blocky@7a4a4e3): build(deps): bump github.com/onsi/gomega from 1.38.0 to 1.38.1 ([#&#8203;1842](0xERR0R/blocky#1842)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ed6a3c0`](0xERR0R/blocky@ed6a3c0): build(deps): bump github.com/onsi/gomega from 1.38.1 to 1.38.2 ([#&#8203;1844](0xERR0R/blocky#1844)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`3bbca25`](0xERR0R/blocky@3bbca25): build(deps): bump github.com/prometheus/client\_golang ([#&#8203;1822](0xERR0R/blocky#1822)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`8683a96`](0xERR0R/blocky@8683a96): build(deps): bump github.com/prometheus/client\_golang ([#&#8203;1860](0xERR0R/blocky#1860)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`523db8b`](0xERR0R/blocky@523db8b): build(deps): bump github.com/ramr/go-reaper from 0.2.3 to 0.3.0 ([#&#8203;1802](0xERR0R/blocky#1802)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`0ca5ca1`](0xERR0R/blocky@0ca5ca1): build(deps): bump github.com/ramr/go-reaper from 0.3.0 to 0.3.1 ([#&#8203;1818](0xERR0R/blocky#1818)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`c941708`](0xERR0R/blocky@c941708): build(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 ([#&#8203;1851](0xERR0R/blocky#1851)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`572efd5`](0xERR0R/blocky@572efd5): build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.0 ([#&#8203;1841](0xERR0R/blocky#1841)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6849ac7`](0xERR0R/blocky@6849ac7): build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 ([#&#8203;1847](0xERR0R/blocky#1847)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`6be7ee6`](0xERR0R/blocky@6be7ee6): build(deps): bump github.com/testcontainers/testcontainers-go ([#&#8203;1811](0xERR0R/blocky#1811)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`0bd3895`](0xERR0R/blocky@0bd3895): build(deps): bump github.com/testcontainers/testcontainers-go/modules/mariadb ([#&#8203;1812](0xERR0R/blocky#1812)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`a5a686c`](0xERR0R/blocky@a5a686c): build(deps): bump github.com/testcontainers/testcontainers-go/modules/mariadb ([#&#8203;1872](0xERR0R/blocky#1872)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`b705d43`](0xERR0R/blocky@b705d43): build(deps): bump github.com/testcontainers/testcontainers-go/modules/postgres ([#&#8203;1813](0xERR0R/blocky#1813)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`283641b`](0xERR0R/blocky@283641b): build(deps): bump github.com/testcontainers/testcontainers-go/modules/postgres ([#&#8203;1873](0xERR0R/blocky#1873)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`9dc25c7`](0xERR0R/blocky@9dc25c7): build(deps): bump github.com/testcontainers/testcontainers-go/modules/redis ([#&#8203;1809](0xERR0R/blocky#1809)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`0e11a7c`](0xERR0R/blocky@0e11a7c): build(deps): bump github.com/testcontainers/testcontainers-go/modules/redis ([#&#8203;1871](0xERR0R/blocky#1871)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`07d25bd`](0xERR0R/blocky@07d25bd): build(deps): bump github/codeql-action from 3 to 4 ([#&#8203;1881](0xERR0R/blocky#1881)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`52f6f74`](0xERR0R/blocky@52f6f74): build(deps): bump golang.org/x/net from 0.40.0 to 0.41.0 ([#&#8203;1790](0xERR0R/blocky#1790)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`85b3ebd`](0xERR0R/blocky@85b3ebd): build(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 ([#&#8203;1808](0xERR0R/blocky#1808)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4fffb35`](0xERR0R/blocky@4fffb35): build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 ([#&#8203;1833](0xERR0R/blocky#1833)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`8b4c3ff`](0xERR0R/blocky@8b4c3ff): build(deps): bump golang.org/x/net from 0.43.0 to 0.44.0 ([#&#8203;1862](0xERR0R/blocky#1862)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`7cc8a26`](0xERR0R/blocky@7cc8a26): build(deps): bump golang.org/x/net from 0.44.0 to 0.45.0 ([#&#8203;1880](0xERR0R/blocky#1880)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`75f7750`](0xERR0R/blocky@75f7750): build(deps): bump golang.org/x/net from 0.45.0 to 0.46.0 ([#&#8203;1882](0xERR0R/blocky#1882)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`21401ec`](0xERR0R/blocky@21401ec): build(deps): bump gorm.io/driver/mysql from 1.5.7 to 1.6.0 ([#&#8203;1787](0xERR0R/blocky#1787)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`fdb706a`](0xERR0R/blocky@fdb706a): build(deps): bump gorm.io/driver/postgres from 1.5.11 to 1.6.0 ([#&#8203;1783](0xERR0R/blocky#1783)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`cb4d5e8`](0xERR0R/blocky@cb4d5e8): build(deps): bump gorm.io/driver/sqlite from 1.5.7 to 1.6.0 ([#&#8203;1788](0xERR0R/blocky#1788)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`68f76a6`](0xERR0R/blocky@68f76a6): build(deps): bump gorm.io/gorm from 1.25.12 to 1.26.1 ([#&#8203;1775](0xERR0R/blocky#1775)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`4bed325`](0xERR0R/blocky@4bed325): build(deps): bump gorm.io/gorm from 1.26.1 to 1.30.0 ([#&#8203;1782](0xERR0R/blocky#1782)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`ed025f3`](0xERR0R/blocky@ed025f3): build(deps): bump gorm.io/gorm from 1.30.0 to 1.30.1 ([#&#8203;1817](0xERR0R/blocky#1817)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`bb27697`](0xERR0R/blocky@bb27697): build(deps): bump gorm.io/gorm from 1.30.1 to 1.30.2 ([#&#8203;1849](0xERR0R/blocky#1849)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`7376e4e`](0xERR0R/blocky@7376e4e): build(deps): bump gorm.io/gorm from 1.30.2 to 1.30.3 ([#&#8203;1854](0xERR0R/blocky#1854)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`023e1dd`](0xERR0R/blocky@023e1dd): build(deps): bump gorm.io/gorm from 1.30.3 to 1.30.5 ([#&#8203;1861](0xERR0R/blocky#1861)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`771f9ea`](0xERR0R/blocky@771f9ea): build(deps): bump gorm.io/gorm from 1.30.5 to 1.31.0 ([#&#8203;1866](0xERR0R/blocky#1866)) ([@&#8203;dependabot](https://github.com/dependabot)\[bot])
- [`353b4e5`](0xERR0R/blocky@353b4e5): build: add additional linters ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`95bc394`](0xERR0R/blocky@95bc394): build: update golang version ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`9ec43b5`](0xERR0R/blocky@9ec43b5): build: upgrade golangci-lint ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`fa1a95e`](0xERR0R/blocky@fa1a95e): build: use optional external Goproxy ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`098f17b`](0xERR0R/blocky@098f17b): feat(config): support YAML arrays for ports ([@&#8203;ThinkChaos](https://github.com/ThinkChaos))
- [`a2cfb0b`](0xERR0R/blocky@a2cfb0b): feat: add robots.txt ([#&#8203;1864](0xERR0R/blocky#1864)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`9f4db47`](0xERR0R/blocky@9f4db47): feat: make DoH query path configurable ([#&#8203;1843](0xERR0R/blocky#1843)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`73f6f74`](0xERR0R/blocky@73f6f74): feat: skip Adblock identifier header and comments ([#&#8203;1876](0xERR0R/blocky#1876)) ([@&#8203;metalinspired](https://github.com/metalinspired))
- [`d34eb4c`](0xERR0R/blocky@d34eb4c): fix(parsers): improve hosts entry normalization for ABP-style and Unicode domains ([@&#8203;metalinspired](https://github.com/metalinspired))
- [`639257b`](0xERR0R/blocky@639257b): fix: disable go-reaper pid check ([#&#8203;1779](0xERR0R/blocky#1779)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`262cd2e`](0xERR0R/blocky@262cd2e): fix: prevent DoS in DOH endpoits ([#&#8203;1826](0xERR0R/blocky#1826)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))
- [`371e39b`](0xERR0R/blocky@371e39b): refactor: move cache to external dependency ([#&#8203;1814](0xERR0R/blocky#1814)) ([@&#8203;0xERR0R](https://github.com/0xERR0R))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzUuNCIsInVwZGF0ZWRJblZlciI6IjQxLjEzNS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbWFnZSJdfQ==-->

Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/1732
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant