Skip to content

Releases: pine-vm/pine

v2020-05-28

28 May 17:46
Compare
Choose a tag to compare
Simplify using the commands for deployment

In case a password was not supplied, or the stored password does not work anymore, do not require the user to start the deploy command from scratch. Instead, prompt for entering a password directly.

v2020-05-26

26 May 08:35
Compare
Choose a tag to compare
Improve readability in deployment report

Remove superfluous fields from JSON objects representing values in union types.

v2020-05-18

18 May 16:26
Compare
Choose a tag to compare
Fix single-file publishing for the CLI 🐛☠️

With the previous version, got this error when trying to run elm-fullstack.exe:
----
Error:
  An assembly specified in the application dependencies manifest (elm-fullstack.deps.json) was not found:
    package: 'LibGit2Sharp.NativeBinaries', version: '2.0.306'
    path: 'runtimes/win-x64/native/git2-106a5f2.pdb'

For context, see:

+ https://github.com/libgit2/libgit2sharp/issues/1754#issuecomment-581692099
+ https://github.com/dotnet/sdk/issues/3685

v2020-05-12

12 May 10:03
Compare
Choose a tag to compare
Improve guides in the user interface 🏛

Adapt to the evolution of language, names, and the organization of features.

Release v2020-05-03

03 May 15:14
Compare
Choose a tag to compare
Simplify implementation of the public web host

Remove all dependencies on the persistent process from the public app implementation. It looks like the public web interface will move into a volatile host mid-term anyway. With that constellation, it is also easier to see why the functionality for persistence does not belong in there.

Release v2020-04-20

20 Apr 07:51
Compare
Choose a tag to compare
Fix bug in the CLI

Release v2020-04-19

19 Apr 19:25
Compare
Choose a tag to compare
Fix migrating process states from older versions

Add branch for compatibility with the older encoding of reduction records into files.
See https://github.com/elm-fullstack/elm-fullstack/commit/ce013157dfb523a3b1ace601eec604b883908212#diff-d7e54a6500d82439620a96092749a70e

Release v2020-04-18

18 Apr 16:09
Compare
Choose a tag to compare
Fix get persistent process state in Chrome and Firefox

Before adding this header to the HTTP response, observed the following problem: In Chrome 81 dev tools, saving the response content from the Network tab results in destructions of non-ASCII characters like 🔊.

Release v2020-04-17

17 Apr 09:36
Compare
Choose a tag to compare
Support  static files with default build command

Release v2020-03-07

07 Mar 17:15
Compare
Choose a tag to compare
Support custom type tags with multiple parameters

+ Fix a bug in parsing custom type text: Instances in tag parameters need to be enclosed in parentheses.
+ Expand generation of the JSON coding functions to support tags with multiple parameters. Expand the decoders to support the automatic migration of applications from previous versions.
+ Automate tests for the new features, also specifically covering the core types `Maybe` and `Result`.
+ Expand the full-stack demo app to illustrate the new functionality.

+ Also, fix a path in the `demo-backend-state.ps1` script.