Skip to content

Releases: docat-org/docat

0.3.0 The big release

28 Sep 12:57
c8cf85f
Compare
Choose a tag to compare

New fall release with quite a lot of changes:

  • Better developer setup
  • Upgraded dependencies
  • Support for project Icons
  • Improved display of long project names
  • Fixes to the version selector
  • Various other small bug fixes

Thanks everyone involved 🎉

What's Changed

New Contributors

Full Changelog: 0.2.3...0.3.0

0.2.3 Long time no see 👋 Part 2

15 Aug 07:42
2d32b2a
Compare
Choose a tag to compare

Github Action never tagged the 0.2.2 release due to a bug in the setup.

For release notes see: https://github.com/docat-org/docat/releases/tag/0.2.2

What's Changed

  • fix(github-action): run docker push only on main repo II by @fliiiix in #238

Full Changelog: 0.2.2...0.2.3

0.2.2 Long time no see 👋

15 Aug 06:20
Compare
Choose a tag to compare

Not a lot has changed since the last release,
but there is quite a big list of small improvements.
And there are even more dependencies updates.

Thanks to all the contributors for this release ✨

What's Changed

New Contributors

Full Changelog: 0.2.1...0.2.2

0.2.1 New design, who dis?

09 Nov 11:24
f69e233
Compare
Choose a tag to compare

New design thanks to @randombenj we don't need a header to switch the versions,
now you just have a small floating button to change versions 🎉

image

What's Changed

New Contributors

Full Changelog: 0.2.0...0.2.1

0.2.0 Faster with FastAPI

22 Oct 11:47
cb974bb
Compare
Choose a tag to compare

Quite a few $things are happening!
For example there is a new cli tool to interact with docat check it out: https://github.com/docat-org/docatl
This is also the first release from the new docat-org.

What's Changed

  • Bugfix/fix remove symlink by @fliiiix in #120
  • Override titles for pages by @dinakar29 in #121
  • Document docatl usage on the Getting Started help page by @timofurrer in #126
  • Use GitHub Container Registry and replace randombenj/docat with docat-org/docat by @timofurrer in #125
  • chore: update js stuff by @fliiiix in #127
  • Refactor to use FastAPI instead of Flask by @timofurrer in #128

New Contributors

  • @dinakar29 made their first contribution in #121

Full Changelog: 0.1.2...0.2.0

Make the UI nice 🎉

22 Sep 07:34
110e9e8
Compare
Choose a tag to compare

This release adds initial UI support for tokens and deleting versions.

This Release includes:

  • Claiming token and Delete button on UI (#114) thanks @pascalwelte & @Ajapai
  • Documentation fix (#117) thanks @maxb2
  • Update web dependencies (#119)
  • Use gunicorn in docker to run the app instead of flask debug server (142109b)

Claim the bug!

28 Jul 08:20
39566d5
Compare
Choose a tag to compare

Claiming a token could lead to a 500 error code. This release fixes that.

See the commit for more details.
5827b54

Delete Yourself! (0.1.0)

26 Jul 13:58
49e7097
Compare
Choose a tag to compare

Yes that's a very obscure reference to Delete Yourself! the Album by Atari Teenage Riot.

This Release includes:

  • Claiming a token for a project (0237670) which will allow you to delete (15a78f1) and override an existing version (dd619c3)
  • Makes UPLOAD_FOLDER configurable (221a380)
  • Fixes to the Web UI Client (459575b & 680f8a4)
  • Upgrade from Python 3.8 to Python 3.9 ( f88fe91 & 2f6e522)
  • Poetry for the Python backend (6b68cea)
  • Debugging and developing mode without Nginx (f46b8b6)
  • Upgrade all Python and JavaScript dependencies to the latest and greatest version

Run the docker image:

docker run \
  --detach \
  --volume /path/to/doc:/var/docat/doc/ \
  --volume /path/to/locations:/etc/nginx/locations.d/ \
  --volume /path/to/db.json:/app/docat/db.json
  --publish 8000:80 \
  randombenj/docat:0.1.0

Hint: make sure db.json is a file.

Bugfix release for 0.0.12

01 May 12:18
92ab462
Compare
Choose a tag to compare
docker run \
  --detach \
  --volume /path/to/doc:/var/docat/doc/ \
  --volume /path/to/locations:/etc/nginx/locations.d/ \
  --publish 8000:80 \
  randombenj/docat:0.0.13

Cleaner urls

01 May 11:09
59d18a9
Compare
Choose a tag to compare

This release provides cleaner docs urls:

Before:

http://docat.local/#/project/0.0.0/http:%2F%2Fdocat.local%2Fdoc%2Fproject%2F0.0.0%2Finstallation%2F

Now:

http://docat.local/#/project/0.0.0/installation/

We also got rid of axios and use plain fetch.

docker run \
  --detach \
  --volume /path/to/doc:/var/docat/doc/ \
  --volume /path/to/locations:/etc/nginx/locations.d/ \
  --publish 8000:80 \
  randombenj/docat:0.0.12