Skip to content

Releases: beego/beego

Release v1.12.12

14 Mar 02:29
3c6986a
Compare
Choose a tag to compare

Release v2.0.7

13 Dec 10:50
46d6604
Compare
Choose a tag to compare

Release 2.0.6

22 Nov 16:08
76343e4
Compare
Choose a tag to compare

Release v2.0.5

31 Jul 16:30
f81689d
Compare
Choose a tag to compare

Release v1.12.11

30 Jul 07:30
c280209
Compare
Choose a tag to compare

Release v2.0.4

12 Jun 02:43
0b8b87c
Compare
Choose a tag to compare

Release v2.0.3

23 May 13:36
d828091
Compare
Choose a tag to compare

Release v1.12.9

23 May 12:56
7d8a259
Compare
Choose a tag to compare

Release v1.12.4

25 Apr 10:16
8524b62
Compare
Choose a tag to compare

Release v2.0.2

27 Jan 15:18
6255e55
Compare
Choose a tag to compare

Change Log

Incompatible Changes:

We remove the comments router generation function. So you have to run bee generate routers command to generate the routers. Here is the command:

bee generate routers [-ctrlDir=/path/to/controller/directory] [-routersFile=/path/to/routers/file.go] [-routersPkg=myPackage]
    -ctrlDir: the directory contains controllers definition. Bee scans this directory and its subdirectory to generate routers info
    -routersFile: output file. All generated routers info will be output into this file.
              If file not found, Bee create new one, or Bee truncates it.
              The default value is "routers/commentRouters.go"
    -routersPkg: package declaration.The default value is "routers".
              When you pass routersFile parameter, youd better pass this parameter