Compare commits

..

No commits in common. "v0.1.1-rc.2" and "v0.1.1-rc.1" have entirely different histories.

5 changed files with 441 additions and 596 deletions

View File

@ -1,38 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>renovate/renovate"
],
"packageRules": [
{
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": false
},
{
"groupName": "all major dependencies",
"groupSlug": "all-major",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"major"
],
"automerge": false
}
],
"ignoreDeps": [],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
]
}

View File

@ -6,6 +6,6 @@ when:
steps: steps:
test: test:
group: test group: test
image: golang:1.22-alpine image: golang:1.21-alpine
commands: commands:
- go test -v ./... - go test -v ./...

View File

@ -1,17 +1,3 @@
## [0.1.1-rc.2](https://git.ext.icikowski.pl/go/collections/compare/v0.1.1-rc.1...v0.1.1-rc.2) (2024-03-02)
### Continuous Integrations
* **renovate:** add Renovate bot configuration ([d831943](https://git.ext.icikowski.pl/go/collections/commit/d831943b121bb91ec53c2bc8a269eade81b76047))
### Build system and dependencies
* **deps:** update all non-major dependencies ([4535c6a](https://git.ext.icikowski.pl/go/collections/commit/4535c6a712833eb0d931f67040233ab690561fc3))
* **deps:** update dependency @semantic-release/npm to v11.0.3 ([21a7e54](https://git.ext.icikowski.pl/go/collections/commit/21a7e541676f7afe799a6d86d1bb0709e070a6ab))
* **deps:** update dependency semantic-release to v23 ([cc414e0](https://git.ext.icikowski.pl/go/collections/commit/cc414e0bd87979ca39a0fb799c76802a887cd82f))
## [0.1.1-rc.1](https://git.ext.icikowski.pl/go/collections/compare/v0.1.0...v0.1.1-rc.1) (2023-11-04) ## [0.1.1-rc.1](https://git.ext.icikowski.pl/go/collections/compare/v0.1.0...v0.1.1-rc.1) (2023-11-04)

979
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "collections", "name": "collections",
"version": "0.1.1-rc.2", "version": "0.1.1-rc.1",
"scripts": { "scripts": {
"release": "./node_modules/.bin/semantic-release" "release": "./node_modules/.bin/semantic-release"
}, },
@ -13,6 +13,6 @@
"@semantic-release/npm": "^11.0.1", "@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.0.1", "@semantic-release/release-notes-generator": "^12.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2", "conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "^23.0.0" "semantic-release": "^22.0.7"
} }
} }