storage icon indicating copy to clipboard operation
storage copied to clipboard

🤗 [Question]: Release schedule for SQLIte3?

Open NicholasGWK opened this issue 3 months ago • 1 comments

Question Description

Hello! I was just wondering if the release process is automated for particular packages, or if there's somewhere I can watch? I noticed SQLite3 hasn't had a release in awhile, and so this commit isn't included: https://github.com/gofiber/storage/commit/3c0019ab86b3e2369da59bcbd4695b71c1e02d80

It fixes a build-time bug I ran into, so I updated to v2@main, but just wanted to know how to watch for the official release!

Thanks so much,

NIck

Code Snippet (optional)

package main

import "github.com/gofiber/storage/%package%"

func main() {
  // Steps to reproduce
}

Checklist:

  • [X] I agree to follow Fiber's Code of Conduct.
  • [X] I have checked for existing issues that describe my questions prior to opening this one.
  • [X] I understand that improperly formatted questions may be closed without explanation.

NicholasGWK avatar Mar 12 '24 17:03 NicholasGWK

@NicholasGWK Dependencies updates are automated, the release process is Manual. Usually done by @ReneWerner87

You can get emails when a new release is done by clicking here and then Custom -> Releases.

Screenshot_20240317-000957

If your repo is on GitHub you can add a dependabot.yml to notify you of new releases:

.github/dependabot.yml

version: 2
updates:
    -   package-ecosystem: "gomod"
        directory: "/"
        schedule:
            interval: "daily"

@ReneWerner87 Can you trigger a new release of all the storage drivers?

gaby avatar Mar 17 '24 04:03 gaby

Fixed via https://github.com/gofiber/storage/releases/tag/sqlite3%2Fv2.1.1

gaby avatar Mar 19 '24 13:03 gaby

Amazing! Sorry for the delay, I've been traveling. Thanks so much for the detailed explanation + also the subsequent release 🙇 Cheers

NicholasGWK avatar Mar 20 '24 16:03 NicholasGWK