10000 Prepare release 4.0.0 by bobdenotter · Pull Request #1897 · bolt/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Prepare release 4.0.0 #1897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
Changelog
=========

## Major release 4.0.0

Released: 2020-09-24

### 📦 Additions and new features

- Allow numeric slugs with `allow_numeric` attribute in ContentType (bobdenotter, [#1884](https://github.com/bolt/core/pull/1884))

### 🐛 Bug fixes

- Only show "Preview" button if ContentType is not Viewless (bobdenotter, [#1896](https://github.com/bolt/core/pull/1896))
- Fix "zero width spaces" and Twigified titles in backend. (bobdenotter, [#1893](https://github.com/bolt/core/pull/1893))
- Fix Z-index, attempt 2 (bobdenotter, [#1890](https://github.com/bolt/core/pull/1890))
- Minor fix: Check if `Content` is set in preview mode. (bobdenotter, [#1885](https://github.com/bolt/core/pull/1885))
- Getting a date uses the default timezone from config (I-valchev, [#1901](https://github.com/bolt/core/pull/1901))

### 🛠️ Miscellaneous

- Update `_multiselect.scss` (eduardomart, [#1899](https://github.com/bolt/core/pull/1899))
- Fix `messages.de.xlf`: "Standart" to "Standard" (binarious, [#1887](https://github.com/bolt/core/pull/1887))
- Add pedantic notice to installation on this page, reminding people to use https://docs.bolt.cm/installation instead (bobdenotter, [#1886](https://github.com/bolt/core/pull/1886))
- Fix iffy details/summary marker (bobdenotter, [#1882](https://github.com/bolt/core/pull/1882))
- Update `hidden.html.twig` (eduardomart, [#1880](https://github.com/bolt/core/pull/1880))



## 4.0.0-rc.44

Released: 2020-09-20
Expand Down
11 changes: 10 additions & 1 deletion assets/js/app/listing/Components/Table/Row/_Actions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<span class="dropdown-item-text">
<i class="fas fa-link fa-w"></i>
{{ labels.slug }}:
<code :title="record.fieldValues.slug">{{ record.fieldValues.slug | trim(24) }}</code>
<code :title="slug">{{ slug | trim(24) }}</code>
</span>
<span class="dropdown-item-text">
<i class="fas fa-asterisk fa-w"></i>
Expand Down Expand Up @@ -82,6 +82,15 @@ export default {
record: Object,
labels: Object,
},
computed: {
slug() {
if (typeof this.record.fieldValues.slug === 'string') {
return this.record.fieldValues.slug;
}
// if slug has different locales, return the 0st one
return this.record.fieldValues.slug[Object.keys(this.record.fieldValues.slug)[0]];
},
},
created() {
// console.log(this.labels);
},
Expand Down
40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bolt",
"version": "4.0.0-rc.44",
"version": "4.0.0",
"homepage": "https://boltcms.io",
"author": "Bob den Otter <bob@twokings.nl> (https://boltcms.io)",
"license": "MIT",
Expand Down Expand Up @@ -32,8 +32,8 @@
"baguettebox.js": "^1.11.1",
"bootbox": "^5.4.0",
"bootstrap": "^4.5.2",
"browserslist": "^4.14.3",
"caniuse-lite": "^1.0.30001133",
"browserslist": "^4.14.4",
"caniuse-lite": "^1.0.30001135",
"codemirror": "^5.58.0",
"dropzone": "^5.7.2",
"flagpack": "^1.0.5",
Expand Down
4 changes: 2 additions & 2 deletions src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ final class Version
* Stable — 3.0.0
* Development — 3.1.0 alpha 1
*/
public const VERSION = '4.0.0 RC 44';
public const CODENAME = 'Really? This many RC\'s? Yes, really!';
public const VERSION = '4.0.0';
public const CODENAME = 'Four point oh point oh, Baby! 🤘🏾👩‍🎤';

/**
* Whether this release is a stable one.
Expand Down
0