Commit Graph

140 Commits

Author SHA1 Message Date
Kevin Ansfield b1c7781cc6 Upgrading Casper to 2.7.0 2018-10-16 15:51:40 +01:00
Nazar Gargol 9450b7fa37 Upgrading Casper to 2.6.4 2018-10-09 16:17:45 +02:00
Fabien O'Carroll afdf1bd741 Upgrading Casper to 2.6.3 2018-09-25 11:37:45 +07:00
Nazar Gargol aab9df1784 Upgrading Casper to 2.6.2 2018-09-11 13:53:19 +02:00
kirrg001 6dfcbd251e Upgrading Casper to 2.6.1 2018-08-31 11:28:27 +01:00
kirrg001 4c0e2754ba Upgrading Casper to 2.6.0 2018-08-30 17:48:20 +01:00
kirrg001 c2e1d4a124 Upgrading Casper to 2.5.1
no issue
2018-08-22 14:33:38 +02:00
kirrg001 2907e81c2f Upgrading Casper to 2.5.0
no issue
2018-08-16 14:01:28 +02:00
kirrg001 eb90712105 Upgrading Casper to latest master
no issue
2018-08-16 12:13:24 +02:00
kirrg001 8bb7088ba0 🔥 Removed permalink setting
refs #9742

- removed usage of single permalink setting
  - with dynamic routing this configuration does no longer makes sense
  - because you can configure your permalinks in the routes.yaml
  - furthermore you can have multiple collections with multiple permalinks
- removed @blog.permalinks
- do not export permalink setting
- do not import permalink setting
- permalink setting UI will be removed soon
- get rid of {globals.permalink} completely
- remove yaml in-built migration
- do not expose settings.permalinks via the private API
- do not allow to edit this setting
- keep phyiscal value in case a blog needs to rollback from v2 to v1
- sorted out when the routers should be created
  - ensure routes.yaml file doesn't get validated before Ghost is fully ready to start
2018-08-16 12:13:24 +02:00
kirrg001 7b9c6af9d7 Updated docs links
refs #9742

- 2.0 will become the latest version on our readme pages
2018-08-16 12:13:24 +02:00
kirrg001 7c4e1584a6 Upgrading Casper to 2.4.2 2018-08-08 17:11:39 +02:00
Kevin Ansfield 329c13900e Upgrading Casper to 2.4.1 2018-07-31 11:34:52 +01:00
kirrg001 cc0e95ba4f Upgrading Casper to 2.4.0 2018-07-24 15:25:51 +02:00
Kevin Ansfield 99d7dab1f5 Update Ghost-Admin and Casper sub-modules for Koenig compatibility 2018-07-23 12:24:56 +01:00
Katharina Irrgang 5a61f99467
Dynamic Routing: Added migration for routes.yaml file (#9692)
refs #9601

- the home.hbs behaviour for the index collection (`/`) is hardcoded in Ghost
- we would like to migrate all existing routes.yaml files
- we only replace the file if the contents of the routes.yaml file equals the old routes.yaml format (with home.hbs as template)
- updated README of settings folder
- if we don't remove the home.hbs template from the default routes.yaml file, home.hbs will be rendered for any page of the index collection
  - the backwards compatible behaviour was different
  - only render home.hbs for page 1
- remember: the default routes.yaml file reflects how Ghost was working without dynamic routing
2018-06-22 20:28:01 +02:00
Kevin Ansfield 11bd398b1c Upgrading Casper to 2.3.3 2018-06-14 17:04:15 +01:00
Katharina Irrgang b392d1925a
Dynamic Routing Beta (#9596)
refs #9601

### Dynamic Routing

This is the beta version of dynamic routing. 

- we had a initial implementation of "channels" available in the codebase
- we have removed and moved this implementation 
- there is now a centralised place for dynamic routing - server/services/routing
- each routing component is represented by a router type e.g. collections, routes, static pages, taxonomies, rss, preview of posts
- keep as much as possible logic of routing helpers, middlewares and controllers
- ensure test coverage
- connect all the things together
  - yaml file + validation
  - routing + routers
  - url service
  - sitemaps
  - url access
- deeper implementation of yaml validations
  - e.g. hard require slashes
- ensure routing hierarchy/order
  - e.g. you enable the subscriber app
  - you have a custom static page, which lives under the same slug /subscribe
  - static pages are stronger than apps
  - e.g. the first collection owns the post it has filtered
  - a post cannot live in two collections
- ensure apps are still working and hook into the routers layer (or better said: and register in the routing service)
- put as much as possible comments to the code base for better understanding
- ensure a clean debug log
- ensure we can unmount routes
  - e.g. you have a collection permalink of /:slug/ represented by {globals.permalink}
  - and you change the permalink in the admin to dated permalink
  - the express route get's refreshed from /:slug/ to /:year/:month/:day/:slug/
  - unmount without server restart, yey
- ensure we are backwards compatible
  - e.g. render home.hbs for collection index if collection route is /
  - ensure you can access your configured permalink from the settings table with {globals.permalink}

### Render 503 if url service did not finish

- return 503 if the url service has not finished generating the resource urls

### Rewrite sitemaps

- we have rewritten the sitemaps "service", because the url generator does no longer happen on runtime
- we generate all urls on bootstrap
- the sitemaps service will consume created resource and router urls
- these urls will be shown on the xml pages
- we listen on url events
- we listen on router events
- we no longer have to fetch the resources, which is nice
  - the urlservice pre-fetches resources and emits their urls
- the urlservice is the only component who knows which urls are valid
- i made some ES6 adaptions
- we keep the caching logic -> only regenerate xml if there is a change
- updated tests
- checked test coverage (100%)

### Re-work usage of Url utility

- replace all usages of `urlService.utils.urlFor` by `urlService.getByResourceId`
  - only for resources e.g. post, author, tag
- this is important, because with dynamic routing we no longer create static urls based on the settings permalink on runtime
- adapt url utility
- adapt tests
2018-06-05 19:02:20 +02:00
kirrg001 c2849728e9 Updated content/settings/README.md
no issue

- the name of the routing type was incorrect
- we have
  1. routes: static routes (or series later)
  2. collections: a collection of posts
  3. taxonomies: configuration for author and tag routes
- see equivalent: https://github.com/TryGhost/Ghost/blob/1.23.1/core/server/services/settings/default-routes.yaml
2018-06-01 19:36:48 +02:00
Kevin Ansfield 91a1732c0f Upgrading Casper to 2.3.2 2018-05-29 16:10:26 +01:00
Kevin Ansfield 0b5ffff53e Upgrading Casper to 2.3.1 2018-05-29 15:45:24 +01:00
Kevin Ansfield 394f90f0e3 Upgrading Casper to 2.3.0 2018-05-22 20:25:03 +01:00
Aileen Nowak 833bb53fec Upgrading Casper to 2.2.1 2018-04-24 11:00:37 +08:00
Aileen Nowak c8b29724e0 Added `content/settings` folder
refs #9528
refs TryGhost/Ghost-CLI#681

- added a new `/content/settings` folder
- bumped Ghost-CLI engine requirement to >= 1.7.0
2018-04-15 19:40:22 +02:00
kirrg001 615ecded94 Upgrading Casper to 2.2.0
no issue

- see https://github.com/TryGhost/Casper/releases/tag/2.2.0
2018-04-10 23:32:14 +02:00
Aileen Nowak 9030161db9 Upgrading Casper to 2.1.10 2018-03-16 16:00:33 +07:00
Aileen Nowak 25b4769662 Revert "Upgrading Casper to 2.2.0"
This reverts commit 61a0343be0.
2018-03-16 15:47:58 +07:00
Aileen Nowak 61a0343be0 Upgrading Casper to 2.2.0 2018-03-16 09:54:41 +07:00
Kevin Ansfield e78f14bd43 Upgrading Casper to 2.1.9 2018-01-23 16:24:20 +00:00
Kevin Ansfield fddc9a928c Upgrading Casper to 2.1.8 2018-01-03 13:49:21 +00:00
Aileen Nowak 9e60ac639b Upgrading Casper to 2.1.7 2017-11-21 22:09:35 +08:00
Aileen Nowak 4ccdfab8f2 Upgrading Casper to 2.1.6 2017-10-26 19:09:37 +07:00
Aileen Nowak 39fe42a16b Upgrading Casper to 2.1.5 2017-10-24 16:12:12 +07:00
Aileen Nowak fcef6a53d6 Upgrading Casper to 2.1.4 2017-10-03 18:49:54 +07:00
Kevin Ansfield 2db548a5bc Upgrading Casper to 2.1.3 2017-09-26 16:01:11 +01:00
Aileen Nowak 40a66f650a Upgrading Casper to 2.1.2 2017-09-12 18:48:27 +07:00
kirrg001 86300f605e Upgrading Casper to 2.1.1 2017-09-07 14:36:40 +02:00
Vikas 8606ea22a2 Normalize docs URLs (#8949)
no issue

v1.0.0 is no longer the standard in the docs, so I updated all of the URLs containing it with v1
Note: I tried squashing commits, but failed. I'll try again in the future with throwaway changes
Secondary Note: I tested most of the URLs listed and got no 404s!
2017-08-31 11:45:59 +02:00
Kevin Ansfield 04ba726012 Upgrading Casper to 2.1.0 2017-08-29 13:42:50 +01:00
Kevin Ansfield 905580c710 Upgrading Casper to 2.0.6 2017-08-22 12:41:49 +01:00
Kevin Ansfield 53e716133b Upgrading Casper to 2.0.5 2017-08-17 17:58:10 +01:00
Kevin Ansfield ce7d0bfd93 Upgrading Casper to 2.0.4 2017-08-15 18:05:23 +01:00
kirrg001 7c0b1bb063 ⬆️ Upgrading Casper to 2.0.3
no issue

- See https://github.com/TryGhost/Casper/releases/tag/2.0.3
2017-08-10 16:16:29 +02:00
kirrg001 b61fa694ef Upgrading Casper to 2.0.2 2017-08-01 10:35:50 +04:00
Kevin Ansfield 7060fa5e35 Upgrading Casper to 2.0.1 2017-07-27 12:31:19 +04:00
Kevin Ansfield 954d85d49f Upgrading Casper to 2.0.0 2017-07-22 17:05:56 +01:00
Aileen Nowak 693c340082 Upgrading Casper: infinite sroll & remove partial 2017-07-11 15:29:58 +07:00
Aileen Nowak b37411239f Updated Casper: Infinite scroll 2017-07-10 20:43:52 +07:00
kirrg001 c696b1d27a Upgrading Casper: 2.0
no issue
2017-06-22 19:54:45 +02:00
Kevin Ansfield adfb84847a Upgrading Casper: 1.0 branch is now master 2017-06-08 19:33:11 +01:00