<feed xmlns='http://www.w3.org/2005/Atom'>
<title>hedgedoc/bin, branch cindy</title>
<subtitle>Hedgedoc with support for CindyScript
</subtitle>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/'/>
<entry>
<title>Merge pull request #1246 from hedgedoc/fix/heroku_pg_ssl</title>
<updated>2021-05-09T12:59:29+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-05-09T12:59:29+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=87c83dcba5ebab9078a7e625023d7fe37889adb8'/>
<id>87c83dcba5ebab9078a7e625023d7fe37889adb8</id>
<content type='text'>
Ignore Postgres SSL errors on Heroku</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ignore Postgres SSL errors on Heroku</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Add mention to install devDependencies</title>
<updated>2021-05-08T11:47:31+00:00</updated>
<author>
<name>Philip Molares</name>
</author>
<published>2021-05-08T08:08:21+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=a4b4ebd80c2c94d7e14eee18a9928f63d653efc9'/>
<id>a4b4ebd80c2c94d7e14eee18a9928f63d653efc9</id>
<content type='text'>
Before `yarn build` can be succesfully run, we need to install the devDependencies.
This is necessary, because `bin/setup` does not install the devDependencies…

Signed-off-by: Philip Molares &lt;philip.molares@udo.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before `yarn build` can be succesfully run, we need to install the devDependencies.
This is necessary, because `bin/setup` does not install the devDependencies…

Signed-off-by: Philip Molares &lt;philip.molares@udo.edu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignore Postgres SSL errors on Heroku</title>
<updated>2021-05-07T19:43:06+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-05-07T19:42:49+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=86be1243f8ae24ac6c0586a694b3788548e9019e'/>
<id>86be1243f8ae24ac6c0586a694b3788548e9019e</id>
<content type='text'>
 The connection to Heroku's Postgres instances must use SSL,
 but not check the certificate.

 This adds the necessary configuration to the Heroku setup script.

Fixes #1245

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 The connection to Heroku's Postgres instances must use SSL,
 but not check the certificate.

 This adds the necessary configuration to the Heroku setup script.

Fixes #1245

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Only install production dependencies in bin/setup</title>
<updated>2021-05-05T13:38:00+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-05-05T13:38:00+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=926493a9837ecf3424252dd94052da86e3f468a6'/>
<id>926493a9837ecf3424252dd94052da86e3f468a6</id>
<content type='text'>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix version error wording in bin/setup</title>
<updated>2021-04-22T20:52:53+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-04-22T16:56:52+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=d52a43e81110126e900fbeb46f2255c1375520ce'/>
<id>d52a43e81110126e900fbeb46f2255c1375520ce</id>
<content type='text'>
The previous error message stated that the version of Node or
Yarn is "outdated", which might be accurate coincidentally,
but is not what the script checks.

This commit changes the wording to use "not supported", which
is more accurate to the true check in the script.

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous error message stated that the version of Node or
Yarn is "outdated", which might be accurate coincidentally,
but is not what the script checks.

This commit changes the wording to use "not supported", which
is more accurate to the true check in the script.

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Raise minimum required Node.js version to 12</title>
<updated>2021-04-22T20:52:38+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-04-22T16:46:01+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=e1df30bd5c46ec8d99d5758df748f035ec93b44b'/>
<id>e1df30bd5c46ec8d99d5758df748f035ec93b44b</id>
<content type='text'>
As Node 10 will be EOL at April 30th, we should stop supporting
and/or promoting the usage of that version.

See also https://endoflife.date/nodejs

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As Node 10 will be EOL at April 30th, we should stop supporting
and/or promoting the usage of that version.

See also https://endoflife.date/nodejs

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update link to config docs in setup script</title>
<updated>2021-03-06T09:36:24+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-03-06T09:36:24+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=4e5ff6f075b631e35b879c136279d0bafeacfa5b'/>
<id>4e5ff6f075b631e35b879c136279d0bafeacfa5b</id>
<content type='text'>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove .sequelizerc</title>
<updated>2021-03-06T09:34:22+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-03-06T09:34:22+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=bf0a7ebee72404eb7bce918f41162126bca24bf0'/>
<id>bf0a7ebee72404eb7bce918f41162126bca24bf0</id>
<content type='text'>
After https://github.com/hedgedoc/hedgedoc/pull/969 was merged,
a separate configuration file for the sequelize-cli is no longer
required.

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After https://github.com/hedgedoc/hedgedoc/pull/969 was merged,
a separate configuration file for the sequelize-cli is no longer
required.

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to minio v7 API</title>
<updated>2021-02-12T22:11:37+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2021-02-12T22:09:38+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=252141560f8ffcf88f18347f2161b5f3c78ffe12'/>
<id>252141560f8ffcf88f18347f2161b5f3c78ffe12</id>
<content type='text'>
The secure parameter is now called useSSL
https://github.com/minio/minio-js/releases/tag/7.0.0

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The secure parameter is now called useSSL
https://github.com/minio/minio-js/releases/tag/7.0.0

Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix inconsistent spacing in bin/setup</title>
<updated>2020-11-17T20:29:54+00:00</updated>
<author>
<name>David Mehren</name>
</author>
<published>2020-11-17T20:29:54+00:00</published>
<link rel='alternate' type='text/html' href='https://stuebinm.eu/git/hedgedoc/commit/?id=ac7dd2982f53de30f428b57edf54c225b4bd91c5'/>
<id>ac7dd2982f53de30f428b57edf54c225b4bd91c5</id>
<content type='text'>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Mehren &lt;git@herrmehren.de&gt;
</pre>
</div>
</content>
</entry>
</feed>
