Skip to content

Commit ca9ca3e

Browse files
chore: configure renovate to leave go version as declared (#2235)
**Description** This PR prevents the renovate bot from bumping the go version we aim to support, which is 1.23 for now.
1 parent 5e2ced7 commit ca9ca3e

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

.github/renovate.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": ["local>hypermodeinc/renovate-config"],
4-
"rangeStrategy": "widen"
4+
"rangeStrategy": "widen",
5+
"packageRules": [
6+
{
7+
"matchManagers": ["gomod"],
8+
"matchDepNames": ["go"],
9+
"enabled": false
10+
}
11+
]
512
}

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
![Badger mascot](images/diggy-shadow.png)
1111

1212
BadgerDB is an embeddable, persistent and fast key-value (KV) database written in pure Go. It is the
13-
underlying database for [Dgraph](https://github.com/hypermodeinc/dgraph), a fast, distributed graph database. It's meant
14-
to be a performant alternative to non-Go-based key-value stores like RocksDB.
13+
underlying database for [Dgraph](https://github.com/hypermodeinc/dgraph), a fast, distributed graph
14+
database. It's meant to be a performant alternative to non-Go-based key-value stores like RocksDB.
1515

1616
## Project Status
1717

@@ -26,6 +26,9 @@ The list of projects using Badger can be found [here](#projects-using-badger).
2626

2727
Please consult the [Changelog] for more detailed information on releases.
2828

29+
Note: Badger is built with go 1.23 and we refrain from bumping this version to minimize downstream
30+
effects of those using Badger in applications built with older versions of Go.
31+
2932
[Changelog]: https://github.com/hypermodeinc/badger/blob/main/CHANGELOG.md
3033

3134
## Table of Contents
@@ -51,7 +54,7 @@ Please consult the [Changelog] for more detailed information on releases.
5154

5255
### Installing
5356

54-
To start using Badger, install Go 1.21 or above. Badger v3 and above needs go modules. From your
57+
To start using Badger, install Go 1.23 or above. Badger v3 and above needs go modules. From your
5558
project, run the following command
5659

5760
```sh
@@ -244,8 +247,8 @@ Below is a list of known projects that use Badger:
244247
- [MightyMap](https://github.com/thisisdevelopment/mightymap) - Mightymap: Conveys both robustness
245248
and high capability, fitting for a powerful concurrent map.
246249
- [FlowG](https://github.com/link-society/flowg) - A low-code log processing facility
247-
- [Bluefin](https://github.com/blinklabs-io/bluefin) - Bluefin is a TUNA Proof of Work miner for
248-
the Fortuna smart contract on the Cardano blockchain
250+
- [Bluefin](https://github.com/blinklabs-io/bluefin) - Bluefin is a TUNA Proof of Work miner for the
251+
Fortuna smart contract on the Cardano blockchain
249252
- [cDNSd](https://github.com/blinklabs-io/cdnsd) - A Cardano blockchain backed DNS server daemon
250253
- [Dingo](https://github.com/blinklabs-io/dingo) - A Cardano blockchain data node
251254

@@ -258,6 +261,6 @@ If you're interested in contributing to Badger see [CONTRIBUTING](./CONTRIBUTING
258261
## Contact
259262

260263
- Please use [Github issues](https://github.com/hypermodeinc/badger/issues) for filing bugs.
261-
- Please use [discuss.hypermode.com](https://discuss.hypermode.com) for questions, discussions, and feature
262-
requests.
264+
- Please use [discuss.hypermode.com](https://discuss.hypermode.com) for questions, discussions, and
265+
feature requests.
263266
- Follow us on Twitter [@hypermodeinc](https://twitter.com/hypermodeinc).

0 commit comments

Comments
 (0)