sessions
sessions copied to clipboard
Gin middleware for session management
Hi, I've upgraded/downgraded the go-sqlite3 package to the v1 branch. This seems weird, but the maintainer of the go-sqlite3 package made the v2.* versions accidentally. (See https://github.com/mattn/go-sqlite3/blob/master/README.md) The github.com/wader/gormstore/v2 package...
#148 from @rubensayshi but I believe this is rebased off master branch which was prohibiting #148 from being merged. I hope I did this correctly. If not, I apologize for...
Bumps [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) from 1.9.1 to 1.10.1. Release notes Sourced from go.mongodb.org/mongo-driver's releases. MongoDB Go Driver 1.10.1 The MongoDB Go Driver Team is pleased to release version 1.10.1 of the official...
```go func main() { r := gin.Default() store := cookie.NewStore([]byte("secret")) r.Use(sessions.Sessions("mysession", store)) r.PUT("/hello", func(c *gin.Context) { session := sessions.Default(c) session.Set("hello", struct{ Name string }{Name: "gin"}) err := session.Save() if err...
Bumps [gorm.io/driver/sqlite](https://github.com/go-gorm/sqlite) from 1.3.4 to 1.3.6. Commits bfea836 fix(parseDDL): default value valid should be false if not set (#105) fd0b690 bugfix: parseDDL cannot recognize the table name with dash (#104)...
Bumps [gorm.io/gorm](https://github.com/go-gorm/gorm) from 1.23.5 to 1.23.8. Commits 9fd73ae Revert "use callback to handle transaction" fe01e1b Fix Model with slice data 46bce17 test: pg array type (#5480) 5c4016d Merge pull request...
When I read the source code,I found multi-backend supported such as Redis Cookie-base and so on But not filesystem. So, When I want to stored session data In file, How...
Bumps [gorm.io/gorm](https://github.com/go-gorm/gorm) from 1.23.5 to 1.23.7. Commits c74bc57 fix: association many2many duplicate elem (#5473) 235c093 fix(MigrateColumn):declared different type without length (#5465) 3e6ab99 fix:serializer contain field panic (#5461) a70af2a Fix Select...
I originally posted this on Stack Overflow without any feedback. I am now convinced this is a bug, or odd behaviour that should be documented in the readme. I'm new...
redigo deprecated the version which you're using and it's breaking any `go list` actions ... ``` go list -u -m -json all go list -m: github.com/gomodule/[email protected]+incompatible: retracted by module author:...