Skip to content

Releases: howmanysmall/Janitor

Janitor 1.13.15

24 Nov 19:43
Compare
Choose a tag to compare

1.13.15 - 2021-11-24

Changed

  • Janitor:Cleanup now uses a while loop instead of a for loop when cleaning up. Fixed by @codesenseAye.

Janitor 1.13.14

05 Nov 20:13
Compare
Choose a tag to compare

1.13.14 - 2021-11-05

Fixed

  • Janitor:AddPromise now will handle cancellations properly.

Janitor 1.13.13

20 Oct 18:58
Compare
Choose a tag to compare
  • Finding Promise is now more aware for plugins. This way it won't load a Promise library inside of ReplicatedStorage.
  • APIs that return Janitor like Janitor::Remove no longer explicitly state the return type. This seems to cause problems with typed Luau.

Janitor 1.13.12

02 Oct 16:57
Compare
Choose a tag to compare

If you're using 1.13.11, please update. I actually broke something in 1.13.11 (I kept the continue for cleanup commented out when I didn't mean to).

  • New documentation website! Check it out!
  • I've done away with the __index pointing to a separate table, so now Janitor points to itself.

Janitor 1.13.10

30 Sep 01:04
6a051d6
Compare
Choose a tag to compare

This updates all the documentation comments and allows support for Promise libraries in Server* services.

Janitor 1.13.9

19 Sep 02:54
Compare
Choose a tag to compare

(ignore the weird version skip, I was troubleshooting a workflow)

This version standardizes the file tree. There's no longer two split version and instead Janitor is unified under a single version.

Janitor 1.13.7

16 Sep 23:04
Compare
Choose a tag to compare

I've undone the task.spawn update. You don't really need to update unless you want to as this isn't crucial. I've also replaced the in next iteration with in pairs to be more standard as well as replaced another loop with table.clear.

Janitor 1.13.6

22 Aug 01:48
87f8d36
Compare
Choose a tag to compare

(should i have done major version increment?)

This makes Janitor thread safe, as well adds typings for the new beta. By thread safe, I mean doing the following will no longer break your Janitor.

Janitor:Add(function()
	while task.wait() do
	end
end, true)

Janitor 1.13.5

04 Aug 17:15
e3a875a
Compare
Choose a tag to compare

This update changes Janitor to use the task library as well as a few updates to documentation and other things.

Janitor 1.13.4

27 May 20:33
Compare
Choose a tag to compare

This actually fixes deferred events for LinkToInstance. Shoutout to @Elttob for the fixed version.